blob: 87e9aa8424fdf4249b697bcc4162e963d7fbd22e [file] [log] [blame]
values(1+1, 2, 5.0, 'a')
---- PLAN
PLAN-ROOT SINK
|
00:UNION
constant-operands=1
---- DISTRIBUTEDPLAN
PLAN-ROOT SINK
|
00:UNION
constant-operands=1
====
values(1+1, 2, 5.0, 'a') order by 1 limit 10
---- PLAN
PLAN-ROOT SINK
|
01:TOP-N [LIMIT=10]
| order by: 2 ASC
|
00:UNION
constant-operands=1
---- DISTRIBUTEDPLAN
PLAN-ROOT SINK
|
01:TOP-N [LIMIT=10]
| order by: 2 ASC
|
00:UNION
constant-operands=1
====
values((1+1, 2, 5.0, 'a'), (2, 3, 6.0, 'b'), (3, 4, 7.0, 'c'))
---- PLAN
PLAN-ROOT SINK
|
00:UNION
constant-operands=3
---- DISTRIBUTEDPLAN
PLAN-ROOT SINK
|
00:UNION
constant-operands=3
====
values((1+1, 2, 5.0, 'a'), (2, 3, 6.0, 'b'), (3, 4, 7.0, 'c')) order by 1 limit 10
---- PLAN
PLAN-ROOT SINK
|
01:TOP-N [LIMIT=10]
| order by: 2 ASC
|
00:UNION
constant-operands=3
---- DISTRIBUTEDPLAN
PLAN-ROOT SINK
|
01:TOP-N [LIMIT=10]
| order by: 2 ASC
|
00:UNION
constant-operands=3
====