CREATE TABLE single_partition(i DOUBLE, j TIMESTAMP TIME INDEX, k STRING PRIMARY KEY); Affected Rows: 0 -- SQLNESS REPLACE (-+) - -- SQLNESS REPLACE (\s\s+) _ -- SQLNESS REPLACE (RoundRobinBatch.*) REDACTED -- SQLNESS REPLACE (Hash.*) REDACTED -- SQLNESS REPLACE (peers.*) REDACTED EXPLAIN SELECT COUNT(*) FROM single_partition; +-+-+ | plan_type_| plan_| +-+-+ | logical_plan_| MergeScan [is_placeholder=false, remote_input=[_| |_| Projection: count(Int64(1)) AS count(*)_| |_|_Aggregate: groupBy=[[]], aggr=[[count(single_partition.j) AS count(Int64(1))]] | |_|_TableScan: single_partition_| |_| ]]_| | physical_plan | CooperativeExec_| |_|_MergeScanExec: REDACTED |_|_| +-+-+ -- SQLNESS REPLACE (-+) - -- SQLNESS REPLACE (\s\s+) _ -- SQLNESS REPLACE (RoundRobinBatch.*) REDACTED -- SQLNESS REPLACE (Hash.*) REDACTED -- SQLNESS REPLACE (peers.*) REDACTED EXPLAIN SELECT SUM(i) FROM single_partition; +-+-+ | plan_type_| plan_| +-+-+ | logical_plan_| MergeScan [is_placeholder=false, remote_input=[_| |_| Projection: sum(single_partition.i)_| |_|_Aggregate: groupBy=[[]], aggr=[[sum(single_partition.i)]] | |_|_TableScan: single_partition_| |_| ]]_| | physical_plan | CooperativeExec_| |_|_MergeScanExec: REDACTED |_|_| +-+-+ -- SQLNESS REPLACE (-+) - -- SQLNESS REPLACE (\s\s+) _ -- SQLNESS REPLACE (RoundRobinBatch.*) REDACTED -- SQLNESS REPLACE (Hash.*) REDACTED -- SQLNESS REPLACE (peers.*) REDACTED EXPLAIN SELECT * FROM single_partition ORDER BY i DESC; +-+-+ | plan_type_| plan_| +-+-+ | logical_plan_| MergeScan [is_placeholder=false, remote_input=[_| |_| Sort: single_partition.i DESC NULLS FIRST_| |_|_Projection: single_partition.i, single_partition.j, single_partition.k | |_|_TableScan: single_partition_| |_| ]]_| | physical_plan | CooperativeExec_| |_|_MergeScanExec: REDACTED |_|_| +-+-+ drop table single_partition; Affected Rows: 0