PyTables / datasette-pytables

Datasette connector for dealing with PyTables and pandas/HDF5 files
Apache License 2.0
6 stars 1 forks source link

Sort by a column in custom queries #3

Open jsancho-gpl opened 6 years ago

jsancho-gpl commented 6 years ago

When executing a query with both where and order by, the results aren't ordered. This is due because method Table.where is used, and that method doesn't allow sort arguments.

To fix it, method Table.get_where_list should be used.