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 support for enumerate(Array, Column) #435

Merged
merged 7 commits into from
Feb 19, 2022

Conversation

guilhermeleobas
Copy link
Contributor

@guilhermeleobas guilhermeleobas commented Feb 14, 2022

@guilhermeleobas guilhermeleobas added the enhancement New feature or request label Feb 14, 2022
@guilhermeleobas guilhermeleobas self-assigned this Feb 14, 2022
Copy link
Contributor

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

Comment on lines 76 to 77
@pytest.mark.xfail
def test_columnlist_enumerate(omnisci):
Copy link
Contributor

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}')
Copy link
Contributor

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;

Copy link
Contributor Author

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?

Copy link
Contributor

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.

@guilhermeleobas
Copy link
Contributor Author

Supporting enumerate(ColumnList) will require a bit more of work, and I'll do it in a later PR.

Copy link
Contributor

@pearu pearu left a 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 !

Copy link
Contributor

@pearu pearu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGMT! Thanks, @guilhermeleobas !

@pearu pearu merged commit 2929f1b into heavyai:master Feb 19, 2022
@guilhermeleobas guilhermeleobas deleted the guilhermeleobas/enumerate branch February 23, 2022 18:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support enumerate for UD[T]F
2 participants