blob: 7070defdb50c9059d72c9e5f81efb7008d3889d5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/* syntax version 1 */
/* postgres can not */
define subquery $sub() as
select * from (values (1),(2),(3)) as a(x);
end define;
$sub2 = SubqueryOrderBy($sub, [("x",false)]);
process $sub2();
|