-
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 support for enumerate(Array, Column) #435
add support for enumerate(Array, Column) #435
Conversation
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 have a question and remark about ordering of rows in select.
@pytest.mark.xfail | ||
def test_columnlist_enumerate(omnisci): |
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.
What is the issue with ColumnList case?
_, result = omnisci.sql_execute( | ||
f'select * from table(col_enumerate(cursor(select i4 from {omnisci.table_name})))') | ||
_, expected_result = omnisci.sql_execute( | ||
f'select i4 from {omnisci.table_name}') |
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.
The row order of select
is undefined and to ensure correct order (that enumerate
needs), one should use
select rowid, i4 from {omnisci.table_name} order by rowid;
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! Can you check if what I did is what you meant?
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.
Yes. Now the expected_result
ought to be uniquely defined. The query
select * from table(col_enumerate(cursor(select i4 from {omnisci.table_name})))
is vulnerable to the same effect but it could be that table functions results are always ordered. If not, at some point we should see this test breaking, until then, let's leave it as it is.
Supporting |
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 have a nit to remove dead code from tests, otherwise LGTM, thanks, @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.
LGMT! Thanks, @guilhermeleobas !
Fix #420
Heavily inspired in the
iternext
code for tuples:https://github.com/numba/numba/blob/61ec1fd0f69aeadece218dccf4c39ebc5c7dfbc4/numba/cpython/tupleobj.py#L159-L187