Skip to content
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

Merged
merged 22 commits into from
Jun 14, 2022
Merged

Add HeavyDBTimestampType #494

merged 22 commits into from
Jun 14, 2022

Conversation

tupui
Copy link
Contributor

@tupui tupui commented Jun 3, 2022

No description provided.

@tupui tupui added enhancement New feature or request heavydb Related to heavydb server labels Jun 3, 2022
@tupui tupui self-assigned this Jun 3, 2022
Copy link
Contributor

@guilhermeleobas guilhermeleobas left a 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?

@guilhermeleobas
Copy link
Contributor

Can you rebase with RBC main branch? Also, restrict the test to heavydb 6.0 or greater.

@tupui
Copy link
Contributor Author

tupui commented Jun 6, 2022

I added the skip. For the rebase, this branch is already up to date with main

@tupui tupui marked this pull request as ready for review June 6, 2022 10:36
@guilhermeleobas
Copy link
Contributor

@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,)]

@tupui tupui force-pushed the tupui/timestamp branch from bafb838 to 72477a2 Compare June 7, 2022 10:36
@tupui tupui requested a review from guilhermeleobas June 7, 2022 12:39
@tupui
Copy link
Contributor Author

tupui commented Jun 9, 2022

@guilhermeleobas can you have another look?

Copy link
Contributor

@guilhermeleobas guilhermeleobas left a 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.

@tupui tupui force-pushed the tupui/timestamp branch 2 times, most recently from fa201ec to 2f7f045 Compare June 9, 2022 19:34
@tupui
Copy link
Contributor Author

tupui commented Jun 9, 2022

I made the changes @guilhermeleobas

Copy link
Contributor

@guilhermeleobas guilhermeleobas left a 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.

@tupui
Copy link
Contributor Author

tupui commented Jun 10, 2022

Yes that would be a good thing to do IMO. Thanks for the review 😃

@pearu do you want to have a look?

@tupui tupui merged commit 3cee8ed into heavyai:main Jun 14, 2022
@tupui tupui deleted the tupui/timestamp branch June 14, 2022 20:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request heavydb Related to heavydb server
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants