-
Notifications
You must be signed in to change notification settings - Fork 10
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
Add HeavyDBTimestampType #494
Conversation
Co-authored-by: Guilherme Leobas <[email protected]>
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.
Hi Pamphile, can you fix the flake8 failure and rewrite the test?
Can you rebase with RBC main branch? Also, restrict the test to heavydb 6.0 or greater. |
I added the skip. For the rebase, this branch is already up to date with |
165ea83
to
0e16399
Compare
@tupui, to fix the current failure, apply the following patch diff --git a/rbc/heavydb/timestamp.py b/rbc/heavydb/timestamp.py
index f1764aa..62f6224 100644
--- a/rbc/heavydb/timestamp.py
+++ b/rbc/heavydb/timestamp.py
@@ -32,6 +32,9 @@ class HeavyDBTimestampType(typesystem.Type):
return 'Timestamp'
+extending.make_attribute_wrapper(TimestampNumbaType, 'time', 'time')
+
+
@extending.type_callable(Timestamp)
def type_heavydb_timestamp(context):
def typer(arg):
diff --git a/rbc/tests/heavydb/test_timestamp.py b/rbc/tests/heavydb/test_timestamp.py
index 6792591..37cbad2 100644
--- a/rbc/tests/heavydb/test_timestamp.py
+++ b/rbc/tests/heavydb/test_timestamp.py
@@ -33,7 +33,7 @@ def test_timestamp(heavydb):
def timestamp_extract(x, y):
set_output_row_size(len(x))
for i in range(len(x)):
- y[i] = x[i]
+ y[i] = x[i].time
return len(x)
heavydb.register()
@@ -41,4 +41,4 @@ def test_timestamp(heavydb):
table = 'time_test'
query = f'select * from table(timestamp_extract(cursor(select t1 from {table})));'
_, result = heavydb.sql_execute(query)
- assert list(result) == [1, 1654268400000]
+ assert list(result) == [(1,), (1654268400000000000,)] |
@guilhermeleobas can you have another look? |
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.
Thanks for the work, Pamphile. I have only one commenting regarding the packaging
package.
Co-authored-by: Guilherme Leobas <[email protected]>
fa201ec
to
2f7f045
Compare
I made the changes @guilhermeleobas |
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.
Thanks Pamphile. With the introduction of packaging
, perhaps one should revisit all the test files and fix the version comparison to use the new library.
Yes that would be a good thing to do IMO. Thanks for the review 😃 @pearu do you want to have a look? |
No description provided.