Open findepi opened 3 days ago
When doing interactive data exploration with wide tables/views with moderately expensive queries, it's very useful to run queries like
SELECT <important-columns, * FROM ... WHERE ...
This is useful because
This pattern unfortunately does not currently work in DataFusion
*
create table users (id int, name varchar, ........, registration_time timestamp); select registration_time, id, * from users
Query should succeed. It's valid ANSI SQL and supported by PostgreSQL, Trino, Snowflake, DuckDB, others
No response
Describe the bug
When doing interactive data exploration with wide tables/views with moderately expensive queries, it's very useful to run queries like
This is useful because
This pattern unfortunately does not currently work in DataFusion
*
and whenever new column is needed, it needs to be re-runTo Reproduce
Expected behavior
Query should succeed. It's valid ANSI SQL and supported by PostgreSQL, Trino, Snowflake, DuckDB, others
Additional context
No response