ydb-platform / ydb-sqlalchemy

YQL Dialect for SQLAlchemy
Apache License 2.0
20 stars 6 forks source link

Do not use set for columns in index #52

Closed LuckySting closed 3 months ago

LuckySting commented 3 months ago

Problem

Now the set is used as collection of columns and cover columns of index in compiler. Which may lead to random order of columns in index.

Proposed solution

Use list and dict, which preserve an original order of elements

rekby commented 3 months ago

Thanks for the PR :)