-
Notifications
You must be signed in to change notification settings - Fork 175
Add DateTime64 data type. #50
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
Conversation
ed1a8ea
to
97c4cb9
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.
Left comments.
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.
Some comments.
…ers for Decimals and DateTime64
…ers for Decimals and DateTime64
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.
One more.
…tegration tests Fixed DateTime64 example
TYPED_TEST_P(ColumnPerformanceTest, SaveAndLoad) { | ||
SKIP_IN_DEBUG_BUILDS(); |
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.
FYI, Google Test has GTEST_SKIP()
starting from some version, and, alternatively, you can prepend DISABLED_
to the name of a test to disable it (should be available in the bundled gtest
repo). Not an issue here, though.
Based on #38
New Column type:
ColumnDateTime64
Sligtly updated some underlying code
Added unit and integrration tests for ColumnDateTime64
Closes #38