EXPLAIN
WITH cte AS (SELECT col AS other FROM '$__TEST_DIR__/cte-alias.vortex')
SELECT * FROM cte WHERE other IS NOT NULL ORDER BY other;
physical_plan ┌───────────────────────────┐
│ ORDER_BY │
│ ──────────────────── │
│ cte.other ASC │
└─────────────┬─────────────┘
┌─────────────┴─────────────┐
│ READ_VORTEX │
│ ──────────────────── │
│ Function: Vortex Scan │
│ Filters: │
│ is_not_null($.other) │
│ Projections: col │
└───────────────────────────┘
This is a duckdb bug since it should request an original
column's name when pushing CTE through Vortex.
#8327
This is a duckdb bug since it should request an original
column's name when pushing CTE through Vortex.
#8327