-
Notifications
You must be signed in to change notification settings - Fork 590
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BUG: Fix millisecond issue for omniscidb, mysql, postgresql and pandas #2170
BUG: Fix millisecond issue for omniscidb, mysql, postgresql and pandas #2170
Conversation
|
This PR is done for review. thanks! |
28e1fbf
to
737850d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks fine, ping when release note is updated and green.
docs/source/release.rst
Outdated
| @@ -13,6 +13,7 @@ Release Notes | |||
| * :feature:`2126` Add translation rules for isnull() and notnull() for pyspark backend | |||
| * :feature:`2062` Implement read_csv for omniscidb backend | |||
| * :feature:`2097` Date, DateDiff and TimestampDiff implementations for OmniSciDB | |||
| * :bug:`2170` Fix millisecond issue for OmniSciDB, MySQL, PostgreSQL and Pandas backends | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you add all of the issues numbers here (same issue if fine)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added all the issues number near each backend name.
737850d
to
99a1682
Compare
docs/source/release.rst
Outdated
| @@ -13,6 +13,7 @@ Release Notes | |||
| * :feature:`2126` Add translation rules for isnull() and notnull() for pyspark backend | |||
| * :feature:`2062` Implement read_csv for omniscidb backend | |||
| * :feature:`2097` Date, DateDiff and TimestampDiff implementations for OmniSciDB | |||
| * :bug:`2170` Fix millisecond issue for OmniSciDB #2167, MySQL #2169, PostgreSQL #2166 and Pandas #2168 backends | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add then the same as :bug:`2170` otherwise these don't render
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done! I used :issue: for that. thanks!
99a1682
to
bc734d6
Compare
|
test output: |
| @@ -33,15 +33,20 @@ def execute_extract_timestamp_field_timestamp(op, data, **kwargs): | |||
| return getattr(data, field_name) | |||
|
|
|||
|
|
|||
| @execute_node.register(ops.ExtractTemporalField, pd.Series) | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
execute_extract_timestamp_field_series was moved up to be close to above function execute_extract_timestamp_field_timestamp
|
thanks @xmnlab |
Fix #2167
Fix #2166
Fix #2168
Fix #2169