Update tests

This commit is contained in:
avogar 2024-11-20 14:14:44 +00:00
parent 3a394bc291
commit c797ecd284
2 changed files with 3 additions and 16 deletions

View File

@ -48,14 +48,7 @@
}
],
"rows": 1,
"statistics":
{
"elapsed": 0.003190043,
"rows_read": 0,
"bytes_read": 0
}
"rows": 1
}
{
"meta":
@ -88,12 +81,5 @@
}
],
"rows": 1,
"statistics":
{
"elapsed": 0.001094511,
"rows_read": 0,
"bytes_read": 0
}
"rows": 1
}

View File

@ -1,4 +1,5 @@
set enable_named_columns_in_function_tuple=1;
set output_format_write_statistics=0;
select tuple(1 as b, 2 as c) as a, map('e', 3, 'f', 4) as d, [5, 6] as g, tuple(map('i', [tuple(7 as j, 8 as k)]) as l, 42 as m) as h format JSON;
select tuple(1 as b, 2 as c) as a, map('e', 3, 'f', 4) as d, [5, 6] as g, tuple(map('i', [tuple(7 as j, 8 as k)]) as l, 42 as m) as h format JSON settings output_format_json_pretty_print=0;