# MonetDB 5 server v11.54.0 # This is an unreleased version # Serving database 'mTests_sql_test_pg_regress', using 4 threads # Compiled for amd64-pc-windows-msvc/32bit # Found 7.997 GiB available main-memory of which we use 1.500 GiB # Copyright (c) 2024, 2025 MonetDB Foundation, all rights reserved # Visit https://www.monetdb.org/ for further information # MonetDB/GIS module loaded # MonetDB/SQL module loaded # Listening for connection requests on mapi:monetdb://win2k22:57105/ # MonetDB server is started. To stop server press Ctrl-C. #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select 1 as one #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select cast('t' as boolean) as "true" #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select cast('true' as boolean) as "true" #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select cast('f' as boolean) as "false" #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select cast('false' as boolean) as "false" #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select cast('t' as boolean) or cast('f' as boolean) as "true" #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select cast('true' as boolean) or cast('false' as boolean) as "true" #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select cast('t' as boolean) and cast('f' as boolean) as "false" #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select cast('true' as boolean) and cast('false' as boolean) as "false" #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select not cast('f' as boolean) as "true" #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select not cast('false' as boolean) as "true" #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select not cast('true' as boolean) as "false" #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select cast('t' as boolean) = cast('f' as boolean) as "false" #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select cast('true' as boolean) = cast('false' as boolean) as "false" #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select cast('t' as boolean) <> cast('f' as boolean) as "true" #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select cast('true' as boolean) <> cast('false' as boolean) as "true" #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: create table booltbl1 (f1 bool) #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: insert into booltbl1 (f1) values (cast('t' as boolean)) #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: insert into booltbl1 (f1) values (cast('true' as boolean)) #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: insert into booltbl1 (f1) values (cast('True' as boolean)) #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: insert into booltbl1 (f1) values (cast(lower('True') as boolean)) #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: insert into booltbl1 (f1) values ('true') #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as f_3, * from booltbl1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as t_3, booltbl1.* #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as t_3, booltbl1.* #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: insert into booltbl1 (f1) values (cast('f' as boolean)) #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: insert into booltbl1 (f1) values (cast('false' as boolean)) #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as f_1, booltbl1.* #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: create table booltbl2 (f1 bool) #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: insert into booltbl2 (f1) values (cast('f' as boolean)) #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: insert into booltbl2 (f1) values (cast('false' as boolean)) #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: insert into booltbl2 (f1) values (cast('False' as boolean)) #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: insert into booltbl2 (f1) values (cast(lower('False') as boolean)) #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: insert into booltbl2 (f1) values (cast('FALSE' as boolean)) #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: insert into booltbl2 (f1) values (cast(lower('FALSE') as boolean)) #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: insert into booltbl2 (f1) #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as f_4, * from booltbl2 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as tf_12, booltbl1.*, booltbl2.* #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as ff_4, booltbl1.*, booltbl2.* #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as tf_12_ff_4, booltbl1.*, booltbl2.* #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as "True", f1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as "Not False", f1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as "Not False", f1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as "Not False", f1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as "False", f1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as "Not True", f1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as "Not True", f1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as "Not True", f1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as "True", f1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as "Not False", f1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as "Not False", f1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as "Not False", f1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as "False", f1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as "Not True", f1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as "Not True", f1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: select '' as "Not True", f1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: drop table booltbl1 #2025-04-04 21:25:23: client0016: SQLrun: INFO: Executing: drop table booltbl2 #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select cast('c' as char) = cast('c' as char) as "true" #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: create table char_tbl(f1 char) #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('a') #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('A') #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('1') #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: insert into char_tbl (f1) values (2) #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('3') #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('') #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('cd') #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('c ') #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select '' as seven, char_tbl.* from char_tbl #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select '' as six, c.* #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select '' as one, c.* #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select '' as five, c.* #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select '' as six, c.* #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select '' as one, c.* #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select '' as two, c.* #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: drop table char_tbl #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: create table char_tbl(f1 char(4)) #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('a') #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('ab') #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('abcd') #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('abcde') #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('abcd ') #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: select '' as four, char_tbl.* from char_tbl #2025-04-04 21:25:23: client0017: SQLrun: INFO: Executing: drop table char_tbl #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: create table varchar_tbl(f1 varchar(1)) #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('a') #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('A') #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('1') #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values (2) #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('3') #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('') #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('cd') #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('c ') #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: select '' as seven, varchar_tbl.* from varchar_tbl #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: select '' as six, c.* #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: select '' as one, c.* #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: select '' as five, c.* #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: select '' as six, c.* #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: select '' as one, c.* #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: select '' as two, c.* #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: drop table varchar_tbl #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: create table varchar_tbl(f1 varchar(4)) #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('a') #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('ab') #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('abcd') #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('abcde') #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('abcd ') #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: select '' as four, varchar_tbl.* from varchar_tbl #2025-04-04 21:25:23: client0018: SQLrun: INFO: Executing: drop table varchar_tbl #2025-04-04 21:25:23: client0020: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:23: client0020: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:23: client0020: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:23: client0020: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0020: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:23: client0020: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0020: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:23: client0020: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:23: client0020: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:23: client0020: SQLrun: INFO: Executing: select cast ('this is a text string' as text) = cast('this is a text string' as text) as "true" #2025-04-04 21:25:23: client0020: SQLrun: INFO: Executing: select cast ('this is a text string' as text) = cast('this is a text strin' as text) as "false" #2025-04-04 21:25:23: client0020: SQLrun: INFO: Executing: create table text_tbl (f1 text) #2025-04-04 21:25:23: client0020: SQLrun: INFO: Executing: insert into text_tbl values ('doh!') #2025-04-04 21:25:23: client0020: SQLrun: INFO: Executing: insert into text_tbl values ('hi de ho neighbor') #2025-04-04 21:25:23: client0020: SQLrun: INFO: Executing: select '' as two, * from text_tbl #2025-04-04 21:25:23: client0020: SQLrun: INFO: Executing: drop table text_tbl #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: create table int2_tbl(f1 smallint) #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('0 ') #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values (' 1234 ') #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values (' -1234') #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('34.5') #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('32767') #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('-32767') #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('100000') #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('asdf') #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values (' ') #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('- 1234') #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('4 444') #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('123 dt') #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('') #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as five, * from int2_tbl #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as four, i.* from int2_tbl i where i.f1 <> cast('0' as smallint) #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as four, i.* from int2_tbl i where i.f1 <> cast('0' as integer) #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as one, i.* from int2_tbl i where i.f1 = cast('0' as smallint) #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as one, i.* from int2_tbl i where i.f1 = cast('0' as integer) #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as two, i.* from int2_tbl i where i.f1 < cast('0' as smallint) #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as two, i.* from int2_tbl i where i.f1 < cast('0' as integer) #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as three, i.* from int2_tbl i where i.f1 <= cast('0' as smallint) #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as three, i.* from int2_tbl i where i.f1 <= cast('0' as integer) #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as two, i.* from int2_tbl i where i.f1 > cast('0' as smallint) #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as two, i.* from int2_tbl i where i.f1 > cast('0' as integer) #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as three, i.* from int2_tbl i where i.f1 >= cast('0' as smallint) #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as three, i.* from int2_tbl i where i.f1 >= cast('0' as integer) #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as one, i.* from int2_tbl i where (i.f1 % cast('2' as smallint)) = cast('1' as smallint) #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as three, i.* from int2_tbl i where (i.f1 % cast('2' as integer)) = cast('0' as smallint) #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 * cast('2' as smallint) as x from int2_tbl i #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 * cast('2' as smallint) as x from int2_tbl i #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 * cast('2' as integer) as x from int2_tbl i #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 + cast('2' as smallint) as x from int2_tbl i #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 + cast('2' as smallint) as x from int2_tbl i #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 + cast('2' as integer) as x from int2_tbl i #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 - cast('2' as smallint) as x from int2_tbl i #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 - cast('2' as smallint) as x from int2_tbl i #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 - cast('2' as integer) as x from int2_tbl i #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 / cast('2' as smallint) as x from int2_tbl i #2025-04-04 21:25:23: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 / cast('2' as integer) as x from int2_tbl i #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: drop table "sys"."int2_tbl" cascade #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: create table int4_tbl(f1 integer) #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: insert into int4_tbl(f1) values (' 0 ') #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('123456 ') #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: insert into int4_tbl(f1) values (' -123456') #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('34.5') #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('2147483647') #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('-2147483647') #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('1000000000000') #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('asdf') #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: insert into int4_tbl(f1) values (' ') #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: insert into int4_tbl(f1) values (' asdf ') #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('- 1234') #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('123 5') #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('') #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as four, i.* from int4_tbl i where i.f1 <> cast('0' as smallint) #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as four, i.* from int4_tbl i where i.f1 <> cast('0' as integer) #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as one, i.* from int4_tbl i where i.f1 = cast('0' as smallint) #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as one, i.* from int4_tbl i where i.f1 = cast('0' as integer) #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as two, i.* from int4_tbl i where i.f1 < cast('0' as smallint) #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as two, i.* from int4_tbl i where i.f1 < cast('0' as integer) #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as three, i.* from int4_tbl i where i.f1 <= cast('0' as smallint) #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as three, i.* from int4_tbl i where i.f1 <= cast('0' as integer) #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as two, i.* from int4_tbl i where i.f1 > cast('0' as smallint) #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as two, i.* from int4_tbl i where i.f1 > cast('0' as integer) #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as three, i.* from int4_tbl i where i.f1 >= cast('0' as smallint) #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as three, i.* from int4_tbl i where i.f1 >= cast('0' as integer) #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as one, i.* from int4_tbl i where (i.f1 % cast('2' as smallint)) = cast('1' as smallint) #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as three, i.* from int4_tbl i where (i.f1 % cast('2' as integer)) = cast('0' as smallint) #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 * cast('2' as smallint) as x from int4_tbl i #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 * cast('2' as smallint) as x from int4_tbl i #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 * cast('2' as integer) as x from int4_tbl i #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 * cast('2' as integer) as x from int4_tbl i #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 + cast('2' as smallint) as x from int4_tbl i #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 + cast('2' as smallint) as x from int4_tbl i #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 + cast('2' as integer) as x from int4_tbl i #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 + cast('2' as integer) as x from int4_tbl i #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 - cast('2' as smallint) as x from int4_tbl i #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 - cast('2' as smallint) as x from int4_tbl i #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 - cast('2' as integer) as x from int4_tbl i #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 - cast('2' as integer) as x from int4_tbl i #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 / cast('2' as smallint) as x from int4_tbl i #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 / cast('2' as integer) as x from int4_tbl i #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select -2+3 as one #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select 4-2 as two #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select 2- -1 as three #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select 2 - -2 as four #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select cast('2' as smallint) * cast('2' as smallint) = cast('16' as smallint) / cast('4' as smallint) as "true" #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select cast('2' as integer) * cast('2' as smallint) = cast('16' as smallint) / cast('4' as integer) as "true" #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select cast('2' as smallint) * cast('2' as integer) = cast('16' as integer) / cast('4' as smallint) as "true" #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select cast('1000' as integer) < cast('999' as integer) as "false" #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 as ten #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select 2 + 2 / 2 as three #2025-04-04 21:25:23: client0023: SQLrun: INFO: Executing: select (2 + 2) / 2 as two #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: drop table "sys"."int4_tbl" cascade #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: set optimizer = 'sequential_pipe' #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: create table int8_tbl(q1 bigint, q2 bigint) #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: insert into int8_tbl values(' 123 ',' 456') #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: insert into int8_tbl values('123 ','4567890123456789') #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: insert into int8_tbl values('4567890123456789','123') #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: insert into int8_tbl values('4567890123456789','4567890123456789') #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: insert into int8_tbl values('4567890123456789','-4567890123456789') #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: insert into int8_tbl(q1) values (' ') #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: insert into int8_tbl(q1) values ('xxx') #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: insert into int8_tbl(q1) values ('3908203590239580293850293850329485') #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: insert into int8_tbl(q1) values ('-1204982019841029840928340329840934') #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: insert into int8_tbl(q1) values ('- 123') #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: insert into int8_tbl(q1) values (' 345 5') #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: insert into int8_tbl(q1) values ('') #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select * from int8_tbl #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select '' as five, q1 as plus, -q1 as minus from int8_tbl #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select '' as five, q1, q2, q1 + q2 as plus from int8_tbl #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select '' as five, q1, q2, q1 - q2 as minus from int8_tbl #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select '' as three, q1, q2, q1 * q2 as multiply from int8_tbl #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select '' as five, q1, q2, q1 / q2 as divide from int8_tbl #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select '' as five, q1, cast(q1 as double) from int8_tbl #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select '' as five, q2, cast(q2 as double) from int8_tbl #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select '' as five, 2 * q1 as "twice integer" from int8_tbl #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: select '' as five, q1 * 2 as "twice integer" from int8_tbl #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: drop table int8_tbl #2025-04-04 21:25:23: client0027: SQLrun: INFO: Executing: set optimizer = 'default_pipe' #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: create table float4_tbl (f1 real) #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: insert into float4_tbl(f1) values (' 0.0') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('1004.30 ') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: insert into float4_tbl(f1) values (' -34.84 ') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('1.2345678901234e+20') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('1.2345678901234e-20') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('10e40') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('-10e40') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('10e-40') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('-10e-40') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: insert into float4_tbl(f1) values (' ') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('xyz') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('5.0.0') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('5 . 0') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('5. 0') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: insert into float4_tbl(f1) values (' - 3.0') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('123 5') #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select cast('NaN' as real) #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select cast('nan' as real) #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select cast(' NAN ' as real) #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select cast('infinity' as real) #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select cast(' -INFINiTY ' as real) #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select cast('N A N' as real) #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select cast('NaN x' as real) #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select cast(' INFINITY x' as real) #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select cast('Infinity' as real) + 100.0 #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select cast('Infinity' as real) / cast('Infinity' as real) #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select cast('nan' as real) / cast('nan' as real) #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as five, float4_tbl.* from float4_tbl #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as four, f.* from float4_tbl f where f.f1 <> '1004.3' #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as one, f.* from float4_tbl f where f.f1 = '1004.3' #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as three, f.* from float4_tbl f where '1004.3' > f.f1 #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as three, f.* from float4_tbl f where f.f1 < '1004.3' #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as four, f.* from float4_tbl f where '1004.3' >= f.f1 #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as four, f.* from float4_tbl f where f.f1 <= '1004.3' #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as three, f.f1, f.f1 * '-10' as x from float4_tbl f #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as three, f.f1, f.f1 + '-10' as x from float4_tbl f #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as three, f.f1, f.f1 / '-10' as x from float4_tbl f #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as three, f.f1, f.f1 - '-10' as x from float4_tbl f #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as bad, f.f1 / '0.0' from float4_tbl f #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as five, f.f1, abs(f1) as abs_f1 #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as five, f.f1, round(f.f1, 0) as round_f1 #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select ceil(f1) as ceil_f1 from float4_tbl f #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select ceiling(f1) as ceiling_f1 from float4_tbl f #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select floor(f1) as floor_f1 from float4_tbl f #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select sign(f1) as sign_f1 from float4_tbl f #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select sqrt(cast('64' as double)) as eight #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as three, f.f1, sqrt(f.f1) as sqrt_f1 #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select power(cast('144' as double), cast('0.5' as double)) #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as three, f.f1, exp(ln(f.f1)) as exp_ln_f1 #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as five, * from float4_tbl #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: update float4_tbl #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: select '' as five, * from float4_tbl #2025-04-04 21:25:23: client0028: SQLrun: INFO: Executing: drop table float4_tbl #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: create table float8_tbl(f1 double) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values (' 0.0 ') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('1004.30 ') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values (' -34.84') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('1.2345678901234e+200') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('1.2345678901234e-200') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select cast('10e400' as double) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select cast('-10e400' as double) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select cast('10e-400' as double) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select cast('-10e-400' as double) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values (' ') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('xyz') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('5.0.0') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('5 . 0') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('5. 0') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values (' - 3') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('123 5') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select cast('NaN' as double) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select cast('nan' as double) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select cast(' NAN ' as double) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select cast('infinity' as double) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select cast(' -INFINiTY ' as double) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select cast('N A N' as double) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select cast('NaN x' as double) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select cast(' INFINITY x' as double) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select cast('Infinity' as double) + 100.0 #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select cast('Infinity' as double) / cast('Infinity' as double) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select cast('nan' as double) / cast('nan' as double) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as five, float8_tbl.* from float8_tbl #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as four, f.* from float8_tbl f where f.f1 <> '1004.3' #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as one, f.* from float8_tbl f where f.f1 = '1004.3' #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as three, f.* from float8_tbl f where '1004.3' > f.f1 #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as three, f.* from float8_tbl f where f.f1 < '1004.3' #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as four, f.* from float8_tbl f where '1004.3' >= f.f1 #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as four, f.* from float8_tbl f where f.f1 <= '1004.3' #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as three, f.f1, f.f1 * '-10' as x #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as three, f.f1, f.f1 + '-10' as x #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as three, f.f1, f.f1 / '-10' as x #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as three, f.f1, f.f1 - '-10' as x #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as five, f.f1, abs(f1) as abs_f1 #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as five, f.f1, round(f.f1, 0) as round_f1 #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select ceil(f1) as ceil_f1 from float8_tbl f #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select ceiling(f1) as ceiling_f1 from float8_tbl f #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select floor(f1) as floor_f1 from float8_tbl f #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select sign(f1) as sign_f1 from float8_tbl f #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select sqrt(cast('64' as double)) as eight #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as three, f.f1, sqrt(f.f1) as sqrt_f1 #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select power(cast('144' as double), cast('0.5' as double)) #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as three, f.f1, exp(ln(f.f1)) as exp_ln_f1 #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as five, * from float8_tbl #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: update float8_tbl #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as bad, f.f1 * '1e200' from float8_tbl f #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as bad, f.f1 ^ '3' from float8_tbl f #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as bad, log(-f.f1) from float8_tbl f where f.f1 < '0.0' #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as bad, exp(-f.f1) from float8_tbl f where f.f1 > '-1000.0' #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as bad, f.f1 / '0.0' from float8_tbl f #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as five, * from float8_tbl #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('10e400') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('-10e400') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('10e-400') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('-10e-400') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: delete from float8_tbl #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('0.0') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('-34.84') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('-1004.30') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('-1.2345678901234e+200') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('-1.2345678901234e-200') #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: select '' as five, * from float8_tbl #2025-04-04 21:25:23: client0035: SQLrun: INFO: Executing: drop table float8_tbl #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'first line' #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'first line' #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: create table char_tbl(f1 char) #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('a') #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('A') #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('1') #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into char_tbl (f1) values (2) #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('3') #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('') #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select cast(f1 as text) as "text(char)" from char_tbl #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: create table varchar_tbl(f1 varchar(1)) #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('a') #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('A') #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('1') #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values (2) #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('3') #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('') #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select cast(f1 as text) as "text(varchar)" from varchar_tbl #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select cast('namefield' as text) as "text(name)" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: create table text_tbl (f1 text) #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into text_tbl values ('doh!') #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into text_tbl values ('hi de ho neighbor') #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select cast(f1 as char(10)) as "char(text)" from text_tbl #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select cast(f1 as char(20)) as "char(text)" from text_tbl #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select cast(f1 as char(10)) as "char(varchar)" from varchar_tbl #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select cast('namefield' as char(10)) as "char(name)" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select cast(f1 as varchar(1)) as "varchar(text)" from text_tbl #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select cast(f1 as varchar(1)) as "varchar(char)" from char_tbl #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select cast('namefield' as string) as "varchar(name)" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: drop table char_tbl #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: drop table varchar_tbl #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: drop table text_tbl #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select trim(' bunch o blanks ') = 'bunch o blanks' as "bunch o blanks" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select ltrim(' bunch o blanks ') = 'bunch o blanks ' as "bunch o blanks " #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select rtrim(' bunch o blanks ') = ' bunch o blanks' as " bunch o blanks" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select trim(replace('xxxxxsome Xsxxxxx', 'x', ' ')) = 'some Xs' as "some Xs" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select substring('1234567890' from 3) = '34567890' as "34567890" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select substring('1234567890' from 4 for 3) = '456' as "456" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select substring('abcdefg' from '(b|c)' for null) is null as "True" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select substring('abcdefg' from null for '#') is null as "True" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select substring('abcdefg' from 'c.e') as "cde" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select substring('abcdefg' from 'b(.*)f') as "cde" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select position('4' in '1234567890') = '4' as "4" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select position(5 in '1234567890') = '5' as "5" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'hawkeye' like 'h%' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'hawkeye' not like 'h%' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'hawkeye' like 'H%' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'hawkeye' not like 'H%' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'hawkeye' like 'indio%' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'hawkeye' not like 'indio%' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'hawkeye' like 'h%eye' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'hawkeye' not like 'h%eye' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'indio' like '_ndio' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'indio' not like '_ndio' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'indio' like 'in__o' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'indio' not like 'in__o' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'indio' like 'in_o' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'indio' not like 'in_o' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'hawkeye' like 'h%' escape '#' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'hawkeye' not like 'h%' escape '#' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'indio' like 'ind_o' escape '$' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'indio' not like 'ind_o' escape '$' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'h%' like 'h#%' escape '#' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'h%' not like 'h#%' escape '#' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'h%wkeye' like 'h#%' escape '#' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'h%wkeye' not like 'h#%' escape '#' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'h%wkeye' like 'h#%%' escape '#' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'h%wkeye' not like 'h#%%' escape '#' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'h%awkeye' like 'h#%a%k%e' escape '#' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'h%awkeye' not like 'h#%a%k%e' escape '#' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'indio' like '_ndio' escape '$' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'indio' not like '_ndio' escape '$' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'i_dio' like 'i$_d_o' escape '$' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'i_dio' not like 'i$_d_o' escape '$' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'i_dio' like 'i$_nd_o' escape '$' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'i_dio' not like 'i$_nd_o' escape '$' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'i_dio' like 'i$_d%o' escape '$' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'i_dio' not like 'i$_d%o' escape '$' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'maca' like 'm%aca' escape '%' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'maca' not like 'm%aca' escape '%' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'ma%a' like 'm%a%%a' escape '%' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'ma%a' not like 'm%a%%a' escape '%' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'bear' like 'b_ear' escape '_' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'bear' not like 'b_ear' escape '_' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'be_r' like 'b_e__r' escape '_' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'be_r' not like 'b_e__r' escape '_' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'be_r' like '__e__r' escape '_' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'be_r' not like '__e__r' escape '_' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'hawkeye' ilike 'h%' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'hawkeye' not ilike 'h%' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'hawkeye' ilike 'H%' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'hawkeye' not ilike 'H%' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'hawkeye' ilike 'H%Eye' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'hawkeye' not ilike 'H%Eye' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'Hawkeye' ilike 'h%' as "true" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'Hawkeye' not ilike 'h%' as "false" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select 'unknown' || ' and unknown' as "Concat unknown types" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select cast('text' as text) || ' and unknown' as "Concat text to unknown type" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select cast('characters' as char(20)) || ' and text' as "Concat char to unknown type" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select cast('text' as text) || cast(' and characters' as char(20)) as "Concat text to char" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select cast('text' as text) || cast(' and varchar' as varchar(20)) as "Concat text to varchar" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: create table toasttest(f1 text) #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into toasttest values(repeat('1234567890',10000)) #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into toasttest values(repeat('1234567890',10000)) #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into toasttest values(repeat('1234567890',10000)) #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into toasttest values(repeat('1234567890',10000)) #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select substring(f1, -1, 5) from toasttest #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select substring(f1, 5, -1) from toasttest #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select substring(f1, 99995) from toasttest #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select substring(f1, 99995, 10) from toasttest #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: drop table toasttest #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: create table toasttest(f1 blob) #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into toasttest values(repeat('1234567890',10000)) #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: insert into toasttest values(repeat('1234567890',10000)) #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select substring(f1, -1, 5) from toasttest #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select substring(f1, 5, -1) from toasttest #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select substring(f1, 99995) from toasttest #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select substring(f1, 99995, 10) from toasttest #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: drop table toasttest #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select length('abcdef') as "length_6" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select locate('cd', 'abcdef') as "pos_3" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select locate('xy', 'abcdef') as "pos_0" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select replace('abcdef', 'de', '45') as "abc45f" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select replace('yabadabadoo', 'ba', '123') as "ya123da123doo" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select replace('yabadoo', 'bad', '') as "yaoo" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select split_part('joeuser@mydatabase','@',0) as "an error" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select split_part('joeuser@mydatabase','@',1) as "joeuser" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select split_part('joeuser@mydatabase','@',2) as "mydatabase" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select split_part('joeuser@mydatabase','@',3) as "empty string" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select split_part('@joeuser@mydatabase@','@',2) as "joeuser" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select md5('') = 'd41d8cd98f00b204e9800998ecf8427e' as "TRUE" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select md5('a') = '0cc175b9c0f1b6a831c399e269772661' as "TRUE" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select md5('abc') = '900150983cd24fb0d6963f7d28e17f72' as "TRUE" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select md5('message digest') = 'f96b697d7cb7938d525a2f31aaf161d0' as "TRUE" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select md5('abcdefghijklmnopqrstuvwxyz') = 'c3fcd3d76192e4007dfb496cca67e13b' as "TRUE" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select md5('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789') = 'd174ab98d277d9f5a5611c2c9f419d9f' as "TRUE" #2025-04-04 21:25:23: client0036: SQLrun: INFO: Executing: select md5('12345678901234567890123456789012345678901234567890123456789012345678901234567890') = '57edf4a22be3c955ac49da2e2107b67a' as "TRUE" #2025-04-04 21:25:23: client0046: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:23: client0046: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:23: client0046: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:23: client0046: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0046: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:23: client0046: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:23: client0046: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:23: client0046: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:23: client0046: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:23: client0046: SQLrun: INFO: Executing: select 'first line' #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: create table char_tbl(f1 char(4)) #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('a') #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('ab') #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('abcd') #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: create table varchar_tbl(f1 varchar(4)) #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('a') #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('ab') #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('abcd') #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: create table text_tbl (f1 text) #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: insert into text_tbl values ('doh!') #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: insert into text_tbl values ('hi de ho neighbor') #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select cast(f1 as text) as "text(char)" from char_tbl #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select cast(f1 as text) as "text(varchar)" from varchar_tbl #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select cast('namefield' as text) as "text(name)" #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select cast(f1 as char(10)) as "char(text)" from text_tbl #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select cast(f1 as char(20)) as "char(text)" from text_tbl #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select cast(f1 as char(10)) as "char(varchar)" from varchar_tbl #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select cast('namefield' as char(10)) as "char(name)" #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select cast(f1 as varchar(3)) as "varchar(text)" from text_tbl #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select cast(f1 as varchar(3)) as "varchar(char)" from char_tbl #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: select cast('namefield' as varchar(3)) as "varchar(name)" #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: drop table char_tbl #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: drop table varchar_tbl #2025-04-04 21:25:24: client0047: SQLrun: INFO: Executing: drop table text_tbl #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'hawkeye' like 'h%' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'hawkeye' not like 'h%' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'hawkeye' like 'H%' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'hawkeye' not like 'H%' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'hawkeye' like 'indio%' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'hawkeye' not like 'indio%' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'hawkeye' like 'h%eye' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'hawkeye' not like 'h%eye' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'indio' like '_ndio' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'indio' not like '_ndio' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'indio' like 'in__o' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'indio' not like 'in__o' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'indio' like 'in_o' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'indio' not like 'in_o' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'hawkeye' like 'h%' escape '#' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'hawkeye' not like 'h%' escape '#' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'indio' like 'ind_o' escape '$' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'indio' not like 'ind_o' escape '$' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'h%' like 'h#%' escape '#' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'h%' not like 'h#%' escape '#' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'h%wkeye' like 'h#%' escape '#' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'h%wkeye' not like 'h#%' escape '#' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'h%wkeye' like 'h#%%' escape '#' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'h%wkeye' not like 'h#%%' escape '#' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'h%awkeye' like 'h#%a%k%e' escape '#' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'h%awkeye' not like 'h#%a%k%e' escape '#' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'indio' like '_ndio' escape '$' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'indio' not like '_ndio' escape '$' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'i_dio' like 'i$_d_o' escape '$' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'i_dio' not like 'i$_d_o' escape '$' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'i_dio' like 'i$_nd_o' escape '$' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'i_dio' not like 'i$_nd_o' escape '$' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'i_dio' like 'i$_d%o' escape '$' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'i_dio' not like 'i$_d%o' escape '$' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'maca' like 'm%aca' escape '%' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'maca' not like 'm%aca' escape '%' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'ma%a' like 'm%a%%a' escape '%' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'ma%a' not like 'm%a%%a' escape '%' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'bear' like 'b_ear' escape '_' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'bear' not like 'b_ear' escape '_' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'be_r' like 'b_e__r' escape '_' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'be_r' not like 'b_e__r' escape '_' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'be_r' like '__e__r' escape '_' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'be_r' not like '__e__r' escape '_' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'hawkeye' ilike 'h%' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'hawkeye' not ilike 'h%' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'hawkeye' ilike 'H%' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'hawkeye' not ilike 'H%' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'hawkeye' ilike 'H%Eye' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'hawkeye' not ilike 'H%Eye' as "false" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'Hawkeye' ilike 'h%' as "true" #2025-04-04 21:25:24: client0052: SQLrun: INFO: Executing: select 'Hawkeye' not ilike 'h%' as "false" #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: create table int2_tbl(f1 smallint) #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('0 ') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into int2_tbl(f1) values (' 1234 ') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into int2_tbl(f1) values (' -1234') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('32767') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('-32767') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: create table int4_tbl(f1 integer) #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into int4_tbl(f1) values (' 0 ') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('123456 ') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into int4_tbl(f1) values (' -123456') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('2147483647') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('-2147483647') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: create table float8_tbl(f1 double) #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into float8_tbl(f1) values (' 0.0 ') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('1004.30 ') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into float8_tbl(f1) values (' -34.84') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('1.2345678901234e+200') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('1.2345678901234e-200') #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: create table temp_float (f1 double) #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into temp_float (f1) #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into temp_float (f1) #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: select 10 as ten, f1 from temp_float #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: create table temp_int4 (f1 integer) #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into temp_int4 (f1) #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into temp_int4 (f1) #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: select 9 as nine, f1 from temp_int4 #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: create table temp_int2 (f1 smallint) #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into temp_int2 (f1) #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into temp_int2 (f1) #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: select 5 as five, f1 from temp_int2 #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: create table temp_group (f1 integer, f2 integer, f3 double) #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into temp_group #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: insert into temp_group #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: select distinct f1 as two from temp_group #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: select f1 as two, max(f3) as max_float, min(f3) as min_float #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: select f1 as two, max(f3) as max_float, min(f3) as min_float #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: select f1 as two, (max(f3) + 1) as max_plus_1, (min(f3) - 1) as min_minus_1 #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: select f1 as two, #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: drop table temp_int2 #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: drop table temp_int4 #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: drop table temp_float #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: drop table temp_group #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: drop table float8_tbl #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: drop table int4_tbl #2025-04-04 21:25:24: client0061: SQLrun: INFO: Executing: drop table int2_tbl #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: create table point_tbl(f1 geometry(point)) #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: insert into point_tbl(f1) values (st_makepoint(0.0,0.0)) #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: insert into point_tbl(f1) values (st_makepoint(-10.0,0.0)) #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: insert into point_tbl(f1) values (st_makepoint(-3.0,4.0)) #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: insert into point_tbl(f1) values (st_makepoint(5.1, 34.5)) #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: insert into point_tbl(f1) values (st_makepoint(-5.0,-12.0)) #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: insert into point_tbl(f1) values (null) #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: insert into point_tbl(f1) values ('asdfasdf') #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: insert into point_tbl(f1) values ('10.0,10.0') #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: insert into point_tbl(f1) values ('(10.0 10.0)') #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: insert into point_tbl(f1) values ('(10,0.10,0') #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: insert into point_tbl(f1) values (st_makepoint(10,0.10,0)) #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select '' as six, point_tbl.* from point_tbl #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select '' as six, f1, cast(f1 as varchar(55)) as txt from point_tbl #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: create view point_tbl_vw as select f1, cast(f1 as varchar(55)) as txt from point_tbl #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select * from point_tbl_vw #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select '' as three, p.* from point_tbl_vw p where p.f1 << st_makepoint(0.0, 0.0) #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select '' as three, p.* from point_tbl_vw p where st_makepoint(0.0,0.0) >> p.f1 #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select '' as one, p.* from point_tbl_vw p where st_makepoint(0.0,0.0) |>> p.f1 #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select '' as one, p.* from point_tbl_vw p where p.f1 <<| st_makepoint(0.0, 0.0) #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select '' as one, p.* from point_tbl_vw p where p.f1 ~= st_makepoint(5.1, 34.5) #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select '' as three, p.* from point_tbl_vw p where p.f1 @ st_wkttosql('linestring(0 0, 100 100)') #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select '' as three, p.* from point_tbl_vw p where not p.f1 @ st_wkttosql('linestring(0 0, 100 100)') #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select '' as six, p.f1, p.f1 <-> st_makepoint(0,0) as dist from point_tbl p order by dist #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select '' as thirtysix, p1.f1 as point1, p2.f1 as point2, p1.f1 <-> p2.f1 as dist #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select '' as twenty, p1.f1 as point1, p2.f1 as point2 from point_tbl p1, point_tbl p2 where (p1.f1 <-> p2.f1) > 3 #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select '' as ten, p1.f1 as point1, p2.f1 as point2, (p1.f1 <-> p2.f1) as distance #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: select '' as ten, p1.f1 as point1, p2.f1 as point2, (p1.f1 <-> p2.f1) as distance #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: drop view point_tbl_vw #2025-04-04 21:25:24: client0062: SQLrun: INFO: Executing: drop table point_tbl #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: set optimizer = 'sequential_pipe' #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: create table box_tbl (f1 mbr) #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: insert into box_tbl (f1) values (mbr('linestring(2.0 2.0, 0.0 0.0)')) #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: insert into box_tbl (f1) values (mbr('linestring(1.0 1.0, 3.0 3.0)')) #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: insert into box_tbl (f1) values (mbr('linestring(2.5 2.5, 2.5 3.5)')) #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: insert into box_tbl (f1) values (mbr('linestring(3.0 3.0, 3.0 3.0)')) #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: insert into box_tbl (f1) values (mbr('(2.3, 4.5)')) #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: insert into box_tbl (f1) values (mbr('linestring(2.3, 4.5)')) #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: insert into box_tbl (f1) values (mbr('asdfasdf(ad')) #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: insert into box_tbl (f1) values (mbr('linestring(asdfasdf(ad)')) #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select '' as four, box_tbl.* from box_tbl #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select '' as four, b.f1, cast(f1 as varchar(44)) as txt from box_tbl b #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: create view box_tbl_vw as select f1, cast(f1 as varchar(44)) as txt from box_tbl #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select * from box_tbl_vw #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select '' as three, b.f1 from box_tbl_vw b where b.f1 && mbr('linestring(2.5 2.5, 1.0 1.0)') #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select '' as three, b.f1 from box_tbl_vw b where st_overlaps(b.f1, mbr('linestring(2.5 2.5, 1.0 1.0)')) #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select '' as two, b1.* from box_tbl_vw b1 where b1.f1 &< mbr('linestring(2.0 2.0, 2.5 2.5)') #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select '' as two, b1.* from box_tbl_vw b1 where b1.f1 &> mbr('linestring(2.0 2.0, 2.5 2.5)') #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select '' as two, b.f1 from box_tbl_vw b where b.f1 << mbr('linestring(3.0 3.0, 5.0 5.0)') #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select '' as three, b.f1 from box_tbl_vw b where b.f1 @ mbr('linestring(0 0, 3 3)') #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select '' as three, b.f1 from box_tbl_vw b where mbr('linestring(0 0, 3 3)') ~ b.f1 #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select '' as one, b.f1 from box_tbl_vw b where mbr('linestring(1 1, 3 3)') ~= b.f1 #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: select '' as one, b1.*, b2.* from box_tbl_vw b1, box_tbl_vw b2 where b1.f1 ~ b2.f1 and not b1.f1 ~= b2.f1 #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: drop view box_tbl_vw #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: drop table box_tbl #2025-04-04 21:25:24: client0063: SQLrun: INFO: Executing: set optimizer = 'default_pipe' #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: create table path_tbl (f1 linestring) #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: insert into path_tbl values ('linestring(1 2, 3 4)') #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: insert into path_tbl values ('linestring(1 -1, 2 -2, 3 -3, 4 -4)') #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: insert into path_tbl values ('linestring((1 2),(3 4))') #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: insert into path_tbl values ('linestring([(0 0), (3 0), (4 5), (1 6)]') #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: insert into path_tbl values ('linestring((1,2),(3,4))') #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: insert into path_tbl values ('linestring([1 2, 3 4])') #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: insert into path_tbl values ('linestring([11 12, 13 14])') #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: insert into path_tbl values ('linestring((11 12, 13 14))') #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: insert into path_tbl values ('linestring([(,2),(3,4)])') #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: insert into path_tbl values ('linestring([(1,2),(3,4))') #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: select f1 from path_tbl #2025-04-04 21:25:24: client0064: SQLrun: INFO: Executing: create view path_tbl_vw as select f1, cast(f1 as string) as txt from path_tbl #2025-04-04 21:25:25: client0064: SQLrun: INFO: Executing: select * from path_tbl_vw #2025-04-04 21:25:25: client0064: SQLrun: INFO: Executing: select length(txt), * from path_tbl_vw #2025-04-04 21:25:25: client0064: SQLrun: INFO: Executing: drop view path_tbl_vw #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: drop table "sys"."path_tbl" cascade #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: create table polygon_tbl(f1 geometry(polygon)) #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: insert into polygon_tbl(f1) values ('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: insert into polygon_tbl(f1) values ('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select cast('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))' as geometry) #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: insert into polygon_tbl(f1) values ('POLYGON((0.0 0.0, 0.0 0.0))') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: insert into polygon_tbl(f1) values ('POLYGON((0.0 1.0, 1.0 1.0, 0.0 1.0))') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: insert into polygon_tbl(f1) values ('POLYGON((0.0 1.0, 0.0 1.0, 0.0 1.0, 0.0 1.0))') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: insert into polygon_tbl(f1) values ('POLYGON((0.0 2.0, 0.0 1.0, 0.0 1.0, 0.0 1.0, 0.0 2.0))') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: insert into polygon_tbl(f1) values ('(0.0 0.0') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: insert into polygon_tbl(f1) values ('(0,1,2)') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: insert into polygon_tbl(f1) values ('(0,1,2,3') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: insert into polygon_tbl(f1) values ('asdf') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: insert into polygon_tbl(f1) values ('POLYGON(0.0)') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: insert into polygon_tbl(f1) values ('POLYGON((0.0 0.0)') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: insert into polygon_tbl(f1) values ('POLYGON((0,1,2))') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: insert into polygon_tbl(f1) values ('POLYGON((0 1, 2 3)') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: insert into polygon_tbl(f1) values ('POLYGON(asdf)') #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select '' as four, polygon_tbl.* from polygon_tbl #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: create view polygon_tbl_vw as select f1, cast(f1 as varchar(244)) as txt from polygon_tbl #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select * from polygon_tbl_vw #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select '' as three, p.* #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select '' as one, p.* #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select '' as four, p.* #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select '' as two, p.* #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select '' as one, p.* #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select '' as zero, p.* #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select '' as one, p.* #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select '' as one, p.* #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select '' as one, p.* #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select '' as one, p.* #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select '' as one, p.* #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))') << st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))') as "false" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))') &< st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))') as "true" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))') &> st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))') as "true" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))') >> st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))') as "false" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))') @ st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))') as "false" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))') ~ st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))') as "false" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_contains(st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))'), st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))')) as "false" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))') ~= st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))') as "false" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_equals(st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))'), st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))')) as "false" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))') && st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))') as "true" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_overlaps(st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))'), st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))')) as "true" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_crosses(st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))'), st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))')) as "false" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_disjoint(st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))'), st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))')) as "false" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_distance(st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))'), st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))')) as "0" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_intersects(st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))'), st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))')) as "true" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_touches(st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))'), st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))')) as "false" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: select st_within(st_wkttosql('POLYGON((2.0 0.0, 2.0 4.0, 0.0 0.0, 2.0 0.0))'), st_wkttosql('POLYGON((3.0 1.0, 3.0 3.0, 1.0 0.0, 3.0 1.0))')) as "false" #2025-04-04 21:25:25: client0065: SQLrun: INFO: Executing: drop view polygon_tbl_vw #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: drop table "sys"."polygon_tbl" cascade #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: create table date_tbl (f1 date) #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values ('1957-04-09') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values ('1957-06-13') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values ('1996-02-28') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values ('1996-02-29') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values ('1996-03-01') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values ('1996-03-02') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values ('1997-02-28') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values ('1997-02-29') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values ('1997-03-01') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values ('1997-03-02') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values ('2000-04-01') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values ('2000-04-02') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values ('2000-04-03') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values ('2038-04-08') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values ('2039-04-09') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values ('2040-04-10') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1 as "Fifteen" from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1 as "Nine" from date_tbl where f1 < '2000-01-01' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1 as "Three" from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: insert into date_tbl values (null) #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, "day"(f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, "month"(f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, "year"(f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, extract(day from f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, extract(week from f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, extract(month from f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, extract(quarter from f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, extract(year from f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, extract(century from f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, extract(epoch from f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, week(f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, weekofyear(f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, dayofmonth(f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, dayofweek(f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, dayofyear(f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, "hour"(f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, "minute"(f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, "second"(f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, extract(hour from f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, extract(minute from f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, extract(second from f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, cast(f1 as timestamp) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, "hour"(cast(f1 as timestamp)) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, "minute"(cast(f1 as timestamp)) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, "second"(cast(f1 as timestamp)) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, extract(hour from cast(f1 as timestamp)) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, extract(minute from cast(f1 as timestamp)) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, extract(second from cast(f1 as timestamp)) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, sql_sub(f1, cast('2001-12-12' as date)) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1, sql_sub(cast('2001-12-12' as date), f1) from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date 'January 8, 1999' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date '1999-01-08' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date '1999-01-18' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date '01/02/03' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date 'January 8, 99 BC' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date '99-Jan-08' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date '1999-Jan-08' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date '99 Jan 08' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date '1999 Jan 08' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date 'Jan 08 99' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date 'Jan 08 1999' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date '99-01-08' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date '1999-01-08' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date '99-08-01' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date '1999-08-01' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date '99 01 08' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date '1999 01 08' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date '99 08 01' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date '1999 08 01' #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select f1 - date '2000-01-01' as "Days From 2K" from date_tbl #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(century from date '0101-12-31 BC') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(century from date '0100-12-31 BC') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(century from date '0001-12-31 BC') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(century from date '0001-01-01') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(century from date '0001-01-01 AD') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(century from date '1900-12-31') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(century from date '1901-01-01') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(century from date '2000-12-31') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(century from date '2001-01-01') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(decade from date '1994-12-25') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(decade from date '0010-01-01') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(decade from date '0009-12-31') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(decade from date '0001-01-01 BC') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(decade from date '0002-12-31 BC') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(decade from date '0011-01-01 BC') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(decade from date '0012-12-31 BC') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select extract(century from timestamp '1970-03-20 04:30:00.00000') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date_trunc('MILLENNIUM', timestamp '1970-03-20 04:30:00.00000') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date_trunc('MILLENNIUM', date '1970-03-20') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date_trunc('CENTURY', timestamp '1970-03-20 04:30:00.00000') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date_trunc('CENTURY', date '1970-03-20') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date_trunc('CENTURY', date '2004-08-10') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date_trunc('CENTURY', date '0002-02-04') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date_trunc('CENTURY', date '0055-08-10 BC') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date_trunc('DECADE', date '1993-12-25') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date_trunc('DECADE', date '0004-12-25') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select date_trunc('DECADE', date '0002-12-31 BC') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select str_to_date('1995-04', '%Y-%m') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: select str_to_date('1995', '%Y') #2025-04-04 21:25:25: client0077: SQLrun: INFO: Executing: drop table date_tbl #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: set time zone interval '1' hour #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: create table time_tbl (f1 time(2)) #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: insert into time_tbl values ('00:00') #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: insert into time_tbl values ('01:00') #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: insert into time_tbl values ('02:03 PST') #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: insert into time_tbl values ('11:59 EDT') #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: insert into time_tbl values ('12:00') #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: insert into time_tbl values ('12:01') #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: insert into time_tbl values ('23:59') #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: insert into time_tbl values ('11:59:59.99 AM') #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: insert into time_tbl values ('11:59:59.99 PM') #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select f1 as "Time" from time_tbl #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select f1 as "Three" from time_tbl where f1 < '05:06:07' #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select f1 as "Six" from time_tbl where f1 > '05:06:07' #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select f1 as "None" from time_tbl where f1 < '00:00' #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select f1 as "Nine" from time_tbl where f1 >= '00:00' #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: insert into time_tbl values (null) #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select f1, "hour"(f1) from time_tbl #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select f1, "minute"(f1) from time_tbl #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select f1, "second"(f1) from time_tbl #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select f1, extract(hour from f1) from time_tbl #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select f1, extract(minute from f1) from time_tbl #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select f1, extract(second from f1) from time_tbl #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select f1, extract(epoch from f1) from time_tbl #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select f1, sql_sub(f1, cast('23:22:21' as time)) from time_tbl #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: select f1, sql_sub(cast('23:22:21' as time), f1) from time_tbl #2025-04-04 21:25:25: client0087: SQLrun: INFO: Executing: drop table time_tbl #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: create table timetz_tbl (f1 time(2) with time zone) #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: insert into timetz_tbl values ('00:01 PDT') #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: insert into timetz_tbl values ('01:00 PDT') #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: insert into timetz_tbl values ('02:03 PDT') #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: insert into timetz_tbl values ('07:07 PST') #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: insert into timetz_tbl values ('08:08 EDT') #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: insert into timetz_tbl values ('11:59 PDT') #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: insert into timetz_tbl values ('12:00 PDT') #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: insert into timetz_tbl values ('12:01 PDT') #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: insert into timetz_tbl values ('23:59 PDT') #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: insert into timetz_tbl values ('11:59:59.99 PM PDT') #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: insert into timetz_tbl values (null) #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: set time zone interval '+01:00' hour to minute #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1 as "Time TZ" from timetz_tbl #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1 as "Three" from timetz_tbl where f1 < '05:06:07-07' #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1 as "Seven" from timetz_tbl where f1 > '05:06:07-07' #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1 as "None" from timetz_tbl where f1 < '00:00-07' #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1 as "Ten" from timetz_tbl where f1 >= '00:00-07' #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: set time zone interval '+04:30' hour to minute #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1 as "Time TZ" from timetz_tbl order by 1 #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: set time zone interval '+14:00' hour to minute #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1 as "Time TZ" from timetz_tbl order by 1 #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: set time zone interval '-07:00' hour to minute #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1 as "Time TZ" from timetz_tbl order by 1 #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: set time zone interval '+01:00' hour to minute #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1, "hour"(f1) from timetz_tbl #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1, "minute"(f1) from timetz_tbl #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1, "second"(f1) from timetz_tbl #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1, extract(hour from f1) from timetz_tbl #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1, extract(minute from f1) from timetz_tbl #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1, extract(second from f1) from timetz_tbl #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1, extract(epoch from f1) from timetz_tbl #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1, sql_sub(f1, cast('23:22:21' as timetz)) from timetz_tbl #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: select f1, sql_sub(cast('23:22:21' as timetz), f1) from timetz_tbl #2025-04-04 21:25:25: client0092: SQLrun: INFO: Executing: drop table timetz_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: set time zone interval '1' hour #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: create table timestamp_tbl ( d1 timestamp(2) ) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: create table test_now (test_now timestamp(2)) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: create table test_current_date (test_current_date date) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into test_now values (now) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into test_current_date values (current_date) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ((select test_now from test_now)) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values (cast((select test_now from test_now) as timestamp)) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values (cast((select test_current_date from test_current_date) as timestamp)) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values (cast((select test_current_date from test_current_date) - interval '1' day as timestamp)) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values (cast((select test_current_date from test_current_date) + interval '1' day as timestamp)) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select count(*) as one from timestamp_tbl where d1 = cast((select test_current_date from test_current_date) as timestamp) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select count(*) as one from timestamp_tbl where d1 = cast((select test_current_date from test_current_date) + interval '1' day as timestamp) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select count(*) as one from timestamp_tbl where d1 = cast((select test_current_date from test_current_date) - interval '1' day as timestamp) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select count(*) as none from timestamp_tbl where d1 = cast((select test_now from test_now) as timestamp) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('tomorrow EST') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('tomorrow zulu') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: delete from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: start transaction #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ((select test_now from test_now)) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ((select test_now from test_now)) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select count(*) as two from timestamp_tbl where d1 <= cast((select test_now from test_now) as timestamp) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: commit #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: delete from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: drop table test_now #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: drop table test_current_date #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('-infinity') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('infinity') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('epoch') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('invalid') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Mon Feb 10 17:32:01 1997 PST') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Invalid Abstime') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Undefined Abstime') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Mon Feb 10 17:32:01.000001 1997 PST') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Mon Feb 10 17:32:01.999999 1997 PST') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Mon Feb 10 17:32:01.4 1997 PST') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Mon Feb 10 17:32:01.5 1997 PST') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Mon Feb 10 17:32:01.6 1997 PST') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997-01-02') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997-01-02 03:04:05') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997-02-10 17:32:01-08') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997-02-10 17:32:01-0800') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997-02-10 17:32:01 -08:00') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('19970210 173201 -0800') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997-06-10 17:32:01 -07:00') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('2001-09-22T18:19:20') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('2000-03-15 08:14:01 GMT+8') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('2000-03-15 13:14:02 GMT-1') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('2000-03-15 12:14:03 GMT -2') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('2000-03-15 03:14:04 EST+3') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('2000-03-15 02:14:05 EST +2:00') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 10 17:32:01 1997 -0800') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 10 17:32:01 1997') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 10 5:32PM 1997') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997/02/10 17:32:01-0800') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997-02-10 17:32:01 PST') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb-10-1997 17:32:01 PST') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('02-10-1997 17:32:01 PST') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('19970210 173201 PST') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('97FEB10 5:32:01PM UTC') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('97/02/10 17:32:01 UTC') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997.041 17:32:01 UTC') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997-06-10 18:32:01 PDT') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 10 17:32:01 1997') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 11 17:32:01 1997') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 12 17:32:01 1997') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 13 17:32:01 1997') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 14 17:32:01 1997') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 15 17:32:01 1997') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 1997') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 0097 BC') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 0097') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 0597') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 1097') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 1697') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 1797') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 1897') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 1997') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 2097') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 28 17:32:01 1996') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 29 17:32:01 1996') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Mar 01 17:32:01 1996') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Dec 30 17:32:01 1996') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Dec 31 17:32:01 1996') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Jan 01 17:32:01 1997') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 28 17:32:01 1997') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 29 17:32:01 1997') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Mar 01 17:32:01 1997') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Dec 30 17:32:01 1997') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Dec 31 17:32:01 1997') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Dec 31 17:32:01 1999') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Jan 01 17:32:01 2000') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Dec 31 17:32:01 2000') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Jan 01 17:32:01 2001') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 -0097') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 5097 BC') #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select '' as "64", d1 from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select '' as "48", d1 from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select '' as "15", d1 from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select '' as one, d1 from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select '' as "63", d1 from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select '' as "16", d1 from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select '' as "49", d1 from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select '' as "54", d1 - cast('1997-01-02' as timestamp) as diff #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select '' as date_trunc_week, date_trunc( 'week', cast('2004-02-29 15:44:17.71393' as timestamp) ) as week_trunc #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select '' as "54", d1 - cast('1997-01-02' as timestamp) as diff #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: insert into timestamp_tbl values (null) #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, "day"(d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, "month"(d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, "year"(d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, extract(day from d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, extract(week from d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, extract(month from d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, extract(quarter from d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, extract(year from d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, extract(century from d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, extract(epoch from d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, week(d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, weekofyear(d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, dayofmonth(d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, dayofweek(d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, dayofyear(d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, "hour"(d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, "minute"(d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, "second"(d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, extract(hour from d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, extract(minute from d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, extract(second from d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, sql_sub(d1, cast('2001-12-12 23:22:21' as timestamp)) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: select d1, sql_sub(cast('2001-12-12 23:22:21' as timestamp), d1) from timestamp_tbl #2025-04-04 21:25:25: client0099: SQLrun: INFO: Executing: drop table timestamp_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: set time zone interval '1' hour #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: create table timestamptz_tbl ( d1 timestamp(2) with time zone) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: create table test_now (test_now timestamp(2) with time zone) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: create table test_current_date (test_current_date date) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into test_now values (now) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into test_current_date values (current_date) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ((select test_now from test_now)) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ((select test_now from test_now)) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values (cast((select test_current_date from test_current_date) as timestamptz)) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values (cast((select test_current_date from test_current_date) - interval '1' day as timestamptz)) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values (cast((select test_current_date from test_current_date) + interval '1' day as timestamp)) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select count(*) as one from timestamptz_tbl where d1 = cast((select test_current_date from test_current_date) as timestamptz) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select count(*) as one from timestamptz_tbl where d1 = cast((select test_current_date from test_current_date) + interval '1' day as timestamp) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select count(*) as one from timestamptz_tbl where d1 = cast((select test_current_date from test_current_date) - interval '1' day as timestamp) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select count(*) as none from timestamptz_tbl where d1 = cast((select test_now from test_now) as timestamptz) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('tomorrow EST') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('tomorrow zulu') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: delete from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: start transaction #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ((select test_now from test_now)) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ((select test_now from test_now)) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select count(*) as two from timestamptz_tbl where d1 <= cast((select test_now from test_now) as timestamptz) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: commit #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: delete from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: drop table test_now #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: drop table test_current_date #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('-infinity') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('infinity') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('epoch') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('invalid') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Mon Feb 10 17:32:01 1997 PST') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Invalid Abstime') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Undefined Abstime') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Mon Feb 10 17:32:01.000001 1997 PST') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Mon Feb 10 17:32:01.999999 1997 PST') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Mon Feb 10 17:32:01.4 1997 PST') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Mon Feb 10 17:32:01.5 1997 PST') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Mon Feb 10 17:32:01.6 1997 PST') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997-01-02') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997-01-02 03:04:05') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997-02-10 17:32:01-08') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997-02-10 17:32:01-0800') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997-02-10 17:32:01 -08:00') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('19970210 173201 -0800') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997-06-10 17:32:01 -07:00') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('2001-09-22T18:19:20') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('2000-03-15 08:14:01 GMT+8') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('2000-03-15 13:14:02 GMT-1') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('2000-03-15 12:14:03 GMT -2') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('2000-03-15 03:14:04 EST+3') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('2000-03-15 02:14:05 EST +2:00') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 10 17:32:01 1997 -0800') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 10 17:32:01 1997') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 10 5:32PM 1997') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997/02/10 17:32:01-0800') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997-02-10 17:32:01 PST') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb-10-1997 17:32:01 PST') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('02-10-1997 17:32:01 PST') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('19970210 173201 PST') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('97FEB10 5:32:01PM UTC') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('97/02/10 17:32:01 UTC') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997.041 17:32:01 UTC') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997-06-10 18:32:01 PDT') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 10 17:32:01 1997') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 11 17:32:01 1997') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 12 17:32:01 1997') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 13 17:32:01 1997') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 14 17:32:01 1997') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 15 17:32:01 1997') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 1997') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 0097 BC') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 0097') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 0597') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 1097') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 1697') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 1797') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 1897') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 1997') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 2097') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 28 17:32:01 1996') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 29 17:32:01 1996') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Mar 01 17:32:01 1996') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Dec 30 17:32:01 1996') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Dec 31 17:32:01 1996') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Jan 01 17:32:01 1997') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 28 17:32:01 1997') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 29 17:32:01 1997') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Mar 01 17:32:01 1997') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Dec 30 17:32:01 1997') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Dec 31 17:32:01 1997') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Dec 31 17:32:01 1999') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Jan 01 17:32:01 2000') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Dec 31 17:32:01 2000') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Jan 01 17:32:01 2001') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 -0097') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 5097 BC') #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: insert into timestamptz_tbl values (null) #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: set time zone interval '+01:00' hour to minute #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select '' as "17", d1 from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: set time zone interval '+04:30' hour to minute #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1 as "Timestamp TZ" from timestamptz_tbl order by 1 #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: set time zone interval '+14:00' hour to minute #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1 as "Timestamp TZ" from timestamptz_tbl order by 1 #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: set time zone interval '-07:00' hour to minute #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1 as "Timestamp TZ" from timestamptz_tbl order by 1 #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: set time zone interval '+01:00' hour to minute #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select '' as "48", d1 from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select '' as "15", d1 from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select '' as one, d1 from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select '' as "63", d1 from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select '' as "16", d1 from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select '' as "49", d1 from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select '' as "54", d1 - cast('1997-01-02' as timestamptz) as diff #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select '' as date_trunc_week, date_trunc( 'week', cast('2004-02-29 15:44:17.71393' as timestamptz) ) as week_trunc #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select '' as "54", d1 - cast('1997-01-02' as timestamptz) as diff #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, "day"(d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, "month"(d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, "year"(d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, extract(day from d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, extract(week from d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, extract(month from d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, extract(quarter from d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, extract(year from d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, extract(century from d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, extract(epoch from d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, week(d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, weekofyear(d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, dayofmonth(d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, dayofweek(d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, dayofyear(d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, "hour"(d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, "minute"(d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, "second"(d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, extract(hour from d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, extract(minute from d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, extract(second from d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, sql_sub(d1, cast('2001-12-12 23:22:21' as timestamptz)) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: select d1, sql_sub(cast('2001-12-12 23:22:21' as timestamptz), d1) from timestamptz_tbl #2025-04-04 21:25:25: client0100: SQLrun: INFO: Executing: drop table timestamptz_tbl #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select cast('01:00' as interval second) as "One hour" #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select cast('+02:00' as interval second) as "Two hours" #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select cast('-08:00' as interval second) as "Eight hours" #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select cast('-05' as interval second) as "Five hours" #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select cast('-1 +02:03' as interval second) as "22 hours ago..." #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select cast('-1 days +02:03' as interval second) as "22 hours ago..." #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select cast('10 years -11 month -12 days +13:14' as interval second) as "9 years..." #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: create table interval_tbl (f1 interval second) #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('1.2345') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('123456789012345678') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('1234567890123456789') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('12345678901234567890') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('1 day 2 hours 3 minutes 4 seconds') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('6 years') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('5 months') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('5 months 12 hours') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('@ 1 minute') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('@ 5 hour') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('@ 10 day') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('@ 34 year') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('@ 3 months') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('@ 14 seconds ago') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('badly formatted interval') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('@ 30 eons ago') #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select '' as ten, interval_tbl.* from interval_tbl #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select '' as nine, interval_tbl.* from interval_tbl #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select '' as three, interval_tbl.* from interval_tbl #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select '' as three, interval_tbl.* from interval_tbl #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select '' as one, interval_tbl.* from interval_tbl #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select '' as five, interval_tbl.* from interval_tbl #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select '' as nine, interval_tbl.* from interval_tbl #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select '' as fortyfive, r1.*, r2.* #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select '' as ten, interval_tbl.* from interval_tbl order by f1 desc #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select avg(f1) from interval_tbl #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select min(f1) from interval_tbl #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select max(f1) from interval_tbl #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select count(f1) from interval_tbl #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: select count(distinct f1) from interval_tbl #2025-04-04 21:25:25: client0102: SQLrun: INFO: Executing: drop table interval_tbl #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: create table reltime_tbl (f1 interval second) #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values (interval '1' second) #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values (interval '10' second) #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values (interval '100' second) #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values (interval '1000' second) #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values (interval '10000' second) #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values (interval '100000' second) #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values ('@ 1 minute') #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values ('@ 5 hours') #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values ('@ 10 days') #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values ('@ 34 years') #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values ('@ 3 months') #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values ('@ 14 seconds ago') #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values ('badly formatted reltime') #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values ('@ 30 eons ago') #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: select '' as six, reltime_tbl.* from reltime_tbl #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: select '' as five, reltime_tbl.* from reltime_tbl #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: select '' as three, reltime_tbl.* from reltime_tbl #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: select '' as three, reltime_tbl.* from reltime_tbl #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: select '' as one, reltime_tbl.* from reltime_tbl #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: select '' as two, reltime_tbl.* from reltime_tbl #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: select '' as five, reltime_tbl.* from reltime_tbl #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: select '' as fifteen, r1.*, r2.* #2025-04-04 21:25:25: client0103: SQLrun: INFO: Executing: drop table reltime_tbl #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: create table inet_tbl (c inet, i inet) #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('192.168.1', '192.168.1.226/24') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('192.168.1.0/26', '192.168.1.226') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('192.168.1', '192.168.1.0/24') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('192.168.1', '192.168.1.0/25') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('192.168.1', '192.168.1.255/24') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('192.168.1', '192.168.1.255/25') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10', '10.1.2.3/8') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10.0.0.0', '10.1.2.3/8') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10.1.2.3', '10.1.2.3/32') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10.1.2', '10.1.2.3/24') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10.1', '10.1.2.3/16') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10', '10.1.2.3/8') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10', '11.1.2.3/8') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10', '9.1.2.3/8') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10:23::f1', '10:23::f1/64') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10:23::8000/113', '10:23::ffff') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('::ffff:1.2.3.4', '::4.3.2.1/24') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('192.168.1.2/30', '192.168.1.226') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('1234::1234::1234', '::1.2.3.4') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values (cast('192.168.1.2/30' as inet), '192.168.1.226') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values (cast('ffff:ffff:ffff:ffff::/24' as inet), '::192.168.1.226') #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: select '' as ten, c as cidr, i as inet from inet_tbl #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: select '' as ten, c as cidr, broadcast(c), #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: select '' as ten, c as cidr, network(c) as "network(cidr)", #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: select '' as ten, c as cidr, masklen(c) as "masklen(cidr)", #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: select '' as four, c as cidr, masklen(c) as "masklen(cidr)", #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: select '' as six, c as cidr, i as inet from inet_tbl #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: select '' as ten, i, c, #2025-04-04 21:25:25: client0104: SQLrun: INFO: Executing: create index inet_idx1 on inet_tbl(i) #2025-04-04 21:25:26: client0104: SQLrun: INFO: Executing: select * from inet_tbl where i<<cast('192.168.1.0/24' as inet) #2025-04-04 21:25:26: client0104: SQLrun: INFO: Executing: select * from inet_tbl where i<<=cast('192.168.1.0/24' as inet) #2025-04-04 21:25:26: client0104: SQLrun: INFO: Executing: drop index inet_idx1 #2025-04-04 21:25:26: client0104: SQLrun: INFO: Executing: drop table inet_tbl #2025-04-04 21:25:26: client0105: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:26: client0105: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:26: client0105: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:26: client0105: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:26: client0105: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:26: client0105: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:26: client0105: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:26: client0105: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:26: client0105: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:26: client0105: SQLrun: INFO: Executing: select 'trailing' as first #2025-04-04 21:25:26: client0105: SQLrun: INFO: Executing: select 'embedded' as "second" #2025-04-04 21:25:26: client0105: SQLrun: INFO: Executing: select 'both' as third #2025-04-04 21:25:26: client0105: SQLrun: INFO: Executing: select 'before multi-line' as fourth #2025-04-04 21:25:26: client0105: SQLrun: INFO: Executing: select 'after multi-line' as fifth #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: set time zone interval '+1:0' hour to minute #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: select current_timezone #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: select timestamp with time zone '2001-12-27 04:05:06.789-0800' #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: select timestamp with time zone '2001/12/27 04:05:06.789-0800' #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: create table temp_timestamp (f1 timestamp with time zone) #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: select '' as "16", f1 as "timestamp" #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: select '' as "16", d.f1 as "timestamp", #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: select '' as "226", d1.f1 as timestamp1, d2.f1 as timestamp2, d1.f1 - d2.f1 as difference #2025-04-04 21:25:26: client0106: SQLrun: INFO: Executing: drop table temp_timestamp #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: create table inserttest (col1 integer, col2 integer not null, col3 text default 'testing') #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: insert into inserttest (col2, col3) values (3, 'DEFAULT') #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: insert into inserttest (col1, col2, col3) values (null, 5, 'DEFAULT') #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: insert into inserttest values (null, 5, 'test') #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: insert into inserttest (col1, col2) values (null, 7) #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: select * from inserttest #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: select * from inserttest #2025-04-04 21:25:26: client0107: SQLrun: INFO: Executing: drop table inserttest #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: call sys.setsessiontimeout(360) #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: start transaction #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: create table onek (unique1 int not null,unique2 int not null,two int,four int,ten int,twenty int,hundred int not null,thousand int,twothousand int,fivethous int,tenthous int,odd int,even int,stringu1 char(16),stringu2 char(16),string4 char(16),unique (unique1),unique (unique2)) #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: create table tenk1 (unique1 int not null,unique2 int not null,two int,four int,ten int,twenty int,hundred int not null,thousand int,twothousand int,fivethous int,tenthous int,odd int,even int,stringu1 char(16),stringu2 char(16),string4 char(16),unique (unique1),unique (unique2)) #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: create table tenk2 (unique1 int not null,unique2 int not null,two int,four int,ten int,twenty int,hundred int not null,thousand int,twothousand int,fivethous int,tenthous int,odd int,even int,stringu1 char(16),stringu2 char(16),string4 char(16),unique (unique1),unique (unique2)) #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: create table bprime (unique1 int not null,unique2 int not null,two int,four int,ten int,twenty int,hundred int not null,thousand int,twothousand int,fivethous int,tenthous int,odd int,even int,stringu1 char(16),stringu2 char(16),string4 char(16),unique (unique1),unique (unique2)) #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: copy 1000 records into "sys"."onek" from stdin using delimiters E'\t',E'\n','"'; #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: copy 10000 records into "sys"."tenk1" from stdin using delimiters E'\t',E'\n','"'; #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: copy 10000 records into "sys"."tenk2" from stdin using delimiters E'\t',E'\n','"'; #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: copy 1000 records into "sys"."bprime" from stdin using delimiters E'\t',E'\n','"'; #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: delete from bprime where unique2 >= 1000 #2025-04-04 21:25:26: client0108: SQLrun: INFO: Executing: commit #2025-04-04 21:25:26: client0117: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:26: client0117: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:26: client0117: SQLrun: INFO: Executing: create table hobbies_r ( #2025-04-04 21:25:26: client0117: SQLrun: INFO: Executing: create table equipment_r ( #2025-04-04 21:25:26: client0117: SQLrun: INFO: Executing: create table person ( #2025-04-04 21:25:26: client0117: SQLrun: INFO: Executing: create table emp ( #2025-04-04 21:25:27: client0117: SQLrun: INFO: Executing: create table student ( #2025-04-04 21:25:27: client0117: SQLrun: INFO: Executing: create table stud_emp ( #2025-04-04 21:25:27: client0117: SQLrun: INFO: Executing: create table city ( #2025-04-04 21:25:27: client0117: SQLrun: INFO: Executing: create table dept ( #2025-04-04 21:25:27: client0117: SQLrun: INFO: Executing: create table slow_emp4000 ( #2025-04-04 21:25:27: client0117: SQLrun: INFO: Executing: create table fast_emp4000 ( #2025-04-04 21:25:27: client0117: SQLrun: INFO: Executing: create table road ( #2025-04-04 21:25:27: client0117: SQLrun: INFO: Executing: create table ihighway ( #2025-04-04 21:25:27: client0117: SQLrun: INFO: Executing: create table shighway ( #2025-04-04 21:25:27: client0117: SQLrun: INFO: Executing: create table real_city ( #2025-04-04 21:25:27: client0117: SQLrun: INFO: Executing: create table a_star ( #2025-04-04 21:25:27: client0117: SQLrun: INFO: Executing: create table b_star ( #2025-04-04 21:25:27: client0117: SQLrun: INFO: Executing: create table c_star ( #2025-04-04 21:25:27: client0117: SQLrun: INFO: Executing: create table d_star ( #2025-04-04 21:25:27: client0117: SQLrun: INFO: Executing: create table e_star ( #2025-04-04 21:25:28: client0117: SQLrun: INFO: Executing: create table f_star ( #2025-04-04 21:25:28: client0117: SQLrun: INFO: Executing: create table aggtest ( #2025-04-04 21:25:28: client0117: SQLrun: INFO: Executing: create table hash_i4_heap ( #2025-04-04 21:25:28: client0117: SQLrun: INFO: Executing: create table hash_name_heap ( #2025-04-04 21:25:28: client0117: SQLrun: INFO: Executing: create table hash_txt_heap ( #2025-04-04 21:25:28: client0117: SQLrun: INFO: Executing: create table hash_f8_heap ( #2025-04-04 21:25:28: client0117: SQLrun: INFO: Executing: create table bt_i4_heap ( #2025-04-04 21:25:28: client0117: SQLrun: INFO: Executing: create table bt_name_heap ( #2025-04-04 21:25:28: client0117: SQLrun: INFO: Executing: create table bt_txt_heap ( #2025-04-04 21:25:28: client0117: SQLrun: INFO: Executing: create table bt_f8_heap ( #2025-04-04 21:25:28: client0118: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:28: client0118: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:28: client0118: SQLrun: INFO: Executing: insert into tenk2 select * from tenk1 #2025-04-04 21:25:28: client0118: SQLrun: INFO: Executing: create table onek2 as #2025-04-04 21:25:28: client0118: SQLrun: INFO: Executing: insert into fast_emp4000 (select * from slow_emp4000) #2025-04-04 21:25:28: client0118: SQLrun: INFO: Executing: insert into hobbies_r (name, person) #2025-04-04 21:25:28: client0118: SQLrun: INFO: Executing: insert into hobbies_r (name, person) #2025-04-04 21:25:28: client0118: SQLrun: INFO: Executing: insert into hobbies_r (name) values ('skywalking') #2025-04-04 21:25:28: client0118: SQLrun: INFO: Executing: insert into equipment_r (name, hobby) values ('advil', 'posthacking') #2025-04-04 21:25:28: client0118: SQLrun: INFO: Executing: insert into equipment_r (name, hobby) values ('peet''s coffee', 'posthacking') #2025-04-04 21:25:28: client0118: SQLrun: INFO: Executing: insert into equipment_r (name, hobby) values ('hightops', 'basketball') #2025-04-04 21:25:28: client0118: SQLrun: INFO: Executing: insert into equipment_r (name, hobby) values ('guts', 'skywalking') #2025-04-04 21:25:28: client0118: SQLrun: INFO: Executing: create table ramp as #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into ihighway #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into shighway (name, thepath) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: update shighway #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into a_star (class, a) values ('a', 1) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into a_star (class, a) values ('a', 2) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into a_star (class) values ('a') #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into b_star (class, a, b) values ('b', 3, cast('mumble' as text)) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into b_star (class, a) values ('b', 4) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into b_star (class, b) values ('b', cast('bumble' as text)) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into b_star (class) values ('b') #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into c_star (class, a, c) values ('c', 5, cast('hi mom' as string)) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into c_star (class, a) values ('c', 6) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into c_star (class, c) values ('c', cast('hi paul' as string)) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into c_star (class) values ('c') #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into d_star (class, a, b, c, d) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into d_star (class, a, b, c) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into d_star (class, a, b, d) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into d_star (class, a, c, d) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into d_star (class, b, c, d) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into d_star (class, a, b) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into d_star (class, a, c) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into d_star (class, a, d) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into d_star (class, b, c) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into d_star (class, b, d) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into d_star (class, c, d) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into d_star (class, a) values ('d', 14) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into d_star (class, b) values ('d', cast('jumble' as text)) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into d_star (class, c) values ('d', cast('hi jolly' as string)) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into d_star (class, d) values ('d', cast('1000000.0000001' as double)) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into d_star (class) values ('d') #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into e_star (class, a, c, e) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into e_star (class, a, c) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into e_star (class, a, e) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into e_star (class, c, e) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into e_star (class, a) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into e_star (class, c) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into e_star (class, e) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into f_star (class, a, c, e, f) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into f_star (class, a, c, e) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into f_star (class, a, c, f) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into f_star (class, a, e, f) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into f_star (class, c, e, f) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into f_star (class, a, c) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into f_star (class, a, e) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into f_star (class, a, f) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into f_star (class, c, e) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into f_star (class, c, f) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into f_star (class, e, f) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into f_star (class, a) values ('f', 27) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into f_star (class, c) values ('f', cast('hi carl' as string)) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into f_star (class, e) values ('f', cast('-12' as smallint)) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into f_star (class, f) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into f_star (class) values ('f') #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: create table iportaltest ( #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into iportaltest (i, d, p) #2025-04-04 21:25:29: client0118: SQLrun: INFO: Executing: insert into iportaltest (i, d, p) #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: create view street as #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: create view iexit as #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: create view toyemp as #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: create table viewtest_tbl (a int, b int) #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: insert into viewtest_tbl values (5, 10), (10, 15), (15, 20), (20, 25) #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: create view viewtest as #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: create or replace view viewtest as #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: drop view viewtest #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: create view viewtest as #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: select * from viewtest #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: create or replace view viewtest as #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: drop view viewtest #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: create view viewtest as #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: select * from viewtest #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: create or replace view viewtest as #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: drop view viewtest #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: create view viewtest as #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: create or replace view viewtest as #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: drop view viewtest #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: create view viewtest as #2025-04-04 21:25:29: client0119: SQLrun: INFO: Executing: create or replace view viewtest as #2025-04-04 21:25:30: client0119: SQLrun: INFO: Executing: drop view viewtest #2025-04-04 21:25:30: client0119: SQLrun: INFO: Executing: create view viewtest as #2025-04-04 21:25:30: client0119: SQLrun: INFO: Executing: drop view viewtest #2025-04-04 21:25:30: client0119: SQLrun: INFO: Executing: drop table viewtest_tbl #2025-04-04 21:25:30: client0120: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:30: client0120: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:30: client0120: SQLrun: INFO: Executing: select * from street #2025-04-04 21:25:30: client0120: SQLrun: INFO: Executing: select name, thepath from iexit order by 1, 2 #2025-04-04 21:25:30: client0120: SQLrun: INFO: Executing: select * from toyemp where name = 'sharon' #2025-04-04 21:25:30: client0121: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:30: client0121: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:30: client0122: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:30: client0122: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: create table case_tbl ( #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: create table case2_tbl ( #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: insert into case_tbl values (1, 10.1) #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: insert into case_tbl values (2, 20.2) #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: insert into case_tbl values (3, -30.3) #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: insert into case_tbl values (4, null) #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: insert into case2_tbl values (1, -1) #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: insert into case2_tbl values (2, -2) #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: insert into case2_tbl values (3, -3) #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: insert into case2_tbl values (2, -4) #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: insert into case2_tbl values (1, null) #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: insert into case2_tbl values (null, -6) #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select '3' as "One", #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select '<NULL>' as "One", #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select '3' as "One", #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select '4' as "One", #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select '6' as "One", #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select case 'a' when 'a' then 1 else 2 end #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select '' as "Five", #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select '' as "Five", #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select '' as "Five", i as "Value", #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select '' as "Five", #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select * from case_tbl where coalesce(f,i) = 4 #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select * from case_tbl where nullif(f,i) = 2 #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select distinct coalesce(a.f, b.i, b.j) #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select * #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select distinct '' as siksteen, nullif(a.i,b.i) as "NULLIF(a.i,b.i)", #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select '' as "Two", * #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: update case_tbl #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select * from case_tbl #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: update case_tbl #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select * from case_tbl #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: update case_tbl #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: select * from case_tbl #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: drop table case_tbl #2025-04-04 21:25:30: client0123: SQLrun: INFO: Executing: drop table case2_tbl #2025-04-04 21:25:30: client0124: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:30: client0124: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:30: client0124: SQLrun: INFO: Executing: select count(*) from onek #2025-04-04 21:25:30: client0124: SQLrun: INFO: Executing: create temporary table random_tbl( random double) #2025-04-04 21:25:30: client0124: SQLrun: INFO: Executing: insert into random_tbl select count(*) as random #2025-04-04 21:25:30: client0124: SQLrun: INFO: Executing: drop table random_tbl #2025-04-04 21:25:30: client0124: SQLrun: INFO: Executing: create temporary table random_tbl( random bigint) #2025-04-04 21:25:30: client0124: SQLrun: INFO: Executing: insert into random_tbl select count(*) as random #2025-04-04 21:25:30: client0124: SQLrun: INFO: Executing: insert into random_tbl (random) #2025-04-04 21:25:30: client0124: SQLrun: INFO: Executing: insert into random_tbl (random) #2025-04-04 21:25:30: client0124: SQLrun: INFO: Executing: insert into random_tbl (random) #2025-04-04 21:25:30: client0124: SQLrun: INFO: Executing: select random, count(random) from random_tbl #2025-04-04 21:25:30: client0124: SQLrun: INFO: Executing: select avg(random) from random_tbl #2025-04-04 21:25:30: client0125: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:30: client0125: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:30: client0125: SQLrun: INFO: Executing: select '' as two, unique1, unique2, stringu1 #2025-04-04 21:25:30: client0125: SQLrun: INFO: Executing: select '' as five, unique1, unique2, stringu1 #2025-04-04 21:25:30: client0125: SQLrun: INFO: Executing: select '' as two, unique1, unique2, stringu1 #2025-04-04 21:25:30: client0125: SQLrun: INFO: Executing: select '' as three, unique1, unique2, stringu1 #2025-04-04 21:25:30: client0125: SQLrun: INFO: Executing: select '' as zero, unique1, unique2, stringu1 #2025-04-04 21:25:30: client0125: SQLrun: INFO: Executing: select '' as eleven, unique1, unique2, stringu1 #2025-04-04 21:25:30: client0125: SQLrun: INFO: Executing: select '' as ten, unique1, unique2, stringu1 #2025-04-04 21:25:30: client0125: SQLrun: INFO: Executing: select '' as five, unique1, unique2, stringu1 #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: create table tmp (initial integer) #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column a integer default 3 #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column b string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column c text #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column d double #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column e float #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column f smallint #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column g string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column h string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column i char #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column j string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column k integer #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column l string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column m string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column n string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column p string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column q string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column r string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column s string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column t string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column u string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column v timestamp #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column w interval second #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column x string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column y string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column z string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: insert into tmp (a, b, c, d, e, f, g, h, i, j, k, l, m, n, p, q, r, s, t, u, #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: select * from tmp #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: drop table tmp #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: create table tmp ( #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column a integer #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column b string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column c text #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column d double #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column e float #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column f smallint #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column g string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column h string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column i char #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column j string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column k integer #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column l string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column m string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column n string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column p string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column q string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column r string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column s string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column t string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column u string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column v timestamp #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column w interval second #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column x string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column y string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp add column z string #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: insert into tmp (a, b, c, d, e, f, g, h, i, j, k, l, m, n, p, q, r, s, t, u, #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: select * from tmp #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: drop table tmp #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: create table tmp (regtable int) #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: create temp table tmp (tmptable int) #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp rename to tmp_new #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: select * from tmp #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: select * from tmp_new #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table tmp rename to tmp_new2 #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: select * from tmp_new #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: select * from tmp_new2 #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: drop table tmp_new #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: drop table tmp_new2 #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: create view tmp_view (unique1) as select unique1 from tenk1 #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: analyze tenk1 #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: select unique1 from tenk1 where unique1 < 5 #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table stud_emp rename to pg_toast_stud_emp #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: alter table pg_toast_stud_emp rename to stud_emp #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: create table tmp2 (a int primary key) #2025-04-04 21:25:30: client0126: SQLrun: INFO: Executing: create table tmp3 (a int, b int) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: create table tmp4 (a int, b int, unique(a,b)) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: create table tmp5 (a int, b int) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: insert into tmp2 values (1) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: insert into tmp2 values (2) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: insert into tmp2 values (3) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: insert into tmp2 values (4) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: insert into tmp3 values (1,10) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: insert into tmp3 values (1,20) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: insert into tmp3 values (5,50) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: alter table tmp3 add constraint tmpconstr foreign key (a) references tmp2 match full #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: delete from tmp3 where a=5 #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: alter table tmp3 add constraint tmpconstr foreign key (a) references tmp2 match full #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: drop table tmp5 #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: drop table tmp4 #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: drop table tmp3 #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: drop table tmp2 #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: create table pktable (ptest1 int primary key) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: create temp table fktable (ftest1 inet) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: drop table fktable #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: create table fktable (ftest1 varchar(10)) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: drop table pktable cascade #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: drop table fktable #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: create table pktable (ptest1 int, ptest2 inet, #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: create table fktable (ftest1 inet, ftest2 timestamp) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: drop table fktable #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: create table fktable (ftest1 inet, ftest2 timestamp) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: drop table fktable #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: create table fktable (ftest1 int, ftest2 inet) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: drop table fktable #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: drop table pktable cascade #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 check (test>3) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (4) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 check (test>3) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (4) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: create table atacc1 ( test int, test2 int, test3 int) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 check (test+test2<test3*4) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: insert into atacc1 (test,test2,test3) values (4,4,2) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: insert into atacc1 (test,test2,test3) values (4,4,5) #2025-04-04 21:25:31: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: create table atacc1 (test int check (test>3), test2 int) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: alter table atacc1 add check (test2>test) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc1 (test2, test) values (3, 4) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: create table atacc1 (test int) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: create table atacc2 (test2 int) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: create table atacc3 (test int, test2 int, test3 int) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: alter table atacc2 add constraint foo check (test2>0) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc2 (test2) values (-3) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc2 (test2) values (3) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc3 (test2) values (-3) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc3 (test2) values (3) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: drop table atacc3 #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: drop table atacc2 #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: create table atacc1 (test int) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: create table atacc2 (test2 int) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: create table atacc3 (test int, test2 int, test3 int) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: alter table atacc2 add constraint foo check (test2>0) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc2 (test2) values (-3) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc2 (test2) values (3) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc3 (test2) values (-3) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc3 (test2) values (3) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: drop table atacc3 #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: drop table atacc2 #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 unique (test) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (4) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 unique (test) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (3) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: create table atacc1 ( test int, test2 int) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 unique (test, test2) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (4,4) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (4,4) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (4,5) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (5,4) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (5,5) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: alter table atacc1 drop constraint atacc_test1 #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: create table atacc1 (test int, test2 int, unique(test)) #2025-04-04 21:25:32: client0126: SQLrun: INFO: Executing: alter table atacc1 add unique (test2) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test2, test) values (3, 3) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test2, test) values (2, 3) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 primary key (test) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (4) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values(null) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: alter table atacc1 drop constraint atacc_test1 restrict #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 primary key (test) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 primary key (test) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (3) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: delete from atacc1 where test = 2 #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 primary key (test) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (null) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 primary key (test) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test) values (3) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: create table atacc1 ( test int, test2 int) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 primary key (test, test2) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test2 primary key (test) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (4,4) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (4,4) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (null,3) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (3, null) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (null,null) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (4,5) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (5,4) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (5,5) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: create table atacc1 (test int, test2 int, primary key(test)) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test2, test) values (3, 3) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test2, test) values (2, 3) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 (test2, test) values (1, null) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: create table atacc1 (test int not null) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: alter table atacc1 add constraint "atacc1_pkey" primary key (test) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: alter table atacc1 drop constraint "atacc1_pkey" #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: alter table atacc1 alter test set null #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: insert into atacc1 values (null) #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: alter table atacc1 alter test set not null #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: select * from atacc1 #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: delete from atacc1 #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: alter table atacc1 alter test set not null #2025-04-04 21:25:33: client0126: SQLrun: INFO: Executing: create view myview as select * from atacc1 #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: drop view myview #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: create table parent (a int) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: create table child (a int, b varchar(255)) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table parent alter a set not null #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into parent values (null) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into child (a, b) values (null, 'foo') #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into parent values (null) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into child (a, b) values (null, 'foo') #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table parent alter a set not null #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table child alter a set not null #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: delete from parent #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table parent alter a set not null #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into parent values (null) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table child alter a set not null #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into child (a, b) values (null, 'foo') #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: delete from child #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table child alter a set not null #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into child (a, b) values (null, 'foo') #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: drop table child #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: drop table parent #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: create table def_test ( #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into def_test default values #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: select * from def_test #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table def_test alter column c1 drop default #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into def_test default values #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: select * from def_test #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table def_test alter column c2 drop default #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into def_test default values #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: select * from def_test #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table def_test alter column c1 set default 10 #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table def_test alter column c2 set default 'new_default' #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into def_test default values #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: select * from def_test #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table def_test alter column c1 set default 'wrong_datatype' #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table def_test alter column c2 set default 20 #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: create view def_view_test as select * from def_test #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: select * from def_view_test #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: drop view def_view_test #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: drop table def_test #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: create table atacc1 (a integer not null, b integer, c integer not null, d integer) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into atacc1 values (1, 2, 3, 4) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table atacc1 drop a #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: select * from atacc1 #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: select atacc1.* from atacc1 #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: select b,c,d from atacc1 #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into atacc1 values (11, 12, 13) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into atacc1 (b,c,d) values (11,12,13) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: delete from atacc1 #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: create view myview as select * from atacc1 #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: select * from myview #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: drop view myview #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: analyze sys.atacc1 #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: create table atacc2 (id integer unique) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: drop table atacc2 #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into atacc1 values (21, 22, 23) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: create table test1 as select * from atacc1 with data #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: select * from test1 #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: drop table test1 #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table atacc1 drop c #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table atacc1 drop d #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: select * from atacc1 #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: create table parent (a int, b int, c int) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into parent values (1, 2, 3) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table parent drop a #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: create table child (b int, c int, d varchar(255)) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into child values (12, 13, 'testing') #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: select * from parent #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: select * from child #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table parent drop c #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: select * from parent #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: select * from child #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: drop table child #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: drop table parent #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: create table test (a integer, b integer, c integer) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: insert into test values (1,2,3) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: alter table test drop a #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: create table dropcolumn (a int, b int, e int) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: create table dropcolumnchild (a int, b int, e int, c int) #2025-04-04 21:25:34: client0126: SQLrun: INFO: Executing: create table dropcolumnanother (a int, b int, e int, c int, d int) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table dropcolumnchild drop column a #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table dropcolumnchild drop column b #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table dropcolumn drop column e #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table dropcolumnchild drop column c #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table dropcolumn drop column a #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table dropcolumnanother #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table dropcolumnchild #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table dropcolumn #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table renamecolumn (a int) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table renamecolumnchild (a int, b int) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table renamecolumnanother (a int, b int, c int) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table renamecolumnchild rename column a to d #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table renamecolumn rename column a to d #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table renamecolumnchild rename column b to a #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table renamecolumn add column w int #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table renamecolumn add column x int #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table renamecolumn cascade #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table renamecolumnchild cascade #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table renamecolumnanother cascade #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table p1 (f1 int, f2 int) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table c1 (f2 int, f1 int not null) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table c1 drop column f1 #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table p1 drop column f1 #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table c1 #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table p1 cascade #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table p1 (f1 int, f2 int) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table c1 (f1 int, f2 int) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table c1 drop column f1 #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table p1 drop column f1 #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table c1 #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table p1 cascade #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table p1 (f1 int, f2 int) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table c1 (f1 int, f2 int) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table c1 drop column f1 #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table p1 drop column f1 #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table c1 #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table p1 cascade #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table p1 (f1 int, f2 int) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table c1 (f1 int not null, f2 int) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table c1 drop column f1 #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table p1 drop column f1 #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table c1 #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table p1 cascade #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table p1(id int, name text) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table p2(id2 int, name text, height int) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table c1(age int, id int, name text) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table gc1(age int, id int, name text) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table p1 drop column name #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table p2 drop column name #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table gc1 drop column name #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table c1 drop column name #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: alter table p2 drop column height #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table c1 #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table p2 cascade #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: drop table p1 cascade #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table p1 (f1 int) #2025-04-04 21:25:35: client0126: SQLrun: INFO: Executing: create table c1 (f1 int, f2 text, f3 int) #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: alter table p1 add column a1 int check (a1 > 0) #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: alter table p1 add column f2 text #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: insert into p1 values (1,2,'abc') #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: select * from p1 #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: update p1 set a1 = a1 + 1, f2 = upper(f2) #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: select * from p1 #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: drop table c1 cascade #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: drop table p1 cascade #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: create temp table foo (f1 text, f2 text, f3 text) on commit preserve rows #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: insert into foo values('aa','bb','cc') #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: select * from foo #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: select * from foo #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: insert into foo (f1, f3) values('qq','rr') #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: select * from foo #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: update foo set f3 = 'zz' #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: select * from foo #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: select f3,max(f1) from foo group by f3 #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: drop table foo #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: create table anothertab (atcol1 bigint generated always as identity check (atcol1 <= 3), atcol2 boolean) #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: insert into anothertab (atcol1, atcol2) values (default, true) #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: insert into anothertab (atcol1, atcol2) values (default, false) #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: insert into anothertab (atcol2) values (true) #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: insert into anothertab (atcol2) values (false) #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: select * from anothertab #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: select * from anothertab #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: insert into anothertab (atcol1, atcol2) values (45, null) #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: insert into anothertab (atcol1, atcol2) values (default, null) #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: insert into anothertab (atcol2) values (null) #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: select * from anothertab #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: select * from anothertab #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: alter table anothertab alter column atcol1 drop default #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: alter table anothertab drop constraint anothertab_chk #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: select * from anothertab #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: drop table anothertab #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: create table another (f1 int, f2 text) #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: insert into another values(1, 'one') #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: insert into another values(2, 'two') #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: insert into another values(3, 'three') #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: select * from another #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: select * from another #2025-04-04 21:25:36: client0126: SQLrun: INFO: Executing: drop table another #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop view street #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop view iexit #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop view toyemp #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table onek #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table onek2 #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table tenk1 #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table tenk2 #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table bprime #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table hobbies_r #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table equipment_r #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table aggtest #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table iportaltest #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table f_star #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table e_star #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table d_star #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table c_star #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table b_star #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table a_star #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table stud_emp #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table student #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table slow_emp4000 #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table fast_emp4000 #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table emp #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table person #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table ramp #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table real_city #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table dept #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table ihighway #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table shighway #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table road #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table city #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table hash_i4_heap #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table hash_name_heap #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table hash_txt_heap #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table hash_f8_heap #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table bt_i4_heap #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table bt_name_heap #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table bt_txt_heap #2025-04-04 21:25:36: client0127: SQLrun: INFO: Executing: drop table bt_f8_heap #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: drop table "sys"."tenk1" cascade #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: drop table "sys"."test" cascade #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: drop table "sys"."gc1" cascade #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: create temp table arrtest2 (i integer array[4], f double[], n numeric[], t text[], d timestamp[]) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: create temp table arrtest_f (f0 int, f1 text, f2 double) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_f values(1,'cat1',1.21) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_f values(2,'cat1',1.24) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_f values(3,'cat1',1.18) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_f values(4,'cat1',1.26) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_f values(5,'cat1',1.15) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_f values(6,'cat2',1.15) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_f values(7,'cat2',1.26) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_f values(8,'cat2',1.32) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_f values(9,'cat2',1.30) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: create temp table arrtest_i (f0 int, f1 text, f2 int) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_i values(1,'cat1',21) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_i values(2,'cat1',24) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_i values(3,'cat1',18) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_i values(4,'cat1',26) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_i values(5,'cat1',15) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_i values(6,'cat2',15) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_i values(7,'cat2',26) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_i values(8,'cat2',32) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: insert into arrtest_i values(9,'cat2',30) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select not array[1.1,1.2,1.3] = array[1.1,1.2,1.3] as "FALSE" #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select array[1,2] || 3 as "{1,2,3}" #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select 0 || array[1,2] as "{0,1,2}" #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select array[1,2] || array[3,4] as "{1,2,3,4}" #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select array[[1,2],[3,4]] || array[5,6] as "{{1,2},{3,4},{5,6}}" #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select array[0,0] || array[1,1] || array[2,2] as "{0,0,1,1,2,2}" #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select 0 || array[1,2] || 3 as "{0,1,2,3}" #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select 33 = any ('{1,2,3}') #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select 33 = any ('{1,2,33}') #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select 33 = all ('{1,2,33}') #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select 33 >= all ('{1,2,33}') #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select 33.4 = any (array[1,2,3]) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: select 33.4 > all (array[1,2,3]) #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: drop table arrtest2 #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: drop table arrtest_f #2025-04-04 21:25:36: client0128: SQLrun: INFO: Executing: drop table arrtest_i #2025-04-04 21:25:36: client0129: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:36: client0129: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:36: client0129: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:36: client0129: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:36: client0129: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:36: client0129: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:36: client0129: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:36: client0129: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:36: client0129: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:36: client0129: SQLrun: INFO: Executing: create table update_test ( #2025-04-04 21:25:36: client0129: SQLrun: INFO: Executing: insert into update_test values (5, 10) #2025-04-04 21:25:36: client0129: SQLrun: INFO: Executing: insert into update_test values (10, 15) #2025-04-04 21:25:36: client0129: SQLrun: INFO: Executing: select * from update_test #2025-04-04 21:25:36: client0129: SQLrun: INFO: Executing: select * from update_test #2025-04-04 21:25:36: client0129: SQLrun: INFO: Executing: drop table update_test #2025-04-04 21:25:36: client0130: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:36: client0130: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:36: client0130: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:36: client0130: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:36: client0130: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:36: client0130: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:36: client0130: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:36: client0130: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:36: client0130: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:36: client0130: SQLrun: INFO: Executing: create table wi (oid oid generated always as identity, i int, #2025-04-04 21:25:36: client0130: SQLrun: INFO: Executing: create table wo (i int, #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wi (i) values (1) #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wo (i) select i from wi #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wo (i) select i+1 from wi #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wi (i) select i+1 from wo #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wi (i) select i+3 from wi #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wo (i) select i+2 from wi #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wo (i) select i+8 from wo #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wi (i) select i+6 from wo #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wi (i) select i+22 from wi #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wo (i) select i+16 from wi #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wo (i) select i+60 from wo #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wi (i) select i+44 from wo #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wi (i) select i+164 from wi #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wo (i) select i+120 from wi #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wo (i) select i+448 from wo #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wi (i) select i+328 from wo #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wi (i) select i+1224 from wi #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wo (i) select i+896 from wi #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wo (i) select i+3344 from wo #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wi (i) select i+2448 from wo #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into wo (i) select i+6688 from wi where i<=2448 #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: select count(oid) from wi #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: select count(i) from wo #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: analyze sys.wi #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: analyze sys.wo #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: select "schema", "table", "column", type, count, typewidth, columnsize, heapsize, "imprints", sorted from sys.storage #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: drop table wi #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: drop table wo #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: create table create_table_test ( #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into create_table_test values (5, 10) #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: insert into create_table_test values (10, 15) #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: create table create_table_test2 as #2025-04-04 21:25:37: client0130: SQLrun: INFO: Executing: create table create_table_test3 as #2025-04-04 21:25:38: client0130: SQLrun: INFO: Executing: select count(oid) from create_table_test2 #2025-04-04 21:25:38: client0130: SQLrun: INFO: Executing: select count(*) from create_table_test3 #2025-04-04 21:25:38: client0130: SQLrun: INFO: Executing: drop table create_table_test #2025-04-04 21:25:38: client0130: SQLrun: INFO: Executing: drop table create_table_test2 #2025-04-04 21:25:38: client0130: SQLrun: INFO: Executing: drop table create_table_test3 #2025-04-04 21:25:38: client0131: SQLrun: INFO: Executing: select s.name, t.name, case when t.type in (select table_type_id from sys.table_types where table_type_name like '%VIEW%') then 'VIEW' else 'TABLE' end from sys.tables t, sys.schemas s where not t.system and t.schema_id = s.id #2025-04-04 21:25:38: client0131: SQLrun: INFO: Executing: select s.name, f.name, ft.function_type_keyword from functions f, schemas s, function_types ft where not f.system and f.schema_id = s.id and f.type = ft.function_type_id #2025-04-04 21:25:38: client0131: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 21:25:38: client0131: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:38: client0131: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 21:25:38: client0131: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 21:25:38: client0131: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id desc #2025-04-04 21:25:38: client0131: SQLrun: INFO: Executing: call sys.setsessiontimeout(120) #2025-04-04 21:25:38: client0131: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 21:25:38: client0131: SQLrun: INFO: Executing: begin transaction #2025-04-04 21:25:38: client0131: SQLrun: INFO: Executing: begin transaction #2025-04-04 21:25:38: client0131: SQLrun: INFO: Executing: begin transaction #2025-04-04 21:25:38: client0131: SQLrun: INFO: Executing: begin transaction #2025-04-04 21:25:38: client0131: SQLrun: INFO: Executing: begin transaction #2025-04-04 21:25:38: client0131: SQLrun: INFO: Executing: begin transaction # mserver5 exiting