Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/13912#discussion_r71129335
  
    --- Diff: python/pyspark/sql/readwriter.py ---
    @@ -328,6 +328,10 @@ def csv(self, path, schema=None, sep=None, 
encoding=None, quote=None, escape=Non
                                applies to both date type and timestamp type. 
By default, it is None
                                which means trying to parse times and date by
                                ``java.sql.Timestamp.valueOf()`` and 
``java.sql.Date.valueOf()``.
    +        :param timezone: defines the timezone to be used for both date 
type and timestamp type.
    +                         If a timezone is specified in the data, this will 
load them after
    --- End diff --
    
    I mean specifically that any "timezone" specified as a parameter when 
reading the input "27/08/2015 00:00 PDT" should not matter, which is why I 
wonder why this is in the example. The parsed timestamp is unambiguously 
1440658800000; it has no timezone because that's a concept only related to 
formatted dates/times.
    
    When outputting formatted strings, I understand why a timezone parameter 
matters. For example with format "dd/MM/yyyy HH:mm:ss z" the output depends on 
the desired timezone. With "GMT", yes I agree with your new example, the output 
is "27/08/2015 07:00:00 GMT"
    
    Back to the original question -- what is the comment referring to then? I 
don't see a need to manually adjust for a timezone.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to