You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Selections not handled equally by pandas and sqlite query
The selections that are possible with the pandas.query() function is limited and not equal to what can be done when using an sqlite query. There is currently no way to allow for the selection query to be passed on to query_table function even though we support sqlite query selection in the query_table function of SQLiteDataset class
feature
I'd like to be able to use sqlite query selections even when using the StringSelectionResolver
Implementation
add an optional variable to StringSelectionResolver whether to use the selection query of the super ie. SQLiteDataset or ParquetDataset class. (str selections not currently not supported in parquet)
The text was updated successfully, but these errors were encountered:
Selections not handled equally by pandas and sqlite query
The selections that are possible with the
pandas.query()
function is limited and not equal to what can be done when using an sqlite query. There is currently no way to allow for the selection query to be passed on toquery_table
function even though we support sqlite query selection in thequery_table
function ofSQLiteDataset
classfeature
I'd like to be able to use sqlite query selections even when using the
StringSelectionResolver
Implementation
add an optional variable to
StringSelectionResolver
whether to use the selection query of the super ie.SQLiteDataset
orParquetDataset
class. (str selections not currently not supported in parquet)The text was updated successfully, but these errors were encountered: