# MonetDB 5 server v11.54.0 # This is an unreleased version # Serving database 'mTests_sql_test_pg_regress', using 8 threads # Compiled for ppc64-pc-linux-gnu/64bit with 128bit integers # Found 255.358 GiB available main-memory of which we use 208.117 GiB # Virtual memory usage limited to 32.000 GiB # Copyright (c) 2024, 2025 MonetDB Foundation, all rights reserved # Visit https://www.monetdb.org/ for further information # MonetDB/SQL module loaded # Listening for connection requests on mapi:monetdb://power8:43305/ # Listening for UNIX domain connection requests on mapi:monetdb:///tmp/mtest-123003/.s.monetdb.43305 #2025-04-04 23:12:37: 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 23:12:37: 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 23:12:37: client0017: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select 1 as one #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select cast('t' as boolean) as "true" #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select cast('true' as boolean) as "true" #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select cast('f' as boolean) as "false" #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select cast('false' as boolean) as "false" #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select cast('t' as boolean) or cast('f' as boolean) as "true" #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select cast('true' as boolean) or cast('false' as boolean) as "true" #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select cast('t' as boolean) and cast('f' as boolean) as "false" #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select cast('true' as boolean) and cast('false' as boolean) as "false" #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select not cast('f' as boolean) as "true" #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select not cast('false' as boolean) as "true" #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select not cast('true' as boolean) as "false" #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select cast('t' as boolean) = cast('f' as boolean) as "false" #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select cast('true' as boolean) = cast('false' as boolean) as "false" #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select cast('t' as boolean) <> cast('f' as boolean) as "true" #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select cast('true' as boolean) <> cast('false' as boolean) as "true" #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: create table booltbl1 (f1 bool) #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: insert into booltbl1 (f1) values (cast('t' as boolean)) #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: insert into booltbl1 (f1) values (cast('true' as boolean)) #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: insert into booltbl1 (f1) values (cast('True' as boolean)) #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: insert into booltbl1 (f1) values (cast(lower('True') as boolean)) #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: insert into booltbl1 (f1) values ('true') #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as f_3, * from booltbl1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as t_3, booltbl1.* #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as t_3, booltbl1.* #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: insert into booltbl1 (f1) values (cast('f' as boolean)) #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: insert into booltbl1 (f1) values (cast('false' as boolean)) #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as f_1, booltbl1.* #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: create table booltbl2 (f1 bool) #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: insert into booltbl2 (f1) values (cast('f' as boolean)) #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: insert into booltbl2 (f1) values (cast('false' as boolean)) #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: insert into booltbl2 (f1) values (cast('False' as boolean)) #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: insert into booltbl2 (f1) values (cast(lower('False') as boolean)) #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: insert into booltbl2 (f1) values (cast('FALSE' as boolean)) #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: insert into booltbl2 (f1) values (cast(lower('FALSE') as boolean)) #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: insert into booltbl2 (f1) #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as f_4, * from booltbl2 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as tf_12, booltbl1.*, booltbl2.* #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as ff_4, booltbl1.*, booltbl2.* #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as tf_12_ff_4, booltbl1.*, booltbl2.* #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as "True", f1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as "Not False", f1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as "Not False", f1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as "Not False", f1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as "False", f1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as "Not True", f1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as "Not True", f1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as "Not True", f1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as "True", f1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as "Not False", f1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as "Not False", f1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as "Not False", f1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as "False", f1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as "Not True", f1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as "Not True", f1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: select '' as "Not True", f1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: drop table booltbl1 #2025-04-04 23:12:37: client0017: SQLrun: INFO: Executing: drop table booltbl2 #2025-04-04 23:12:37: 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 23:12:37: 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 23:12:37: client0018: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: select cast('c' as char) = cast('c' as char) as "true" #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: create table char_tbl(f1 char) #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('a') #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('A') #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('1') #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: insert into char_tbl (f1) values (2) #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('3') #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('') #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('cd') #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('c ') #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: select '' as seven, char_tbl.* from char_tbl #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: select '' as six, c.* #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: select '' as one, c.* #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: select '' as five, c.* #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: select '' as six, c.* #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: select '' as one, c.* #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: select '' as two, c.* #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: drop table char_tbl #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: create table char_tbl(f1 char(4)) #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('a') #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('ab') #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('abcd') #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('abcde') #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('abcd ') #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: select '' as four, char_tbl.* from char_tbl #2025-04-04 23:12:37: client0018: SQLrun: INFO: Executing: drop table char_tbl #2025-04-04 23:12:37: client0019: 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 23:12:37: client0019: 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 23:12:37: client0019: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: create table varchar_tbl(f1 varchar(1)) #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('a') #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('A') #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('1') #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values (2) #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('3') #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('') #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('cd') #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('c ') #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: select '' as seven, varchar_tbl.* from varchar_tbl #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: select '' as six, c.* #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: select '' as one, c.* #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: select '' as five, c.* #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: select '' as six, c.* #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: select '' as one, c.* #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: select '' as two, c.* #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: drop table varchar_tbl #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: create table varchar_tbl(f1 varchar(4)) #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('a') #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('ab') #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('abcd') #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('abcde') #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('abcd ') #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: select '' as four, varchar_tbl.* from varchar_tbl #2025-04-04 23:12:37: client0019: SQLrun: INFO: Executing: drop table varchar_tbl #2025-04-04 23:12:37: 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 23:12:37: 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 23:12:38: client0020: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:38: client0020: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:38: client0020: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:38: client0020: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:38: client0020: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:38: client0020: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:38: client0020: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:38: 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 23:12:38: 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 23:12:38: client0020: SQLrun: INFO: Executing: create table text_tbl (f1 text) #2025-04-04 23:12:38: client0020: SQLrun: INFO: Executing: insert into text_tbl values ('doh!') #2025-04-04 23:12:38: client0020: SQLrun: INFO: Executing: insert into text_tbl values ('hi de ho neighbor') #2025-04-04 23:12:38: client0020: SQLrun: INFO: Executing: select '' as two, * from text_tbl #2025-04-04 23:12:38: client0020: SQLrun: INFO: Executing: drop table text_tbl #2025-04-04 23:12:38: 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 23:12:38: 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 23:12:38: client0021: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: create table int2_tbl(f1 smallint) #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('0 ') #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values (' 1234 ') #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values (' -1234') #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('34.5') #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('32767') #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('-32767') #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('100000') #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('asdf') #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values (' ') #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('- 1234') #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('4 444') #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('123 dt') #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('') #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as five, * from int2_tbl #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as four, i.* from int2_tbl i where i.f1 <> cast('0' as smallint) #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as four, i.* from int2_tbl i where i.f1 <> cast('0' as integer) #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as one, i.* from int2_tbl i where i.f1 = cast('0' as smallint) #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as one, i.* from int2_tbl i where i.f1 = cast('0' as integer) #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as two, i.* from int2_tbl i where i.f1 < cast('0' as smallint) #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as two, i.* from int2_tbl i where i.f1 < cast('0' as integer) #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as three, i.* from int2_tbl i where i.f1 <= cast('0' as smallint) #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as three, i.* from int2_tbl i where i.f1 <= cast('0' as integer) #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as two, i.* from int2_tbl i where i.f1 > cast('0' as smallint) #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as two, i.* from int2_tbl i where i.f1 > cast('0' as integer) #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as three, i.* from int2_tbl i where i.f1 >= cast('0' as smallint) #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as three, i.* from int2_tbl i where i.f1 >= cast('0' as integer) #2025-04-04 23:12:38: 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 23:12:38: 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 23:12:38: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 * cast('2' as smallint) as x from int2_tbl i #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 * cast('2' as smallint) as x from int2_tbl i #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 * cast('2' as integer) as x from int2_tbl i #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 + cast('2' as smallint) as x from int2_tbl i #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 + cast('2' as smallint) as x from int2_tbl i #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 + cast('2' as integer) as x from int2_tbl i #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 - cast('2' as smallint) as x from int2_tbl i #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 - cast('2' as smallint) as x from int2_tbl i #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 - cast('2' as integer) as x from int2_tbl i #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 / cast('2' as smallint) as x from int2_tbl i #2025-04-04 23:12:38: client0021: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 / cast('2' as integer) as x from int2_tbl i #2025-04-04 23:12:38: client0022: 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 23:12:38: client0022: SQLrun: INFO: Executing: drop table "sys"."int2_tbl" cascade #2025-04-04 23:12:38: client0022: 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 23:12:38: client0022: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: create table int4_tbl(f1 integer) #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: insert into int4_tbl(f1) values (' 0 ') #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('123456 ') #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: insert into int4_tbl(f1) values (' -123456') #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('34.5') #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('2147483647') #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('-2147483647') #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('1000000000000') #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('asdf') #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: insert into int4_tbl(f1) values (' ') #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: insert into int4_tbl(f1) values (' asdf ') #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('- 1234') #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('123 5') #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('') #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as four, i.* from int4_tbl i where i.f1 <> cast('0' as smallint) #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as four, i.* from int4_tbl i where i.f1 <> cast('0' as integer) #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as one, i.* from int4_tbl i where i.f1 = cast('0' as smallint) #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as one, i.* from int4_tbl i where i.f1 = cast('0' as integer) #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as two, i.* from int4_tbl i where i.f1 < cast('0' as smallint) #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as two, i.* from int4_tbl i where i.f1 < cast('0' as integer) #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as three, i.* from int4_tbl i where i.f1 <= cast('0' as smallint) #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as three, i.* from int4_tbl i where i.f1 <= cast('0' as integer) #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as two, i.* from int4_tbl i where i.f1 > cast('0' as smallint) #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as two, i.* from int4_tbl i where i.f1 > cast('0' as integer) #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as three, i.* from int4_tbl i where i.f1 >= cast('0' as smallint) #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as three, i.* from int4_tbl i where i.f1 >= cast('0' as integer) #2025-04-04 23:12:38: client0022: 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 23:12:38: client0022: 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 23:12:38: client0022: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 * cast('2' as smallint) as x from int4_tbl i #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 * cast('2' as smallint) as x from int4_tbl i #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 * cast('2' as integer) as x from int4_tbl i #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 * cast('2' as integer) as x from int4_tbl i #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 + cast('2' as smallint) as x from int4_tbl i #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 + cast('2' as smallint) as x from int4_tbl i #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 + cast('2' as integer) as x from int4_tbl i #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 + cast('2' as integer) as x from int4_tbl i #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 - cast('2' as smallint) as x from int4_tbl i #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 - cast('2' as smallint) as x from int4_tbl i #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 - cast('2' as integer) as x from int4_tbl i #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 - cast('2' as integer) as x from int4_tbl i #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 / cast('2' as smallint) as x from int4_tbl i #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select '' as five, i.f1, i.f1 / cast('2' as integer) as x from int4_tbl i #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select -2+3 as one #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select 4-2 as two #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select 2- -1 as three #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select 2 - -2 as four #2025-04-04 23:12:38: client0022: 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 23:12:38: client0022: 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 23:12:38: client0022: 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 23:12:38: client0022: SQLrun: INFO: Executing: select cast('1000' as integer) < cast('999' as integer) as "false" #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 as ten #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select 2 + 2 / 2 as three #2025-04-04 23:12:38: client0022: SQLrun: INFO: Executing: select (2 + 2) / 2 as two #2025-04-04 23:12:38: 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 23:12:38: client0023: SQLrun: INFO: Executing: drop table "sys"."int4_tbl" cascade #2025-04-04 23:12:38: 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 23:12:38: client0023: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: set optimizer = 'sequential_pipe' #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: create table int8_tbl(q1 bigint, q2 bigint) #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: insert into int8_tbl values(' 123 ',' 456') #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: insert into int8_tbl values('123 ','4567890123456789') #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: insert into int8_tbl values('4567890123456789','123') #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: insert into int8_tbl values('4567890123456789','4567890123456789') #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: insert into int8_tbl values('4567890123456789','-4567890123456789') #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: insert into int8_tbl(q1) values (' ') #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: insert into int8_tbl(q1) values ('xxx') #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: insert into int8_tbl(q1) values ('3908203590239580293850293850329485') #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: insert into int8_tbl(q1) values ('-1204982019841029840928340329840934') #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: insert into int8_tbl(q1) values ('- 123') #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: insert into int8_tbl(q1) values (' 345 5') #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: insert into int8_tbl(q1) values ('') #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: select * from int8_tbl #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: select '' as five, q1 as plus, -q1 as minus from int8_tbl #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: select '' as five, q1, q2, q1 + q2 as plus from int8_tbl #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: select '' as five, q1, q2, q1 - q2 as minus from int8_tbl #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: select '' as three, q1, q2, q1 * q2 as multiply from int8_tbl where q2 <> 4567890123456789 order by q1, q2 #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: select '' as three, q1, q2, q1 * q2 as multiply from int8_tbl #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: select '' as five, q1, q2, q1 / q2 as divide from int8_tbl #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: select '' as five, q1, cast(q1 as double) from int8_tbl #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: select '' as five, q2, cast(q2 as double) from int8_tbl #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: select '' as five, 2 * q1 as "twice integer" from int8_tbl #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: select '' as five, q1 * 2 as "twice integer" from int8_tbl #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: drop table int8_tbl #2025-04-04 23:12:38: client0023: SQLrun: INFO: Executing: set optimizer = 'default_pipe' #2025-04-04 23:12:38: client0024: 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 23:12:38: client0024: 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 23:12:38: client0024: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: create table float4_tbl (f1 real) #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: insert into float4_tbl(f1) values (' 0.0') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('1004.30 ') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: insert into float4_tbl(f1) values (' -34.84 ') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('1.2345678901234e+20') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('1.2345678901234e-20') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('10e40') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('-10e40') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('10e-40') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('-10e-40') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: insert into float4_tbl(f1) values (' ') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('xyz') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('5.0.0') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('5 . 0') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('5. 0') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: insert into float4_tbl(f1) values (' - 3.0') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: insert into float4_tbl(f1) values ('123 5') #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select cast('NaN' as real) #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select cast('nan' as real) #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select cast(' NAN ' as real) #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select cast('infinity' as real) #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select cast(' -INFINiTY ' as real) #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select cast('N A N' as real) #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select cast('NaN x' as real) #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select cast(' INFINITY x' as real) #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select cast('Infinity' as real) + 100.0 #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select cast('Infinity' as real) / cast('Infinity' as real) #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select cast('nan' as real) / cast('nan' as real) #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as five, float4_tbl.* from float4_tbl #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as four, f.* from float4_tbl f where f.f1 <> '1004.3' #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as one, f.* from float4_tbl f where f.f1 = '1004.3' #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as three, f.* from float4_tbl f where '1004.3' > f.f1 #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as three, f.* from float4_tbl f where f.f1 < '1004.3' #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as four, f.* from float4_tbl f where '1004.3' >= f.f1 #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as four, f.* from float4_tbl f where f.f1 <= '1004.3' #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as three, f.f1, f.f1 * '-10' as x from float4_tbl f #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as three, f.f1, f.f1 + '-10' as x from float4_tbl f #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as three, f.f1, f.f1 / '-10' as x from float4_tbl f #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as three, f.f1, f.f1 - '-10' as x from float4_tbl f #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as bad, f.f1 / '0.0' from float4_tbl f #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as five, f.f1, abs(f1) as abs_f1 #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as five, f.f1, round(f.f1, 0) as round_f1 #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select ceil(f1) as ceil_f1 from float4_tbl f #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select ceiling(f1) as ceiling_f1 from float4_tbl f #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select floor(f1) as floor_f1 from float4_tbl f #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select sign(f1) as sign_f1 from float4_tbl f #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select sqrt(cast('64' as double)) as eight #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as three, f.f1, sqrt(f.f1) as sqrt_f1 #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select power(cast('144' as double), cast('0.5' as double)) #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as three, f.f1, exp(ln(f.f1)) as exp_ln_f1 #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as five, * from float4_tbl #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: update float4_tbl #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: select '' as five, * from float4_tbl #2025-04-04 23:12:38: client0024: SQLrun: INFO: Executing: drop table float4_tbl #2025-04-04 23:12:38: client0025: 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 23:12:38: client0025: 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 23:12:38: client0025: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: create table float8_tbl(f1 double) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values (' 0.0 ') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('1004.30 ') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values (' -34.84') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('1.2345678901234e+200') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('1.2345678901234e-200') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select cast('10e400' as double) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select cast('-10e400' as double) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select cast('10e-400' as double) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select cast('-10e-400' as double) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values (' ') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('xyz') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('5.0.0') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('5 . 0') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('5. 0') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values (' - 3') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('123 5') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select cast('NaN' as double) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select cast('nan' as double) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select cast(' NAN ' as double) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select cast('infinity' as double) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select cast(' -INFINiTY ' as double) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select cast('N A N' as double) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select cast('NaN x' as double) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select cast(' INFINITY x' as double) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select cast('Infinity' as double) + 100.0 #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select cast('Infinity' as double) / cast('Infinity' as double) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select cast('nan' as double) / cast('nan' as double) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as five, float8_tbl.* from float8_tbl #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as four, f.* from float8_tbl f where f.f1 <> '1004.3' #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as one, f.* from float8_tbl f where f.f1 = '1004.3' #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as three, f.* from float8_tbl f where '1004.3' > f.f1 #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as three, f.* from float8_tbl f where f.f1 < '1004.3' #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as four, f.* from float8_tbl f where '1004.3' >= f.f1 #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as four, f.* from float8_tbl f where f.f1 <= '1004.3' #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as three, f.f1, f.f1 * '-10' as x #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as three, f.f1, f.f1 + '-10' as x #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as three, f.f1, f.f1 / '-10' as x #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as three, f.f1, f.f1 - '-10' as x #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as five, f.f1, abs(f1) as abs_f1 #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as five, f.f1, round(f.f1, 0) as round_f1 #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select ceil(f1) as ceil_f1 from float8_tbl f #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select ceiling(f1) as ceiling_f1 from float8_tbl f #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select floor(f1) as floor_f1 from float8_tbl f #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select sign(f1) as sign_f1 from float8_tbl f #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select sqrt(cast('64' as double)) as eight #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as three, f.f1, sqrt(f.f1) as sqrt_f1 #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select power(cast('144' as double), cast('0.5' as double)) #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as three, f.f1, exp(ln(f.f1)) as exp_ln_f1 #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as five, * from float8_tbl #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: update float8_tbl #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as bad, f.f1 * '1e200' from float8_tbl f #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as bad, f.f1 ^ '3' from float8_tbl f #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as bad, log(-f.f1) from float8_tbl f where f.f1 < '0.0' #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as bad, exp(-f.f1) from float8_tbl f where f.f1 > '-1000.0' #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as bad, f.f1 / '0.0' from float8_tbl f #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as five, * from float8_tbl #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('10e400') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('-10e400') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('10e-400') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('-10e-400') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: delete from float8_tbl #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('0.0') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('-34.84') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('-1004.30') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('-1.2345678901234e+200') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('-1.2345678901234e-200') #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: select '' as five, * from float8_tbl #2025-04-04 23:12:38: client0025: SQLrun: INFO: Executing: drop table float8_tbl #2025-04-04 23:12:38: client0026: 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 23:12:38: client0026: 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 23:12:38: client0026: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: set optimizer = 'sequential_pipe' #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create table num_data (id integer, val numeric(18,9)) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create table num_exp_add (id1 integer, id2 integer, expected numeric(38,19)) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create table num_exp_sub (id1 integer, id2 integer, expected numeric(38,19)) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create table num_exp_div (id1 integer, id2 integer, expected numeric(38,19)) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create table num_exp_mul (id1 integer, id2 integer, expected numeric(38,19)) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create table num_exp_sqrt (id integer, expected numeric(38,19)) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create table num_exp_ln (id integer, expected numeric(38,19)) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create table num_exp_log10 (id integer, expected numeric(38,19)) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create table num_exp_power_10_ln (id integer, expected numeric(38,19)) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create table num_result (id1 integer, id2 integer, result numeric(38,19)) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (0,0,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (0,0,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (0,0,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (0,0,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (0,1,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (0,1,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (0,1,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (0,1,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (0,2,'-34338492.215397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (0,2,'34338492.215397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (0,2,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (0,2,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (0,3,'4.31') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (0,3,'-4.31') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (0,3,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (0,3,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (0,4,'7799461.4119') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (0,4,'-7799461.4119') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (0,4,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (0,4,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (0,5,'16397.038491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (0,5,'-16397.038491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (0,5,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (0,5,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (0,6,'93901.57763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (0,6,'-93901.57763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (0,6,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (0,6,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (0,7,'-83028485') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (0,7,'83028485') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (0,7,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (0,7,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (0,8,'74881') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (0,8,'-74881') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (0,8,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (0,8,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (0,9,'-24926804.045047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (0,9,'24926804.045047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (0,9,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (0,9,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (1,0,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (1,0,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (1,0,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (1,0,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (1,1,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (1,1,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (1,1,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (1,1,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (1,2,'-34338492.215397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (1,2,'34338492.215397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (1,2,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (1,2,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (1,3,'4.31') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (1,3,'-4.31') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (1,3,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (1,3,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (1,4,'7799461.4119') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (1,4,'-7799461.4119') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (1,4,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (1,4,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (1,5,'16397.038491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (1,5,'-16397.038491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (1,5,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (1,5,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (1,6,'93901.57763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (1,6,'-93901.57763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (1,6,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (1,6,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (1,7,'-83028485') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (1,7,'83028485') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (1,7,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (1,7,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (1,8,'74881') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (1,8,'-74881') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (1,8,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (1,8,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (1,9,'-24926804.045047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (1,9,'24926804.045047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (1,9,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (1,9,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (2,0,'-34338492.215397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (2,0,'-34338492.215397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (2,0,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (2,0,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (2,1,'-34338492.215397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (2,1,'-34338492.215397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (2,1,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (2,1,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (2,2,'-68676984.430794094') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (2,2,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (2,2,'1179132047626883.596862135856320209') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (2,2,'1.00000000000000000000') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (2,3,'-34338487.905397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (2,3,'-34338496.525397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (2,3,'-147998901.44836127257') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (2,3,'-7967167.56737750510440835266') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (2,4,'-26539030.803497047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (2,4,'-42137953.627297047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (2,4,'-267821744976817.8111137106593') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (2,4,'-4.40267480046830116685') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (2,5,'-34322095.176906047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (2,5,'-34354889.253888047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (2,5,'-563049578578.769242506736077') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (2,5,'-2094.18866914563535496429') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (2,6,'-34244590.637766787') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (2,6,'-34432393.793027307') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (2,6,'-3224438592470.18449811926184222') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (2,6,'-365.68599891479766440940') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (2,7,'-117366977.215397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (2,7,'48689992.784602953') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (2,7,'2851072985828710.485883795') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (2,7,'.41357483778485235518') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (2,8,'-34263611.215397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (2,8,'-34413373.215397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (2,8,'-2571300635581.146276407') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (2,8,'-458.57416721727870888476') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (2,9,'-59265296.260444467') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (2,9,'-9411688.170349627') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (2,9,'855948866655588.453741509242968740') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (2,9,'1.37757299946438931811') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (3,0,'4.31') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (3,0,'4.31') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (3,0,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (3,0,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (3,1,'4.31') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (3,1,'4.31') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (3,1,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (3,1,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (3,2,'-34338487.905397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (3,2,'34338496.525397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (3,2,'-147998901.44836127257') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (3,2,'-.00000012551512084352') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (3,3,'8.62') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (3,3,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (3,3,'18.5761') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (3,3,'1.00000000000000000000') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (3,4,'7799465.7219') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (3,4,'-7799457.1019') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (3,4,'33615678.685289') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (3,4,'.00000055260225961552') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (3,5,'16401.348491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (3,5,'-16392.728491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (3,5,'70671.23589621') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (3,5,'.00026285234387695504') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (3,6,'93905.88763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (3,6,'-93897.26763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (3,6,'404715.7995864206') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (3,6,'.00004589912234457595') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (3,7,'-83028480.69') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (3,7,'83028489.31') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (3,7,'-357852770.35') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (3,7,'-.00000005190989574240') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (3,8,'74885.31') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (3,8,'-74876.69') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (3,8,'322737.11') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (3,8,'.00005755799201399553') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (3,9,'-24926799.735047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (3,9,'24926808.355047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (3,9,'-107434525.43415438020') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (3,9,'-.00000017290624149854') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (4,0,'7799461.4119') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (4,0,'7799461.4119') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (4,0,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (4,0,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (4,1,'7799461.4119') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (4,1,'7799461.4119') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (4,1,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (4,1,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (4,2,'-26539030.803497047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (4,2,'42137953.627297047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (4,2,'-267821744976817.8111137106593') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (4,2,'-.22713465002993920385') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (4,3,'7799465.7219') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (4,3,'7799457.1019') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (4,3,'33615678.685289') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (4,3,'1809619.81714617169373549883') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (4,4,'15598922.8238') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (4,4,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (4,4,'60831598315717.14146161') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (4,4,'1.00000000000000000000') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (4,5,'7815858.450391') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (4,5,'7783064.373409') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (4,5,'127888068979.9935054429') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (4,5,'475.66281046305802686061') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (4,6,'7893362.98953026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (4,6,'7705559.83426974') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (4,6,'732381731243.745115764094') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (4,6,'83.05996138436129499606') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (4,7,'-75229023.5881') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (4,7,'90827946.4119') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (4,7,'-647577464846017.9715') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (4,7,'-.09393717604145131637') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (4,8,'7874342.4119') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (4,8,'7724580.4119') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (4,8,'584031469984.4839') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (4,8,'104.15808298366741897143') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (4,9,'-17127342.633147420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (4,9,'32726265.456947420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (4,9,'-194415646271340.1815956522980') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (4,9,'-.31289456112403769409') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (5,0,'16397.038491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (5,0,'16397.038491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (5,0,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (5,0,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (5,1,'16397.038491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (5,1,'16397.038491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (5,1,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (5,1,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (5,2,'-34322095.176906047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (5,2,'34354889.253888047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (5,2,'-563049578578.769242506736077') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (5,2,'-.00047751189505192446') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (5,3,'16401.348491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (5,3,'16392.728491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (5,3,'70671.23589621') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (5,3,'3804.41728329466357308584') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (5,4,'7815858.450391') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (5,4,'-7783064.373409') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (5,4,'127888068979.9935054429') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (5,4,'.00210232958726897192') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (5,5,'32794.076982') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (5,5,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (5,5,'268862871.275335557081') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (5,5,'1.00000000000000000000') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (5,6,'110298.61612126') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (5,6,'-77504.53913926') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (5,6,'1539707782.76899778633766') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (5,6,'.17461941433576102689') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (5,7,'-83012087.961509') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (5,7,'83044882.038491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (5,7,'-1361421264394.416135') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (5,7,'-.00019748690453643710') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (5,8,'91278.038491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (5,8,'-58483.961509') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (5,8,'1227826639.244571') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (5,8,'.21897461960978085228') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (5,9,'-24910407.006556420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (5,9,'24943201.083538420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (5,9,'-408725765384.257043660243220') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (5,9,'-.00065780749354660427') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (6,0,'93901.57763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (6,0,'93901.57763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (6,0,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (6,0,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (6,1,'93901.57763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (6,1,'93901.57763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (6,1,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (6,1,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (6,2,'-34244590.637766787') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (6,2,'34432393.793027307') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (6,2,'-3224438592470.18449811926184222') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (6,2,'-.00273458651128995823') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (6,3,'93905.88763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (6,3,'93897.26763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (6,3,'404715.7995864206') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (6,3,'21786.90896293735498839907') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (6,4,'7893362.98953026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (6,4,'-7705559.83426974') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (6,4,'732381731243.745115764094') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (6,4,'.01203949512295682469') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (6,5,'110298.61612126') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (6,5,'77504.53913926') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (6,5,'1539707782.76899778633766') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (6,5,'5.72674008674192359679') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (6,6,'187803.15526052') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (6,6,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (6,6,'8817506281.4517452372676676') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (6,6,'1.00000000000000000000') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (6,7,'-82934583.42236974') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (6,7,'83122386.57763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (6,7,'-7796505729750.37795610') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (6,7,'-.00113095617281538980') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (6,8,'168782.57763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (6,8,'19020.57763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (6,8,'7031444034.53149906') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (6,8,'1.25401073209839612184') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (6,9,'-24832902.467417160') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (6,9,'25020705.622677680') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (6,9,'-2340666225110.29929521292692920') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (6,9,'-.00376709254265256789') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (7,0,'-83028485') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (7,0,'-83028485') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (7,0,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (7,0,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (7,1,'-83028485') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (7,1,'-83028485') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (7,1,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (7,1,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (7,2,'-117366977.215397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (7,2,'-48689992.784602953') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (7,2,'2851072985828710.485883795') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (7,2,'2.41794207151503385700') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (7,3,'-83028480.69') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (7,3,'-83028489.31') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (7,3,'-357852770.35') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (7,3,'-19264149.65197215777262180974') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (7,4,'-75229023.5881') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (7,4,'-90827946.4119') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (7,4,'-647577464846017.9715') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (7,4,'-10.64541262725136247686') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (7,5,'-83012087.961509') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (7,5,'-83044882.038491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (7,5,'-1361421264394.416135') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (7,5,'-5063.62688881730941836574') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (7,6,'-82934583.42236974') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (7,6,'-83122386.57763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (7,6,'-7796505729750.37795610') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (7,6,'-884.20756174009028770294') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (7,7,'-166056970') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (7,7,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (7,7,'6893729321395225') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (7,7,'1.00000000000000000000') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (7,8,'-82953604') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (7,8,'-83103366') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (7,8,'-6217255985285') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (7,8,'-1108.80577182462841041118') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (7,9,'-107955289.045047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (7,9,'-58101680.954952580') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (7,9,'2069634775752159.035758700') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (7,9,'3.33089171198810413382') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (8,0,'74881') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (8,0,'74881') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (8,0,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (8,0,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (8,1,'74881') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (8,1,'74881') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (8,1,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (8,1,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (8,2,'-34263611.215397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (8,2,'34413373.215397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (8,2,'-2571300635581.146276407') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (8,2,'-.00218067233500788615') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (8,3,'74885.31') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (8,3,'74876.69') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (8,3,'322737.11') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (8,3,'17373.78190255220417633410') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (8,4,'7874342.4119') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (8,4,'-7724580.4119') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (8,4,'584031469984.4839') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (8,4,'.00960079113741758956') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (8,5,'91278.038491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (8,5,'58483.961509') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (8,5,'1227826639.244571') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (8,5,'4.56673929509287019456') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (8,6,'168782.57763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (8,6,'-19020.57763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (8,6,'7031444034.53149906') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (8,6,'.79744134113322314424') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (8,7,'-82953604') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (8,7,'83103366') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (8,7,'-6217255985285') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (8,7,'-.00090187120721280172') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (8,8,'149762') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (8,8,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (8,8,'5607164161') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (8,8,'1.00000000000000000000') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (8,9,'-24851923.045047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (8,9,'25001685.045047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (8,9,'-1866544013697.195857020') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (8,9,'-.00300403532938582735') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (9,0,'-24926804.045047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (9,0,'-24926804.045047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (9,0,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (9,0,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (9,1,'-24926804.045047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (9,1,'-24926804.045047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (9,1,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (9,1,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (9,2,'-59265296.260444467') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (9,2,'9411688.170349627') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (9,2,'855948866655588.453741509242968740') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (9,2,'.72591434384152961526') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (9,3,'-24926799.735047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (9,3,'-24926808.355047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (9,3,'-107434525.43415438020') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (9,3,'-5783481.21694835730858468677') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (9,4,'-17127342.633147420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (9,4,'-32726265.456947420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (9,4,'-194415646271340.1815956522980') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (9,4,'-3.19596478892958416484') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (9,5,'-24910407.006556420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (9,5,'-24943201.083538420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (9,5,'-408725765384.257043660243220') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (9,5,'-1520.20159364322004505807') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (9,6,'-24832902.467417160') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (9,6,'-25020705.622677680') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (9,6,'-2340666225110.29929521292692920') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (9,6,'-265.45671195426965751280') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (9,7,'-107955289.045047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (9,7,'58101680.954952580') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (9,7,'2069634775752159.035758700') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (9,7,'.30021990699995814689') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (9,8,'-24851923.045047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (9,8,'-25001685.045047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (9,8,'-1866544013697.195857020') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (9,8,'-332.88556569820675471748') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_add values (9,9,'-49853608.090094840') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sub values (9,9,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_mul values (9,9,'621345559900192.420120630048656400') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_div values (9,9,'1.00000000000000000000') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sqrt values (0,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sqrt values (1,'0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sqrt values (2,'5859.90547836712524903505') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sqrt values (3,'2.07605394920266944396') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sqrt values (4,'2792.75158435189147418923') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sqrt values (5,'128.05092147657509145473') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sqrt values (6,'306.43364311096782703406') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sqrt values (7,'9111.99676251039939975230') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sqrt values (8,'273.64392922189960397542') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_sqrt values (9,'4992.67503899937593364766') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_ln values (0,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_ln values (1,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_ln values (2,'17.35177750493897715514') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_ln values (3,'1.46093790411565641971') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_ln values (4,'15.86956523951936572464') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_ln values (5,'9.70485601768871834038') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_ln values (6,'11.45000246622944403127') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_ln values (7,'18.23469429965478772991') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_ln values (8,'11.22365546576315513668') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_ln values (9,'17.03145425013166006962') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_log10 values (0,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_log10 values (1,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_log10 values (2,'7.53578122160797276459') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_log10 values (3,'.63447727016073160075') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_log10 values (4,'6.89206461372691743345') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_log10 values (5,'4.21476541614777768626') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_log10 values (6,'4.97267288886207207671') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_log10 values (7,'7.91922711353275546914') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_log10 values (8,'4.87437163556421004138') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_log10 values (9,'7.39666659961986567059') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_power_10_ln values (0,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_power_10_ln values (1,'NaN') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_power_10_ln values (2,'224790267919917955.13261618583642653184') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_power_10_ln values (3,'28.90266599445155957393') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_power_10_ln values (4,'7405685069594999.07733999469386277636') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_power_10_ln values (5,'5068226527.32127265408584640098') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_power_10_ln values (6,'281839893606.99372343357047819067') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_power_10_ln values (7,'1716699575118597095.4233081991064024762') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_power_10_ln values (8,'167361463828.07491320069016125952') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_exp_power_10_ln values (9,'107511333880052007.04141124673540337457') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_data values (0, '0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_data values (1, '0.0') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_data values (2, '-34338492.215397047') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_data values (3, '4.31') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_data values (4, '7799461.4119') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_data values (5, '16397.038491') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_data values (6, '93901.57763026') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_data values (7, '-83028485') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_data values (8, '74881') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_data values (9, '-24926804.045047420') #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create unique index num_exp_add_idx on num_exp_add (id1, id2) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create unique index num_exp_sub_idx on num_exp_sub (id1, id2) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create unique index num_exp_div_idx on num_exp_div (id1, id2) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create unique index num_exp_mul_idx on num_exp_mul (id1, id2) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create unique index num_exp_sqrt_idx on num_exp_sqrt (id) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create unique index num_exp_ln_idx on num_exp_ln (id) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create unique index num_exp_log10_idx on num_exp_log10 (id) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: create unique index num_exp_power_10_ln_idx on num_exp_power_10_ln (id) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: delete from num_result #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_result select t1.id, t2.id, t1.val + t2.val #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: select t1.id1, t1.id2, t1.result, t2.expected #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: delete from num_result #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_result select t1.id, t2.id, round(t1.val + t2.val, 20) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: select t1.id1, t1.id2, t1.result, round(t2.expected, 20) as expected #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: delete from num_result #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_result select t1.id, t2.id, t1.val - t2.val #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: select t1.id1, t1.id2, t1.result, t2.expected #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: delete from num_result #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_result select t1.id, t2.id, round(t1.val - t2.val, 40) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: select t1.id1, t1.id2, t1.result, round(t2.expected, 40) as expected #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: delete from num_result #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_result select t1.id, t2.id, t1.val * t2.val #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: select t1.id1, t1.id2, t1.result, t2.expected #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: delete from num_result #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_result select t1.id, t2.id, round(t1.val * t2.val, 30) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: select t1.id1, t1.id2, t1.result, round(t2.expected, 30) as expected #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: delete from num_result #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_result select t1.id, t2.id, t1.val / t2.val #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: select t1.id1, t1.id2, t1.result, t2.expected #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: delete from num_result #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_result select t1.id, t2.id, round(t1.val / t2.val, 80) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: select t1.id1, t1.id2, t1.result, round(t2.expected, 80) as expected #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: delete from num_result #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_result select id, 0, sqrt(abs(val)) #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: select t1.id1, t1.result, t2.expected #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: delete from num_result #2025-04-04 23:12:38: client0026: SQLrun: INFO: Executing: insert into num_result select id, 0, log(abs(val)) #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: select t1.id1, t1.result, t2.expected #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: delete from num_result #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_result select id, 0, log10(abs(val)) #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: select t1.id1, t1.result, t2.expected #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: delete from num_result #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_result select id, 0, power(cast('10.0' as numeric(3,0)), log(abs(round(val,20)))) #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: select t1.id1, t1.result, t2.expected #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: select avg(val) from num_data #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: create table fract_only (id int, val numeric(4,4)) #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into fract_only values (1, '0.0') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into fract_only values (2, '0.1') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into fract_only values (3, '1.0') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into fract_only values (4, '-0.9999') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into fract_only values (5, '0.99994') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into fract_only values (6, '0.99995') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into fract_only values (7, '0.00001') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into fract_only values (8, '0.00017') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: select * from fract_only #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: drop table fract_only #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: create table ceil_floor_round (a numeric) #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into ceil_floor_round values ('-5.5') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into ceil_floor_round values ('-5.499999') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into ceil_floor_round values ('9.5') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into ceil_floor_round values ('9.4999999') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into ceil_floor_round values ('0.0') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into ceil_floor_round values ('0.0000001') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into ceil_floor_round values ('-0.000001') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: select a, ceil(a), ceiling(a), floor(a) from ceil_floor_round #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: select a, round(a, 0) from ceil_floor_round #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: drop table ceil_floor_round #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: create table width_bucket_test (operand numeric) #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: drop table width_bucket_test #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: create table num_input_test (n1 numeric) #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_input_test(n1) values (' 123') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_input_test(n1) values (' 3245874 ') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_input_test(n1) values (' -93853') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_input_test(n1) values ('555.50') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_input_test(n1) values ('-555.50') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_input_test(n1) values ('NaN ') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_input_test(n1) values (' nan') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_input_test(n1) values (' ') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_input_test(n1) values (' 1234 %') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_input_test(n1) values ('xyz') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_input_test(n1) values ('- 1234') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_input_test(n1) values ('5 . 0') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_input_test(n1) values ('5. 0 ') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_input_test(n1) values ('') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: insert into num_input_test(n1) values (' N aN ') #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: select * from num_input_test #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: drop table num_input_test #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: drop table num_data #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: drop table num_exp_add #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: drop table num_exp_sub #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: drop table num_exp_div #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: drop table num_exp_mul #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: drop table num_exp_sqrt #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: drop table num_exp_ln #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: drop table num_exp_log10 #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: drop table num_exp_power_10_ln #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: drop table num_result #2025-04-04 23:12:39: client0026: SQLrun: INFO: Executing: set optimizer = 'default_pipe' #2025-04-04 23:12:39: 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 23:12:39: 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 23:12:39: client0027: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'first line' #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'first line' #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: create table char_tbl(f1 char) #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('a') #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('A') #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('1') #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into char_tbl (f1) values (2) #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('3') #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('') #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select cast(f1 as text) as "text(char)" from char_tbl #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: create table varchar_tbl(f1 varchar(1)) #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('a') #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('A') #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('1') #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values (2) #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('3') #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('') #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select cast(f1 as text) as "text(varchar)" from varchar_tbl #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select cast('namefield' as text) as "text(name)" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: create table text_tbl (f1 text) #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into text_tbl values ('doh!') #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into text_tbl values ('hi de ho neighbor') #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select cast(f1 as char(10)) as "char(text)" from text_tbl #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select cast(f1 as char(20)) as "char(text)" from text_tbl #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select cast(f1 as char(10)) as "char(varchar)" from varchar_tbl #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select cast('namefield' as char(10)) as "char(name)" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select cast(f1 as varchar(1)) as "varchar(text)" from text_tbl #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select cast(f1 as varchar(1)) as "varchar(char)" from char_tbl #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select cast('namefield' as string) as "varchar(name)" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: drop table char_tbl #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: drop table varchar_tbl #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: drop table text_tbl #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select trim(' bunch o blanks ') = 'bunch o blanks' as "bunch o blanks" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select ltrim(' bunch o blanks ') = 'bunch o blanks ' as "bunch o blanks " #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select rtrim(' bunch o blanks ') = ' bunch o blanks' as " bunch o blanks" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select trim(replace('xxxxxsome Xsxxxxx', 'x', ' ')) = 'some Xs' as "some Xs" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select substring('1234567890' from 3) = '34567890' as "34567890" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select substring('1234567890' from 4 for 3) = '456' as "456" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select substring('abcdefg' from '(b|c)' for null) is null as "True" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select substring('abcdefg' from null for '#') is null as "True" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select substring('abcdefg' from 'c.e') as "cde" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select substring('abcdefg' from 'b(.*)f') as "cde" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select position('4' in '1234567890') = '4' as "4" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select position(5 in '1234567890') = '5' as "5" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'hawkeye' like 'h%' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'hawkeye' not like 'h%' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'hawkeye' like 'H%' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'hawkeye' not like 'H%' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'hawkeye' like 'indio%' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'hawkeye' not like 'indio%' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'hawkeye' like 'h%eye' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'hawkeye' not like 'h%eye' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'indio' like '_ndio' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'indio' not like '_ndio' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'indio' like 'in__o' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'indio' not like 'in__o' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'indio' like 'in_o' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'indio' not like 'in_o' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'hawkeye' like 'h%' escape '#' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'hawkeye' not like 'h%' escape '#' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'indio' like 'ind_o' escape '$' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'indio' not like 'ind_o' escape '$' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'h%' like 'h#%' escape '#' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'h%' not like 'h#%' escape '#' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'h%wkeye' like 'h#%' escape '#' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'h%wkeye' not like 'h#%' escape '#' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'h%wkeye' like 'h#%%' escape '#' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'h%wkeye' not like 'h#%%' escape '#' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'h%awkeye' like 'h#%a%k%e' escape '#' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'h%awkeye' not like 'h#%a%k%e' escape '#' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'indio' like '_ndio' escape '$' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'indio' not like '_ndio' escape '$' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'i_dio' like 'i$_d_o' escape '$' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'i_dio' not like 'i$_d_o' escape '$' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'i_dio' like 'i$_nd_o' escape '$' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'i_dio' not like 'i$_nd_o' escape '$' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'i_dio' like 'i$_d%o' escape '$' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'i_dio' not like 'i$_d%o' escape '$' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'maca' like 'm%aca' escape '%' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'maca' not like 'm%aca' escape '%' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'ma%a' like 'm%a%%a' escape '%' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'ma%a' not like 'm%a%%a' escape '%' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'bear' like 'b_ear' escape '_' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'bear' not like 'b_ear' escape '_' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'be_r' like 'b_e__r' escape '_' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'be_r' not like 'b_e__r' escape '_' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'be_r' like '__e__r' escape '_' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'be_r' not like '__e__r' escape '_' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'hawkeye' ilike 'h%' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'hawkeye' not ilike 'h%' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'hawkeye' ilike 'H%' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'hawkeye' not ilike 'H%' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'hawkeye' ilike 'H%Eye' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'hawkeye' not ilike 'H%Eye' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'Hawkeye' ilike 'h%' as "true" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'Hawkeye' not ilike 'h%' as "false" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select 'unknown' || ' and unknown' as "Concat unknown types" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select cast('text' as text) || ' and unknown' as "Concat text to unknown type" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select cast('characters' as char(20)) || ' and text' as "Concat char to unknown type" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select cast('text' as text) || cast(' and characters' as char(20)) as "Concat text to char" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select cast('text' as text) || cast(' and varchar' as varchar(20)) as "Concat text to varchar" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: create table toasttest(f1 text) #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into toasttest values(repeat('1234567890',10000)) #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into toasttest values(repeat('1234567890',10000)) #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into toasttest values(repeat('1234567890',10000)) #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into toasttest values(repeat('1234567890',10000)) #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select substring(f1, -1, 5) from toasttest #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select substring(f1, 5, -1) from toasttest #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select substring(f1, 99995) from toasttest #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select substring(f1, 99995, 10) from toasttest #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: drop table toasttest #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: create table toasttest(f1 blob) #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into toasttest values(repeat('1234567890',10000)) #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: insert into toasttest values(repeat('1234567890',10000)) #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select substring(f1, -1, 5) from toasttest #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select substring(f1, 5, -1) from toasttest #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select substring(f1, 99995) from toasttest #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select substring(f1, 99995, 10) from toasttest #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: drop table toasttest #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select length('abcdef') as "length_6" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select locate('cd', 'abcdef') as "pos_3" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select locate('xy', 'abcdef') as "pos_0" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select replace('abcdef', 'de', '45') as "abc45f" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select replace('yabadabadoo', 'ba', '123') as "ya123da123doo" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select replace('yabadoo', 'bad', '') as "yaoo" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select split_part('joeuser@mydatabase','@',0) as "an error" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select split_part('joeuser@mydatabase','@',1) as "joeuser" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select split_part('joeuser@mydatabase','@',2) as "mydatabase" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select split_part('joeuser@mydatabase','@',3) as "empty string" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select split_part('@joeuser@mydatabase@','@',2) as "joeuser" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select md5('') = 'd41d8cd98f00b204e9800998ecf8427e' as "TRUE" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select md5('a') = '0cc175b9c0f1b6a831c399e269772661' as "TRUE" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select md5('abc') = '900150983cd24fb0d6963f7d28e17f72' as "TRUE" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select md5('message digest') = 'f96b697d7cb7938d525a2f31aaf161d0' as "TRUE" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select md5('abcdefghijklmnopqrstuvwxyz') = 'c3fcd3d76192e4007dfb496cca67e13b' as "TRUE" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select md5('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789') = 'd174ab98d277d9f5a5611c2c9f419d9f' as "TRUE" #2025-04-04 23:12:39: client0027: SQLrun: INFO: Executing: select md5('12345678901234567890123456789012345678901234567890123456789012345678901234567890') = '57edf4a22be3c955ac49da2e2107b67a' as "TRUE" #2025-04-04 23:12:39: 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 23:12:39: 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 23:12:39: client0028: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:39: client0028: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0028: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:39: client0028: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0028: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:39: client0028: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:39: client0028: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:39: client0028: SQLrun: INFO: Executing: select 'first line' #2025-04-04 23:12:39: client0029: 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 23:12:39: client0029: 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 23:12:39: client0029: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: create table char_tbl(f1 char(4)) #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('a') #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('ab') #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: insert into char_tbl (f1) values ('abcd') #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: create table varchar_tbl(f1 varchar(4)) #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('a') #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('ab') #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: insert into varchar_tbl (f1) values ('abcd') #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: create table text_tbl (f1 text) #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: insert into text_tbl values ('doh!') #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: insert into text_tbl values ('hi de ho neighbor') #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: select cast(f1 as text) as "text(char)" from char_tbl #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: select cast(f1 as text) as "text(varchar)" from varchar_tbl #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: select cast('namefield' as text) as "text(name)" #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: select cast(f1 as char(10)) as "char(text)" from text_tbl #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: select cast(f1 as char(20)) as "char(text)" from text_tbl #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: select cast(f1 as char(10)) as "char(varchar)" from varchar_tbl #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: select cast('namefield' as char(10)) as "char(name)" #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: select cast(f1 as varchar(3)) as "varchar(text)" from text_tbl #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: select cast(f1 as varchar(3)) as "varchar(char)" from char_tbl #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: select cast('namefield' as varchar(3)) as "varchar(name)" #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: drop table char_tbl #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: drop table varchar_tbl #2025-04-04 23:12:39: client0029: SQLrun: INFO: Executing: drop table text_tbl #2025-04-04 23:12:39: client0030: 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 23:12:39: client0030: 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 23:12:39: client0030: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'hawkeye' like 'h%' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'hawkeye' not like 'h%' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'hawkeye' like 'H%' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'hawkeye' not like 'H%' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'hawkeye' like 'indio%' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'hawkeye' not like 'indio%' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'hawkeye' like 'h%eye' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'hawkeye' not like 'h%eye' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'indio' like '_ndio' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'indio' not like '_ndio' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'indio' like 'in__o' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'indio' not like 'in__o' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'indio' like 'in_o' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'indio' not like 'in_o' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'hawkeye' like 'h%' escape '#' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'hawkeye' not like 'h%' escape '#' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'indio' like 'ind_o' escape '$' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'indio' not like 'ind_o' escape '$' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'h%' like 'h#%' escape '#' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'h%' not like 'h#%' escape '#' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'h%wkeye' like 'h#%' escape '#' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'h%wkeye' not like 'h#%' escape '#' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'h%wkeye' like 'h#%%' escape '#' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'h%wkeye' not like 'h#%%' escape '#' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'h%awkeye' like 'h#%a%k%e' escape '#' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'h%awkeye' not like 'h#%a%k%e' escape '#' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'indio' like '_ndio' escape '$' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'indio' not like '_ndio' escape '$' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'i_dio' like 'i$_d_o' escape '$' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'i_dio' not like 'i$_d_o' escape '$' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'i_dio' like 'i$_nd_o' escape '$' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'i_dio' not like 'i$_nd_o' escape '$' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'i_dio' like 'i$_d%o' escape '$' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'i_dio' not like 'i$_d%o' escape '$' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'maca' like 'm%aca' escape '%' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'maca' not like 'm%aca' escape '%' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'ma%a' like 'm%a%%a' escape '%' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'ma%a' not like 'm%a%%a' escape '%' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'bear' like 'b_ear' escape '_' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'bear' not like 'b_ear' escape '_' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'be_r' like 'b_e__r' escape '_' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'be_r' not like 'b_e__r' escape '_' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'be_r' like '__e__r' escape '_' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'be_r' not like '__e__r' escape '_' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'hawkeye' ilike 'h%' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'hawkeye' not ilike 'h%' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'hawkeye' ilike 'H%' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'hawkeye' not ilike 'H%' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'hawkeye' ilike 'H%Eye' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'hawkeye' not ilike 'H%Eye' as "false" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'Hawkeye' ilike 'h%' as "true" #2025-04-04 23:12:39: client0030: SQLrun: INFO: Executing: select 'Hawkeye' not ilike 'h%' as "false" #2025-04-04 23:12:39: client0031: 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 23:12:39: client0031: 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 23:12:39: client0031: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: create table int2_tbl(f1 smallint) #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('0 ') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into int2_tbl(f1) values (' 1234 ') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into int2_tbl(f1) values (' -1234') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('32767') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into int2_tbl(f1) values ('-32767') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: create table int4_tbl(f1 integer) #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into int4_tbl(f1) values (' 0 ') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('123456 ') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into int4_tbl(f1) values (' -123456') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('2147483647') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into int4_tbl(f1) values ('-2147483647') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: create table float8_tbl(f1 double) #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into float8_tbl(f1) values (' 0.0 ') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('1004.30 ') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into float8_tbl(f1) values (' -34.84') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('1.2345678901234e+200') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into float8_tbl(f1) values ('1.2345678901234e-200') #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: create table temp_float (f1 double) #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into temp_float (f1) #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into temp_float (f1) #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: select 10 as ten, f1 from temp_float #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: create table temp_int4 (f1 integer) #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into temp_int4 (f1) #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into temp_int4 (f1) #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: select 9 as nine, f1 from temp_int4 #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: create table temp_int2 (f1 smallint) #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into temp_int2 (f1) #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into temp_int2 (f1) #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: select 5 as five, f1 from temp_int2 #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: create table temp_group (f1 integer, f2 integer, f3 double) #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into temp_group #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: insert into temp_group #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: select distinct f1 as two from temp_group #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: select f1 as two, max(f3) as max_float, min(f3) as min_float #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: select f1 as two, max(f3) as max_float, min(f3) as min_float #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: select f1 as two, (max(f3) + 1) as max_plus_1, (min(f3) - 1) as min_minus_1 #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: select f1 as two, #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: drop table temp_int2 #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: drop table temp_int4 #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: drop table temp_float #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: drop table temp_group #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: drop table float8_tbl #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: drop table int4_tbl #2025-04-04 23:12:39: client0031: SQLrun: INFO: Executing: drop table int2_tbl #2025-04-04 23:12:39: client0032: 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 23:12:39: client0032: 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 23:12:39: client0032: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: create table date_tbl (f1 date) #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values ('1957-04-09') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values ('1957-06-13') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values ('1996-02-28') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values ('1996-02-29') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values ('1996-03-01') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values ('1996-03-02') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values ('1997-02-28') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values ('1997-02-29') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values ('1997-03-01') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values ('1997-03-02') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values ('2000-04-01') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values ('2000-04-02') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values ('2000-04-03') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values ('2038-04-08') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values ('2039-04-09') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values ('2040-04-10') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1 as "Fifteen" from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1 as "Nine" from date_tbl where f1 < '2000-01-01' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1 as "Three" from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: insert into date_tbl values (null) #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, "day"(f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, "month"(f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, "year"(f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, extract(day from f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, extract(week from f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, extract(month from f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, extract(quarter from f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, extract(year from f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, extract(century from f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, extract(epoch from f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, week(f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, weekofyear(f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, dayofmonth(f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, dayofweek(f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, dayofyear(f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, "hour"(f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, "minute"(f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, "second"(f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, extract(hour from f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, extract(minute from f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, extract(second from f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, cast(f1 as timestamp) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, "hour"(cast(f1 as timestamp)) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, "minute"(cast(f1 as timestamp)) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, "second"(cast(f1 as timestamp)) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, extract(hour from cast(f1 as timestamp)) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, extract(minute from cast(f1 as timestamp)) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, extract(second from cast(f1 as timestamp)) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, sql_sub(f1, cast('2001-12-12' as date)) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1, sql_sub(cast('2001-12-12' as date), f1) from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date 'January 8, 1999' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date '1999-01-08' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date '1999-01-18' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date '01/02/03' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date 'January 8, 99 BC' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date '99-Jan-08' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date '1999-Jan-08' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date '99 Jan 08' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date '1999 Jan 08' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date 'Jan 08 99' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date 'Jan 08 1999' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date '99-01-08' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date '1999-01-08' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date '99-08-01' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date '1999-08-01' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date '99 01 08' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date '1999 01 08' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date '99 08 01' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date '1999 08 01' #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select f1 - date '2000-01-01' as "Days From 2K" from date_tbl #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(century from date '0101-12-31 BC') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(century from date '0100-12-31 BC') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(century from date '0001-12-31 BC') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(century from date '0001-01-01') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(century from date '0001-01-01 AD') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(century from date '1900-12-31') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(century from date '1901-01-01') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(century from date '2000-12-31') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(century from date '2001-01-01') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(decade from date '1994-12-25') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(decade from date '0010-01-01') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(decade from date '0009-12-31') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(decade from date '0001-01-01 BC') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(decade from date '0002-12-31 BC') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(decade from date '0011-01-01 BC') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(decade from date '0012-12-31 BC') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select extract(century from timestamp '1970-03-20 04:30:00.00000') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date_trunc('MILLENNIUM', timestamp '1970-03-20 04:30:00.00000') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date_trunc('MILLENNIUM', date '1970-03-20') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date_trunc('CENTURY', timestamp '1970-03-20 04:30:00.00000') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date_trunc('CENTURY', date '1970-03-20') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date_trunc('CENTURY', date '2004-08-10') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date_trunc('CENTURY', date '0002-02-04') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date_trunc('CENTURY', date '0055-08-10 BC') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date_trunc('DECADE', date '1993-12-25') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date_trunc('DECADE', date '0004-12-25') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select date_trunc('DECADE', date '0002-12-31 BC') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select str_to_date('1995-04', '%Y-%m') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: select str_to_date('1995', '%Y') #2025-04-04 23:12:39: client0032: SQLrun: INFO: Executing: drop table date_tbl #2025-04-04 23:12:39: client0033: 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 23:12:39: client0033: 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 23:12:39: client0033: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: set time zone interval '1' hour #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: create table time_tbl (f1 time(2)) #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: insert into time_tbl values ('00:00') #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: insert into time_tbl values ('01:00') #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: insert into time_tbl values ('02:03 PST') #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: insert into time_tbl values ('11:59 EDT') #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: insert into time_tbl values ('12:00') #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: insert into time_tbl values ('12:01') #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: insert into time_tbl values ('23:59') #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: insert into time_tbl values ('11:59:59.99 AM') #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: insert into time_tbl values ('11:59:59.99 PM') #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select f1 as "Time" from time_tbl #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select f1 as "Three" from time_tbl where f1 < '05:06:07' #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select f1 as "Six" from time_tbl where f1 > '05:06:07' #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select f1 as "None" from time_tbl where f1 < '00:00' #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select f1 as "Nine" from time_tbl where f1 >= '00:00' #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: insert into time_tbl values (null) #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select f1, "hour"(f1) from time_tbl #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select f1, "minute"(f1) from time_tbl #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select f1, "second"(f1) from time_tbl #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select f1, extract(hour from f1) from time_tbl #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select f1, extract(minute from f1) from time_tbl #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select f1, extract(second from f1) from time_tbl #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select f1, extract(epoch from f1) from time_tbl #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select f1, sql_sub(f1, cast('23:22:21' as time)) from time_tbl #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: select f1, sql_sub(cast('23:22:21' as time), f1) from time_tbl #2025-04-04 23:12:39: client0033: SQLrun: INFO: Executing: drop table time_tbl #2025-04-04 23:12:39: client0034: 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 23:12:39: client0034: 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 23:12:39: client0034: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: create table timetz_tbl (f1 time(2) with time zone) #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: insert into timetz_tbl values ('00:01 PDT') #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: insert into timetz_tbl values ('01:00 PDT') #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: insert into timetz_tbl values ('02:03 PDT') #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: insert into timetz_tbl values ('07:07 PST') #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: insert into timetz_tbl values ('08:08 EDT') #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: insert into timetz_tbl values ('11:59 PDT') #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: insert into timetz_tbl values ('12:00 PDT') #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: insert into timetz_tbl values ('12:01 PDT') #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: insert into timetz_tbl values ('23:59 PDT') #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: insert into timetz_tbl values ('11:59:59.99 PM PDT') #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: insert into timetz_tbl values (null) #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: set time zone interval '+01:00' hour to minute #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1 as "Time TZ" from timetz_tbl #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1 as "Three" from timetz_tbl where f1 < '05:06:07-07' #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1 as "Seven" from timetz_tbl where f1 > '05:06:07-07' #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1 as "None" from timetz_tbl where f1 < '00:00-07' #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1 as "Ten" from timetz_tbl where f1 >= '00:00-07' #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: set time zone interval '+04:30' hour to minute #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1 as "Time TZ" from timetz_tbl order by 1 #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: set time zone interval '+14:00' hour to minute #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1 as "Time TZ" from timetz_tbl order by 1 #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: set time zone interval '-07:00' hour to minute #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1 as "Time TZ" from timetz_tbl order by 1 #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: set time zone interval '+01:00' hour to minute #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1, "hour"(f1) from timetz_tbl #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1, "minute"(f1) from timetz_tbl #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1, "second"(f1) from timetz_tbl #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1, extract(hour from f1) from timetz_tbl #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1, extract(minute from f1) from timetz_tbl #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1, extract(second from f1) from timetz_tbl #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1, extract(epoch from f1) from timetz_tbl #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1, sql_sub(f1, cast('23:22:21' as timetz)) from timetz_tbl #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: select f1, sql_sub(cast('23:22:21' as timetz), f1) from timetz_tbl #2025-04-04 23:12:39: client0034: SQLrun: INFO: Executing: drop table timetz_tbl #2025-04-04 23:12:39: 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 23:12:39: 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 23:12:39: client0035: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: set time zone interval '1' hour #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: create table timestamp_tbl ( d1 timestamp(2) ) #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: create table test_now (test_now timestamp(2)) #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: create table test_current_date (test_current_date date) #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into test_now values (now) #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into test_current_date values (current_date) #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ((select test_now from test_now)) #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values (cast((select test_now from test_now) as timestamp)) #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values (cast((select test_current_date from test_current_date) as timestamp)) #2025-04-04 23:12:39: client0035: 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 23:12:39: client0035: 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 23:12:39: client0035: 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 23:12:39: client0035: 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 23:12:39: client0035: 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 23:12:39: client0035: SQLrun: INFO: Executing: select count(*) as none from timestamp_tbl where d1 = cast((select test_now from test_now) as timestamp) #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('tomorrow EST') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('tomorrow zulu') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: delete from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: start transaction #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ((select test_now from test_now)) #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ((select test_now from test_now)) #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select count(*) as two from timestamp_tbl where d1 <= cast((select test_now from test_now) as timestamp) #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: commit #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: delete from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: drop table test_now #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: drop table test_current_date #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('-infinity') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('infinity') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('epoch') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('invalid') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Mon Feb 10 17:32:01 1997 PST') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Invalid Abstime') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Undefined Abstime') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Mon Feb 10 17:32:01.000001 1997 PST') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Mon Feb 10 17:32:01.999999 1997 PST') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Mon Feb 10 17:32:01.4 1997 PST') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Mon Feb 10 17:32:01.5 1997 PST') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Mon Feb 10 17:32:01.6 1997 PST') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997-01-02') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997-01-02 03:04:05') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997-02-10 17:32:01-08') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997-02-10 17:32:01-0800') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997-02-10 17:32:01 -08:00') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('19970210 173201 -0800') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997-06-10 17:32:01 -07:00') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('2001-09-22T18:19:20') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('2000-03-15 08:14:01 GMT+8') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('2000-03-15 13:14:02 GMT-1') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('2000-03-15 12:14:03 GMT -2') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('2000-03-15 03:14:04 EST+3') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('2000-03-15 02:14:05 EST +2:00') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 10 17:32:01 1997 -0800') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 10 17:32:01 1997') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 10 5:32PM 1997') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997/02/10 17:32:01-0800') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997-02-10 17:32:01 PST') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb-10-1997 17:32:01 PST') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('02-10-1997 17:32:01 PST') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('19970210 173201 PST') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('97FEB10 5:32:01PM UTC') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('97/02/10 17:32:01 UTC') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997.041 17:32:01 UTC') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('1997-06-10 18:32:01 PDT') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 10 17:32:01 1997') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 11 17:32:01 1997') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 12 17:32:01 1997') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 13 17:32:01 1997') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 14 17:32:01 1997') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 15 17:32:01 1997') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 1997') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 0097 BC') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 0097') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 0597') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 1097') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 1697') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 1797') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 1897') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 1997') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 2097') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 28 17:32:01 1996') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 29 17:32:01 1996') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Mar 01 17:32:01 1996') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Dec 30 17:32:01 1996') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Dec 31 17:32:01 1996') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Jan 01 17:32:01 1997') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 28 17:32:01 1997') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 29 17:32:01 1997') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Mar 01 17:32:01 1997') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Dec 30 17:32:01 1997') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Dec 31 17:32:01 1997') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Dec 31 17:32:01 1999') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Jan 01 17:32:01 2000') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Dec 31 17:32:01 2000') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Jan 01 17:32:01 2001') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 -0097') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values ('Feb 16 17:32:01 5097 BC') #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select '' as "64", d1 from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select '' as "48", d1 from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select '' as "15", d1 from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select '' as one, d1 from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select '' as "63", d1 from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select '' as "16", d1 from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select '' as "49", d1 from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select '' as "54", d1 - cast('1997-01-02' as timestamp) as diff #2025-04-04 23:12:39: client0035: 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 23:12:39: client0035: SQLrun: INFO: Executing: select '' as "54", d1 - cast('1997-01-02' as timestamp) as diff #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: insert into timestamp_tbl values (null) #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, "day"(d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, "month"(d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, "year"(d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, extract(day from d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, extract(week from d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, extract(month from d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, extract(quarter from d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, extract(year from d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, extract(century from d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, extract(epoch from d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, week(d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, weekofyear(d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, dayofmonth(d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, dayofweek(d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, dayofyear(d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, "hour"(d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, "minute"(d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, "second"(d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, extract(hour from d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, extract(minute from d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, extract(second from d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, sql_sub(d1, cast('2001-12-12 23:22:21' as timestamp)) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: select d1, sql_sub(cast('2001-12-12 23:22:21' as timestamp), d1) from timestamp_tbl #2025-04-04 23:12:39: client0035: SQLrun: INFO: Executing: drop table timestamp_tbl #2025-04-04 23:12:39: 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 23:12:39: 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 23:12:39: client0036: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: set time zone interval '1' hour #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: create table timestamptz_tbl ( d1 timestamp(2) with time zone) #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: create table test_now (test_now timestamp(2) with time zone) #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: create table test_current_date (test_current_date date) #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into test_now values (now) #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into test_current_date values (current_date) #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ((select test_now from test_now)) #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ((select test_now from test_now)) #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values (cast((select test_current_date from test_current_date) as timestamptz)) #2025-04-04 23:12:39: client0036: 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 23:12:39: client0036: 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 23:12:39: client0036: 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 23:12:39: client0036: 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 23:12:39: client0036: 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 23:12:39: client0036: SQLrun: INFO: Executing: select count(*) as none from timestamptz_tbl where d1 = cast((select test_now from test_now) as timestamptz) #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('tomorrow EST') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('tomorrow zulu') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: delete from timestamptz_tbl #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: start transaction #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ((select test_now from test_now)) #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ((select test_now from test_now)) #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: select count(*) as two from timestamptz_tbl where d1 <= cast((select test_now from test_now) as timestamptz) #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: commit #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: delete from timestamptz_tbl #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: drop table test_now #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: drop table test_current_date #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('-infinity') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('infinity') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('epoch') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('invalid') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Mon Feb 10 17:32:01 1997 PST') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Invalid Abstime') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Undefined Abstime') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Mon Feb 10 17:32:01.000001 1997 PST') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Mon Feb 10 17:32:01.999999 1997 PST') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Mon Feb 10 17:32:01.4 1997 PST') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Mon Feb 10 17:32:01.5 1997 PST') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Mon Feb 10 17:32:01.6 1997 PST') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997-01-02') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997-01-02 03:04:05') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997-02-10 17:32:01-08') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997-02-10 17:32:01-0800') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997-02-10 17:32:01 -08:00') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('19970210 173201 -0800') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997-06-10 17:32:01 -07:00') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('2001-09-22T18:19:20') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('2000-03-15 08:14:01 GMT+8') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('2000-03-15 13:14:02 GMT-1') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('2000-03-15 12:14:03 GMT -2') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('2000-03-15 03:14:04 EST+3') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('2000-03-15 02:14:05 EST +2:00') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 10 17:32:01 1997 -0800') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 10 17:32:01 1997') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 10 5:32PM 1997') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997/02/10 17:32:01-0800') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997-02-10 17:32:01 PST') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb-10-1997 17:32:01 PST') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('02-10-1997 17:32:01 PST') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('19970210 173201 PST') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('97FEB10 5:32:01PM UTC') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('97/02/10 17:32:01 UTC') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997.041 17:32:01 UTC') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('1997-06-10 18:32:01 PDT') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 10 17:32:01 1997') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 11 17:32:01 1997') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 12 17:32:01 1997') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 13 17:32:01 1997') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 14 17:32:01 1997') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 15 17:32:01 1997') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 1997') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 0097 BC') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 0097') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 0597') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 1097') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 1697') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 1797') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 1897') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 1997') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 2097') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 28 17:32:01 1996') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 29 17:32:01 1996') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Mar 01 17:32:01 1996') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Dec 30 17:32:01 1996') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Dec 31 17:32:01 1996') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Jan 01 17:32:01 1997') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 28 17:32:01 1997') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 29 17:32:01 1997') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Mar 01 17:32:01 1997') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Dec 30 17:32:01 1997') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Dec 31 17:32:01 1997') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Dec 31 17:32:01 1999') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Jan 01 17:32:01 2000') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Dec 31 17:32:01 2000') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Jan 01 17:32:01 2001') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 -0097') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values ('Feb 16 17:32:01 5097 BC') #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: insert into timestamptz_tbl values (null) #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: set time zone interval '+01:00' hour to minute #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: select '' as "17", d1 from timestamptz_tbl #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: set time zone interval '+04:30' hour to minute #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: select d1 as "Timestamp TZ" from timestamptz_tbl order by 1 #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: set time zone interval '+14:00' hour to minute #2025-04-04 23:12:39: client0036: SQLrun: INFO: Executing: select d1 as "Timestamp TZ" from timestamptz_tbl order by 1 #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: set time zone interval '-07:00' hour to minute #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1 as "Timestamp TZ" from timestamptz_tbl order by 1 #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: set time zone interval '+01:00' hour to minute #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select '' as "48", d1 from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select '' as "15", d1 from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select '' as one, d1 from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select '' as "63", d1 from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select '' as "16", d1 from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select '' as "49", d1 from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select '' as "54", d1 - cast('1997-01-02' as timestamptz) as diff #2025-04-04 23:12:40: client0036: 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 23:12:40: client0036: SQLrun: INFO: Executing: select '' as "54", d1 - cast('1997-01-02' as timestamptz) as diff #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, "day"(d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, "month"(d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, "year"(d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, extract(day from d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, extract(week from d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, extract(month from d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, extract(quarter from d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, extract(year from d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, extract(century from d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, extract(epoch from d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, week(d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, weekofyear(d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, dayofmonth(d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, dayofweek(d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, dayofyear(d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, "hour"(d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, "minute"(d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, "second"(d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, extract(hour from d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, extract(minute from d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, extract(second from d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, sql_sub(d1, cast('2001-12-12 23:22:21' as timestamptz)) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: select d1, sql_sub(cast('2001-12-12 23:22:21' as timestamptz), d1) from timestamptz_tbl #2025-04-04 23:12:40: client0036: SQLrun: INFO: Executing: drop table timestamptz_tbl #2025-04-04 23:12:40: client0037: 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 23:12:40: client0037: 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 23:12:40: client0037: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select cast('01:00' as interval second) as "One hour" #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select cast('+02:00' as interval second) as "Two hours" #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select cast('-08:00' as interval second) as "Eight hours" #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select cast('-05' as interval second) as "Five hours" #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select cast('-1 +02:03' as interval second) as "22 hours ago..." #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select cast('-1 days +02:03' as interval second) as "22 hours ago..." #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select cast('10 years -11 month -12 days +13:14' as interval second) as "9 years..." #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: create table interval_tbl (f1 interval second) #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('1.2345') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('123456789012345678') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('1234567890123456789') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('12345678901234567890') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('1 day 2 hours 3 minutes 4 seconds') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('6 years') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('5 months') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('5 months 12 hours') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('@ 1 minute') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('@ 5 hour') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('@ 10 day') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('@ 34 year') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('@ 3 months') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('@ 14 seconds ago') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('badly formatted interval') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: insert into interval_tbl (f1) values ('@ 30 eons ago') #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select '' as ten, interval_tbl.* from interval_tbl #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select '' as nine, interval_tbl.* from interval_tbl #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select '' as three, interval_tbl.* from interval_tbl #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select '' as three, interval_tbl.* from interval_tbl #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select '' as one, interval_tbl.* from interval_tbl #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select '' as five, interval_tbl.* from interval_tbl #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select '' as nine, interval_tbl.* from interval_tbl #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select '' as fortyfive, r1.*, r2.* #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select '' as ten, interval_tbl.* from interval_tbl order by f1 desc #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select avg(f1) from interval_tbl #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select min(f1) from interval_tbl #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select max(f1) from interval_tbl #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select count(f1) from interval_tbl #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: select count(distinct f1) from interval_tbl #2025-04-04 23:12:40: client0037: SQLrun: INFO: Executing: drop table interval_tbl #2025-04-04 23:12:40: client0038: 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 23:12:40: client0038: 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 23:12:40: client0038: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: create table reltime_tbl (f1 interval second) #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values (interval '1' second) #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values (interval '10' second) #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values (interval '100' second) #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values (interval '1000' second) #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values (interval '10000' second) #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values (interval '100000' second) #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values ('@ 1 minute') #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values ('@ 5 hours') #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values ('@ 10 days') #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values ('@ 34 years') #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values ('@ 3 months') #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values ('@ 14 seconds ago') #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values ('badly formatted reltime') #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: insert into reltime_tbl (f1) values ('@ 30 eons ago') #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: select '' as six, reltime_tbl.* from reltime_tbl #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: select '' as five, reltime_tbl.* from reltime_tbl #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: select '' as three, reltime_tbl.* from reltime_tbl #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: select '' as three, reltime_tbl.* from reltime_tbl #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: select '' as one, reltime_tbl.* from reltime_tbl #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: select '' as two, reltime_tbl.* from reltime_tbl #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: select '' as five, reltime_tbl.* from reltime_tbl #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: select '' as fifteen, r1.*, r2.* #2025-04-04 23:12:40: client0038: SQLrun: INFO: Executing: drop table reltime_tbl #2025-04-04 23:12:40: client0039: 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 23:12:40: client0039: 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 23:12:40: client0039: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: create table inet_tbl (c inet, i inet) #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('192.168.1', '192.168.1.226/24') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('192.168.1.0/26', '192.168.1.226') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('192.168.1', '192.168.1.0/24') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('192.168.1', '192.168.1.0/25') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('192.168.1', '192.168.1.255/24') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('192.168.1', '192.168.1.255/25') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10', '10.1.2.3/8') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10.0.0.0', '10.1.2.3/8') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10.1.2.3', '10.1.2.3/32') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10.1.2', '10.1.2.3/24') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10.1', '10.1.2.3/16') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10', '10.1.2.3/8') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10', '11.1.2.3/8') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10', '9.1.2.3/8') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10:23::f1', '10:23::f1/64') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('10:23::8000/113', '10:23::ffff') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('::ffff:1.2.3.4', '::4.3.2.1/24') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('192.168.1.2/30', '192.168.1.226') #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: insert into inet_tbl (c, i) values ('1234::1234::1234', '::1.2.3.4') #2025-04-04 23:12:40: client0039: 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 23:12:40: client0039: 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 23:12:40: client0039: SQLrun: INFO: Executing: select '' as ten, c as cidr, i as inet from inet_tbl #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: select '' as ten, c as cidr, broadcast(c), #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: select '' as ten, c as cidr, network(c) as "network(cidr)", #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: select '' as ten, c as cidr, masklen(c) as "masklen(cidr)", #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: select '' as four, c as cidr, masklen(c) as "masklen(cidr)", #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: select '' as six, c as cidr, i as inet from inet_tbl #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: select '' as ten, i, c, #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: create index inet_idx1 on inet_tbl(i) #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: select * from inet_tbl where i<<cast('192.168.1.0/24' as inet) #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: select * from inet_tbl where i<<=cast('192.168.1.0/24' as inet) #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: drop index inet_idx1 #2025-04-04 23:12:40: client0039: SQLrun: INFO: Executing: drop table inet_tbl #2025-04-04 23:12:40: client0040: 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 23:12:40: client0040: 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 23:12:40: client0040: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:40: client0040: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:40: client0040: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:40: client0040: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:40: client0040: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:40: client0040: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:40: client0040: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:40: client0040: SQLrun: INFO: Executing: select 'trailing' as first #2025-04-04 23:12:40: client0040: SQLrun: INFO: Executing: select 'embedded' as "second" #2025-04-04 23:12:40: client0040: SQLrun: INFO: Executing: select 'both' as third #2025-04-04 23:12:40: client0040: SQLrun: INFO: Executing: select 'before multi-line' as fourth #2025-04-04 23:12:40: client0040: SQLrun: INFO: Executing: select 'after multi-line' as fifth #2025-04-04 23:12:40: client0041: 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 23:12:40: client0041: 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 23:12:40: client0041: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:40: client0041: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:40: client0041: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:40: client0041: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:40: client0041: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:40: client0041: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:40: client0041: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:40: client0041: SQLrun: INFO: Executing: set time zone interval '+1:0' hour to minute #2025-04-04 23:12:40: client0041: SQLrun: INFO: Executing: select current_timezone #2025-04-04 23:12:40: client0041: SQLrun: INFO: Executing: select timestamp with time zone '2001-12-27 04:05:06.789-0800' #2025-04-04 23:12:40: client0041: SQLrun: INFO: Executing: select timestamp with time zone '2001/12/27 04:05:06.789-0800' #2025-04-04 23:12:40: client0041: SQLrun: INFO: Executing: create table temp_timestamp (f1 timestamp with time zone) #2025-04-04 23:12:40: client0041: SQLrun: INFO: Executing: select '' as "16", f1 as "timestamp" #2025-04-04 23:12:40: client0041: SQLrun: INFO: Executing: select '' as "16", d.f1 as "timestamp", #2025-04-04 23:12:40: client0041: SQLrun: INFO: Executing: select '' as "226", d1.f1 as timestamp1, d2.f1 as timestamp2, d1.f1 - d2.f1 as difference #2025-04-04 23:12:40: client0041: SQLrun: INFO: Executing: drop table temp_timestamp #2025-04-04 23:12:40: client0042: 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 23:12:40: client0042: 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 23:12:40: client0042: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:40: client0042: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:40: client0042: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:40: client0042: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:40: client0042: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:40: client0042: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:40: client0042: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:40: client0042: SQLrun: INFO: Executing: create table inserttest (col1 integer, col2 integer not null, col3 text default 'testing') #2025-04-04 23:12:40: client0042: SQLrun: INFO: Executing: insert into inserttest (col2, col3) values (3, 'DEFAULT') #2025-04-04 23:12:40: client0042: SQLrun: INFO: Executing: insert into inserttest (col1, col2, col3) values (null, 5, 'DEFAULT') #2025-04-04 23:12:40: client0042: SQLrun: INFO: Executing: insert into inserttest values (null, 5, 'test') #2025-04-04 23:12:40: client0042: SQLrun: INFO: Executing: insert into inserttest (col1, col2) values (null, 7) #2025-04-04 23:12:40: client0042: SQLrun: INFO: Executing: select * from inserttest #2025-04-04 23:12:40: client0042: SQLrun: INFO: Executing: select * from inserttest #2025-04-04 23:12:40: client0042: SQLrun: INFO: Executing: drop table inserttest #2025-04-04 23:12:40: client0043: 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 23:12:40: client0043: 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 23:12:40: client0043: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:40: client0043: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:40: client0043: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:40: client0043: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:40: client0043: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:40: client0043: SQLrun: INFO: Executing: call sys.setsessiontimeout(180) #2025-04-04 23:12:40: client0043: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:40: client0043: SQLrun: INFO: Executing: start transaction #2025-04-04 23:12:40: client0043: 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 23:12:40: client0043: 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 23:12:40: client0043: 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 23:12:40: client0043: 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 23:12:40: client0043: SQLrun: INFO: Executing: copy 1000 records into "sys"."onek" from stdin using delimiters E'\t',E'\n','"'; #2025-04-04 23:12:40: client0043: SQLrun: INFO: Executing: copy 10000 records into "sys"."tenk1" from stdin using delimiters E'\t',E'\n','"'; #2025-04-04 23:12:40: client0043: SQLrun: INFO: Executing: copy 10000 records into "sys"."tenk2" from stdin using delimiters E'\t',E'\n','"'; #2025-04-04 23:12:40: client0043: SQLrun: INFO: Executing: copy 1000 records into "sys"."bprime" from stdin using delimiters E'\t',E'\n','"'; #2025-04-04 23:12:40: client0043: SQLrun: INFO: Executing: delete from bprime where unique2 >= 1000 #2025-04-04 23:12:40: client0043: SQLrun: INFO: Executing: commit #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: create table hobbies_r ( #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: create table equipment_r ( #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: create table person ( #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: create table emp ( #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: create table student ( #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: create table stud_emp ( #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: create table city ( #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: create table dept ( #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: create table slow_emp4000 ( #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: create table fast_emp4000 ( #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: create table road ( #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: create table ihighway ( #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: create table shighway ( #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: create table real_city ( #2025-04-04 23:12:40: client0052: SQLrun: INFO: Executing: create table a_star ( #2025-04-04 23:12:41: client0052: SQLrun: INFO: Executing: create table b_star ( #2025-04-04 23:12:41: client0052: SQLrun: INFO: Executing: create table c_star ( #2025-04-04 23:12:41: client0052: SQLrun: INFO: Executing: create table d_star ( #2025-04-04 23:12:41: client0052: SQLrun: INFO: Executing: create table e_star ( #2025-04-04 23:12:41: client0052: SQLrun: INFO: Executing: create table f_star ( #2025-04-04 23:12:41: client0052: SQLrun: INFO: Executing: create table aggtest ( #2025-04-04 23:12:41: client0052: SQLrun: INFO: Executing: create table hash_i4_heap ( #2025-04-04 23:12:41: client0052: SQLrun: INFO: Executing: create table hash_name_heap ( #2025-04-04 23:12:41: client0052: SQLrun: INFO: Executing: create table hash_txt_heap ( #2025-04-04 23:12:41: client0052: SQLrun: INFO: Executing: create table hash_f8_heap ( #2025-04-04 23:12:41: client0052: SQLrun: INFO: Executing: create table bt_i4_heap ( #2025-04-04 23:12:41: client0052: SQLrun: INFO: Executing: create table bt_name_heap ( #2025-04-04 23:12:41: client0052: SQLrun: INFO: Executing: create table bt_txt_heap ( #2025-04-04 23:12:41: client0052: SQLrun: INFO: Executing: create table bt_f8_heap ( #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into tenk2 select * from tenk1 #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: create table onek2 as #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into fast_emp4000 (select * from slow_emp4000) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into hobbies_r (name, person) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into hobbies_r (name, person) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into hobbies_r (name) values ('skywalking') #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into equipment_r (name, hobby) values ('advil', 'posthacking') #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into equipment_r (name, hobby) values ('peet''s coffee', 'posthacking') #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into equipment_r (name, hobby) values ('hightops', 'basketball') #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into equipment_r (name, hobby) values ('guts', 'skywalking') #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: create table ramp as #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into ihighway #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into shighway (name, thepath) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: update shighway #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into a_star (class, a) values ('a', 1) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into a_star (class, a) values ('a', 2) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into a_star (class) values ('a') #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into b_star (class, a, b) values ('b', 3, cast('mumble' as text)) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into b_star (class, a) values ('b', 4) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into b_star (class, b) values ('b', cast('bumble' as text)) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into b_star (class) values ('b') #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into c_star (class, a, c) values ('c', 5, cast('hi mom' as string)) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into c_star (class, a) values ('c', 6) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into c_star (class, c) values ('c', cast('hi paul' as string)) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into c_star (class) values ('c') #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into d_star (class, a, b, c, d) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into d_star (class, a, b, c) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into d_star (class, a, b, d) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into d_star (class, a, c, d) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into d_star (class, b, c, d) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into d_star (class, a, b) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into d_star (class, a, c) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into d_star (class, a, d) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into d_star (class, b, c) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into d_star (class, b, d) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into d_star (class, c, d) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into d_star (class, a) values ('d', 14) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into d_star (class, b) values ('d', cast('jumble' as text)) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into d_star (class, c) values ('d', cast('hi jolly' as string)) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into d_star (class, d) values ('d', cast('1000000.0000001' as double)) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into d_star (class) values ('d') #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into e_star (class, a, c, e) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into e_star (class, a, c) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into e_star (class, a, e) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into e_star (class, c, e) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into e_star (class, a) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into e_star (class, c) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into e_star (class, e) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into f_star (class, a, c, e, f) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into f_star (class, a, c, e) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into f_star (class, a, c, f) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into f_star (class, a, e, f) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into f_star (class, c, e, f) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into f_star (class, a, c) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into f_star (class, a, e) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into f_star (class, a, f) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into f_star (class, c, e) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into f_star (class, c, f) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into f_star (class, e, f) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into f_star (class, a) values ('f', 27) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into f_star (class, c) values ('f', cast('hi carl' as string)) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into f_star (class, e) values ('f', cast('-12' as smallint)) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into f_star (class, f) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into f_star (class) values ('f') #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: create table iportaltest ( #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into iportaltest (i, d, p) #2025-04-04 23:12:41: client0053: SQLrun: INFO: Executing: insert into iportaltest (i, d, p) #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: create view street as #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: create view iexit as #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: create view toyemp as #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: create table viewtest_tbl (a int, b int) #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: insert into viewtest_tbl values (5, 10), (10, 15), (15, 20), (20, 25) #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: create view viewtest as #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: create or replace view viewtest as #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: drop view viewtest #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: create view viewtest as #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: select * from viewtest #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: create or replace view viewtest as #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: drop view viewtest #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: create view viewtest as #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: select * from viewtest #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: create or replace view viewtest as #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: drop view viewtest #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: create view viewtest as #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: create or replace view viewtest as #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: drop view viewtest #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: create view viewtest as #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: create or replace view viewtest as #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: drop view viewtest #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: create view viewtest as #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: drop view viewtest #2025-04-04 23:12:41: client0054: SQLrun: INFO: Executing: drop table viewtest_tbl #2025-04-04 23:12:41: client0055: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:41: client0055: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:41: client0055: SQLrun: INFO: Executing: select * from street #2025-04-04 23:12:41: client0055: SQLrun: INFO: Executing: select name, thepath from iexit order by 1, 2 #2025-04-04 23:12:41: client0055: SQLrun: INFO: Executing: select * from toyemp where name = 'sharon' #2025-04-04 23:12:41: client0056: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:41: client0056: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:41: client0057: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:41: client0057: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: create table case_tbl ( #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: create table case2_tbl ( #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: insert into case_tbl values (1, 10.1) #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: insert into case_tbl values (2, 20.2) #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: insert into case_tbl values (3, -30.3) #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: insert into case_tbl values (4, null) #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: insert into case2_tbl values (1, -1) #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: insert into case2_tbl values (2, -2) #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: insert into case2_tbl values (3, -3) #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: insert into case2_tbl values (2, -4) #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: insert into case2_tbl values (1, null) #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: insert into case2_tbl values (null, -6) #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select '3' as "One", #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select '<NULL>' as "One", #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select '3' as "One", #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select '4' as "One", #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select '6' as "One", #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select case 'a' when 'a' then 1 else 2 end #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select '' as "Five", #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select '' as "Five", #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select '' as "Five", i as "Value", #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select '' as "Five", #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select * from case_tbl where coalesce(f,i) = 4 #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select * from case_tbl where nullif(f,i) = 2 #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select distinct coalesce(a.f, b.i, b.j) #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select * #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select distinct '' as siksteen, nullif(a.i,b.i) as "NULLIF(a.i,b.i)", #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select '' as "Two", * #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: update case_tbl #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select * from case_tbl #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: update case_tbl #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select * from case_tbl #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: update case_tbl #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: select * from case_tbl #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: drop table case_tbl #2025-04-04 23:12:41: client0058: SQLrun: INFO: Executing: drop table case2_tbl #2025-04-04 23:12:41: client0059: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:41: client0059: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:41: client0059: SQLrun: INFO: Executing: select count(*) from onek #2025-04-04 23:12:41: client0059: SQLrun: INFO: Executing: create temporary table random_tbl( random double) #2025-04-04 23:12:41: client0059: SQLrun: INFO: Executing: insert into random_tbl select count(*) as random #2025-04-04 23:12:41: client0059: SQLrun: INFO: Executing: drop table random_tbl #2025-04-04 23:12:41: client0059: SQLrun: INFO: Executing: create temporary table random_tbl( random bigint) #2025-04-04 23:12:41: client0059: SQLrun: INFO: Executing: insert into random_tbl select count(*) as random #2025-04-04 23:12:41: client0059: SQLrun: INFO: Executing: insert into random_tbl (random) #2025-04-04 23:12:41: client0059: SQLrun: INFO: Executing: insert into random_tbl (random) #2025-04-04 23:12:41: client0059: SQLrun: INFO: Executing: insert into random_tbl (random) #2025-04-04 23:12:41: client0059: SQLrun: INFO: Executing: select random, count(random) from random_tbl #2025-04-04 23:12:41: client0059: SQLrun: INFO: Executing: select avg(random) from random_tbl #2025-04-04 23:12:41: client0060: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:41: client0060: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:41: client0060: SQLrun: INFO: Executing: select '' as two, unique1, unique2, stringu1 #2025-04-04 23:12:41: client0060: SQLrun: INFO: Executing: select '' as five, unique1, unique2, stringu1 #2025-04-04 23:12:41: client0060: SQLrun: INFO: Executing: select '' as two, unique1, unique2, stringu1 #2025-04-04 23:12:41: client0060: SQLrun: INFO: Executing: select '' as three, unique1, unique2, stringu1 #2025-04-04 23:12:41: client0060: SQLrun: INFO: Executing: select '' as zero, unique1, unique2, stringu1 #2025-04-04 23:12:41: client0060: SQLrun: INFO: Executing: select '' as eleven, unique1, unique2, stringu1 #2025-04-04 23:12:41: client0060: SQLrun: INFO: Executing: select '' as ten, unique1, unique2, stringu1 #2025-04-04 23:12:41: client0060: SQLrun: INFO: Executing: select '' as five, unique1, unique2, stringu1 #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create table tmp (initial integer) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column a integer default 3 #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column b string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column c text #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column d double #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column e float #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column f smallint #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column g string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column h string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column i char #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column j string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column k integer #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column l string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column m string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column n string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column p string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column q string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column r string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column s string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column t string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column u string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column v timestamp #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column w interval second #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column x string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column y string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column z string #2025-04-04 23:12:41: client0061: 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 23:12:41: client0061: SQLrun: INFO: Executing: select * from tmp #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: drop table tmp #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create table tmp ( #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column a integer #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column b string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column c text #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column d double #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column e float #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column f smallint #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column g string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column h string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column i char #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column j string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column k integer #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column l string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column m string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column n string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column p string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column q string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column r string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column s string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column t string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column u string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column v timestamp #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column w interval second #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column x string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column y string #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp add column z string #2025-04-04 23:12:41: client0061: 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 23:12:41: client0061: SQLrun: INFO: Executing: select * from tmp #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: drop table tmp #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create table tmp (regtable int) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create temp table tmp (tmptable int) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp rename to tmp_new #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: select * from tmp #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: select * from tmp_new #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp rename to tmp_new2 #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: select * from tmp_new #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: select * from tmp_new2 #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: drop table tmp_new #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: drop table tmp_new2 #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create view tmp_view (unique1) as select unique1 from tenk1 #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: analyze tenk1 #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: select unique1 from tenk1 where unique1 < 5 #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table stud_emp rename to pg_toast_stud_emp #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table pg_toast_stud_emp rename to stud_emp #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create table tmp2 (a int primary key) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create table tmp3 (a int, b int) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create table tmp4 (a int, b int, unique(a,b)) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create table tmp5 (a int, b int) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: insert into tmp2 values (1) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: insert into tmp2 values (2) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: insert into tmp2 values (3) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: insert into tmp2 values (4) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: insert into tmp3 values (1,10) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: insert into tmp3 values (1,20) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: insert into tmp3 values (5,50) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp3 add constraint tmpconstr foreign key (a) references tmp2 match full #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: delete from tmp3 where a=5 #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table tmp3 add constraint tmpconstr foreign key (a) references tmp2 match full #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: drop table tmp5 #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: drop table tmp4 #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: drop table tmp3 #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: drop table tmp2 #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create table pktable (ptest1 int primary key) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create temp table fktable (ftest1 inet) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: drop table fktable #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create table fktable (ftest1 varchar(10)) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: drop table pktable cascade #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: drop table fktable #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create table pktable (ptest1 int, ptest2 inet, #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create table fktable (ftest1 inet, ftest2 timestamp) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: drop table fktable #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create table fktable (ftest1 inet, ftest2 timestamp) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: drop table fktable #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create table fktable (ftest1 int, ftest2 inet) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: drop table fktable #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: drop table pktable cascade #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 check (test>3) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (4) #2025-04-04 23:12:41: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 check (test>3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (4) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 ( test int, test2 int, test3 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 check (test+test2<test3*4) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test,test2,test3) values (4,4,2) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test,test2,test3) values (4,4,5) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 (test int check (test>3), test2 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 add check (test2>test) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test2, test) values (3, 4) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 (test int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc2 (test2 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc3 (test int, test2 int, test3 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc2 add constraint foo check (test2>0) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc2 (test2) values (-3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc2 (test2) values (3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc3 (test2) values (-3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc3 (test2) values (3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc3 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc2 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 (test int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc2 (test2 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc3 (test int, test2 int, test3 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc2 add constraint foo check (test2>0) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc2 (test2) values (-3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc2 (test2) values (3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc3 (test2) values (-3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc3 (test2) values (3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc3 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc2 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 unique (test) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (4) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 unique (test) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 ( test int, test2 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 unique (test, test2) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (4,4) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (4,4) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (4,5) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (5,4) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (5,5) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 drop constraint atacc_test1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 (test int, test2 int, unique(test)) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 add unique (test2) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test2, test) values (3, 3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test2, test) values (2, 3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 primary key (test) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (4) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values(null) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 drop constraint atacc_test1 restrict #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 primary key (test) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (2) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 primary key (test) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: delete from atacc1 where test = 2 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 primary key (test) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (null) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 primary key (test) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test) values (3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 ( test int ) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 ( test int, test2 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test1 primary key (test, test2) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 add constraint atacc_test2 primary key (test) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (4,4) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (4,4) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (null,3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (3, null) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (null,null) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (4,5) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (5,4) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test,test2) values (5,5) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 (test int, test2 int, primary key(test)) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test2, test) values (3, 3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test2, test) values (2, 3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (test2, test) values (1, null) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 (test int not null) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 add constraint "atacc1_pkey" primary key (test) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 drop constraint "atacc1_pkey" #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 alter test set null #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 values (null) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 alter test set not null #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: delete from atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 alter test set not null #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create view myview as select * from atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop view myview #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table parent (a int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table child (a int, b varchar(255)) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table parent alter a set not null #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into parent values (null) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into child (a, b) values (null, 'foo') #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into parent values (null) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into child (a, b) values (null, 'foo') #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table parent alter a set not null #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table child alter a set not null #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: delete from parent #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table parent alter a set not null #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into parent values (null) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table child alter a set not null #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into child (a, b) values (null, 'foo') #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: delete from child #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table child alter a set not null #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into child (a, b) values (null, 'foo') #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table child #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table parent #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table def_test ( #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into def_test default values #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from def_test #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table def_test alter column c1 drop default #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into def_test default values #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from def_test #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table def_test alter column c2 drop default #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into def_test default values #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from def_test #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table def_test alter column c1 set default 10 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table def_test alter column c2 set default 'new_default' #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into def_test default values #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from def_test #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table def_test alter column c1 set default 'wrong_datatype' #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table def_test alter column c2 set default 20 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create view def_view_test as select * from def_test #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from def_view_test #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop view def_view_test #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table def_test #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc1 (a integer not null, b integer, c integer not null, d integer) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 values (1, 2, 3, 4) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 drop a #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select atacc1.* from atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select b,c,d from atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 values (11, 12, 13) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 (b,c,d) values (11,12,13) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: delete from atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create view myview as select * from atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from myview #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop view myview #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: analyze sys.atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table atacc2 (id integer unique) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc2 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into atacc1 values (21, 22, 23) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table test1 as select * from atacc1 with data #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from test1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table test1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 drop c #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table atacc1 drop d #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table atacc1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table parent (a int, b int, c int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into parent values (1, 2, 3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table parent drop a #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table child (b int, c int, d varchar(255)) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into child values (12, 13, 'testing') #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from parent #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from child #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table parent drop c #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from parent #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from child #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table child #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table parent #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table test (a integer, b integer, c integer) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into test values (1,2,3) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table test drop a #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table dropcolumn (a int, b int, e int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table dropcolumnchild (a int, b int, e int, c int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table dropcolumnanother (a int, b int, e int, c int, d int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table dropcolumnchild drop column a #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table dropcolumnchild drop column b #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table dropcolumn drop column e #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table dropcolumnchild drop column c #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table dropcolumn drop column a #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table dropcolumnanother #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table dropcolumnchild #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table dropcolumn #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table renamecolumn (a int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table renamecolumnchild (a int, b int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table renamecolumnanother (a int, b int, c int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table renamecolumnchild rename column a to d #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table renamecolumn rename column a to d #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table renamecolumnchild rename column b to a #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table renamecolumn add column w int #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table renamecolumn add column x int #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table renamecolumn cascade #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table renamecolumnchild cascade #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table renamecolumnanother cascade #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table p1 (f1 int, f2 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table c1 (f2 int, f1 int not null) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table c1 drop column f1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table p1 drop column f1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table c1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table p1 cascade #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table p1 (f1 int, f2 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table c1 (f1 int, f2 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table c1 drop column f1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table p1 drop column f1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table c1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table p1 cascade #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table p1 (f1 int, f2 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table c1 (f1 int, f2 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table c1 drop column f1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table p1 drop column f1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table c1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table p1 cascade #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table p1 (f1 int, f2 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table c1 (f1 int not null, f2 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table c1 drop column f1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table p1 drop column f1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table c1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table p1 cascade #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table p1(id int, name text) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table p2(id2 int, name text, height int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table c1(age int, id int, name text) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table gc1(age int, id int, name text) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table p1 drop column name #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table p2 drop column name #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table gc1 drop column name #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table c1 drop column name #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table p2 drop column height #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table c1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table p2 cascade #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table p1 cascade #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table p1 (f1 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table c1 (f1 int, f2 text, f3 int) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table p1 add column a1 int check (a1 > 0) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table p1 add column f2 text #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into p1 values (1,2,'abc') #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from p1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: update p1 set a1 = a1 + 1, f2 = upper(f2) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from p1 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table c1 cascade #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table p1 cascade #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create temp table foo (f1 text, f2 text, f3 text) on commit preserve rows #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into foo values('aa','bb','cc') #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from foo #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from foo #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into foo (f1, f3) values('qq','rr') #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from foo #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: update foo set f3 = 'zz' #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from foo #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select f3,max(f1) from foo group by f3 #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table foo #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: create table anothertab (atcol1 bigint generated always as identity check (atcol1 <= 3), atcol2 boolean) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into anothertab (atcol1, atcol2) values (default, true) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into anothertab (atcol1, atcol2) values (default, false) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into anothertab (atcol2) values (true) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into anothertab (atcol2) values (false) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from anothertab #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from anothertab #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into anothertab (atcol1, atcol2) values (45, null) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into anothertab (atcol1, atcol2) values (default, null) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: insert into anothertab (atcol2) values (null) #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from anothertab #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from anothertab #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table anothertab alter column atcol1 drop default #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: alter table anothertab drop constraint anothertab_chk #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: select * from anothertab #2025-04-04 23:12:42: client0061: SQLrun: INFO: Executing: drop table anothertab #2025-04-04 23:12:43: client0061: SQLrun: INFO: Executing: create table another (f1 int, f2 text) #2025-04-04 23:12:43: client0061: SQLrun: INFO: Executing: insert into another values(1, 'one') #2025-04-04 23:12:43: client0061: SQLrun: INFO: Executing: insert into another values(2, 'two') #2025-04-04 23:12:43: client0061: SQLrun: INFO: Executing: insert into another values(3, 'three') #2025-04-04 23:12:43: client0061: SQLrun: INFO: Executing: select * from another #2025-04-04 23:12:43: client0061: SQLrun: INFO: Executing: select * from another #2025-04-04 23:12:43: client0061: SQLrun: INFO: Executing: drop table another #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop view street #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop view iexit #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop view toyemp #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table onek #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table onek2 #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table tenk1 #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table tenk2 #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table bprime #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table hobbies_r #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table equipment_r #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table aggtest #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table iportaltest #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table f_star #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table e_star #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table d_star #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table c_star #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table b_star #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table a_star #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table stud_emp #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table student #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table slow_emp4000 #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table fast_emp4000 #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table emp #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table person #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table ramp #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table real_city #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table dept #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table ihighway #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table shighway #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table road #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table city #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table hash_i4_heap #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table hash_name_heap #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table hash_txt_heap #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table hash_f8_heap #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table bt_i4_heap #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table bt_name_heap #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table bt_txt_heap #2025-04-04 23:12:43: client0062: SQLrun: INFO: Executing: drop table bt_f8_heap #2025-04-04 23:12:43: 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 23:12:43: client0063: SQLrun: INFO: Executing: drop table "sys"."tenk1" cascade #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: drop table "sys"."test" cascade #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: drop table "sys"."gc1" cascade #2025-04-04 23:12:43: 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 23:12:43: client0063: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: create temp table arrtest_f (f0 int, f1 text, f2 double) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_f values(1,'cat1',1.21) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_f values(2,'cat1',1.24) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_f values(3,'cat1',1.18) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_f values(4,'cat1',1.26) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_f values(5,'cat1',1.15) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_f values(6,'cat2',1.15) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_f values(7,'cat2',1.26) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_f values(8,'cat2',1.32) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_f values(9,'cat2',1.30) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: create temp table arrtest_i (f0 int, f1 text, f2 int) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_i values(1,'cat1',21) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_i values(2,'cat1',24) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_i values(3,'cat1',18) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_i values(4,'cat1',26) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_i values(5,'cat1',15) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_i values(6,'cat2',15) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_i values(7,'cat2',26) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_i values(8,'cat2',32) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: insert into arrtest_i values(9,'cat2',30) #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: select 33 = any ('{1,2,3}') #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: select 33 = any ('{1,2,33}') #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: select 33 = all ('{1,2,33}') #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: select 33 >= all ('{1,2,33}') #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: drop table arrtest_f #2025-04-04 23:12:43: client0063: SQLrun: INFO: Executing: drop table arrtest_i #2025-04-04 23:12:43: 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 23:12:43: 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 23:12:43: client0064: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:43: client0064: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:43: client0064: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:43: client0064: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:43: client0064: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:43: client0064: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:43: client0064: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:43: client0064: SQLrun: INFO: Executing: create table update_test ( #2025-04-04 23:12:43: client0064: SQLrun: INFO: Executing: insert into update_test values (5, 10) #2025-04-04 23:12:43: client0064: SQLrun: INFO: Executing: insert into update_test values (10, 15) #2025-04-04 23:12:43: client0064: SQLrun: INFO: Executing: select * from update_test #2025-04-04 23:12:43: client0064: SQLrun: INFO: Executing: select * from update_test #2025-04-04 23:12:43: client0064: SQLrun: INFO: Executing: drop table update_test #2025-04-04 23:12:43: 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 23:12:43: 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 23:12:43: client0065: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: create table wi (oid oid generated always as identity, i int, #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: create table wo (i int, #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wi (i) values (1) #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wo (i) select i from wi #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wo (i) select i+1 from wi #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wi (i) select i+1 from wo #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wi (i) select i+3 from wi #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wo (i) select i+2 from wi #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wo (i) select i+8 from wo #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wi (i) select i+6 from wo #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wi (i) select i+22 from wi #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wo (i) select i+16 from wi #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wo (i) select i+60 from wo #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wi (i) select i+44 from wo #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wi (i) select i+164 from wi #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wo (i) select i+120 from wi #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wo (i) select i+448 from wo #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wi (i) select i+328 from wo #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wi (i) select i+1224 from wi #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wo (i) select i+896 from wi #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wo (i) select i+3344 from wo #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wi (i) select i+2448 from wo #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into wo (i) select i+6688 from wi where i<=2448 #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: select count(oid) from wi #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: select count(i) from wo #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: analyze sys.wi #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: analyze sys.wo #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: select "schema", "table", "column", type, count, typewidth, columnsize, heapsize, "imprints", sorted from sys.storage #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: drop table wi #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: drop table wo #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: create table create_table_test ( #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into create_table_test values (5, 10) #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: insert into create_table_test values (10, 15) #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: create table create_table_test2 as #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: create table create_table_test3 as #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: select count(oid) from create_table_test2 #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: select count(*) from create_table_test3 #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: drop table create_table_test #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: drop table create_table_test2 #2025-04-04 23:12:43: client0065: SQLrun: INFO: Executing: drop table create_table_test3 #2025-04-04 23:12:43: client0066: 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 23:12:43: client0066: 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 23:12:43: client0066: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id #2025-04-04 23:12:43: client0066: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:43: client0066: SQLrun: INFO: Executing: select name from sys.schemas where not system #2025-04-04 23:12:43: client0066: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot') #2025-04-04 23:12:43: client0066: SQLrun: INFO: Executing: select sqlname from sys.types where systemname is null order by id #2025-04-04 23:12:43: client0066: SQLrun: INFO: Executing: call sys.setsessiontimeout(60) #2025-04-04 23:12:43: client0066: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint' #2025-04-04 23:12:43: client0066: SQLrun: INFO: Executing: begin transaction #2025-04-04 23:12:43: client0066: SQLrun: INFO: Executing: begin transaction #2025-04-04 23:12:43: client0066: SQLrun: INFO: Executing: begin transaction #2025-04-04 23:12:43: client0066: SQLrun: INFO: Executing: begin transaction #2025-04-04 23:12:43: client0066: SQLrun: INFO: Executing: begin transaction #2025-04-04 23:12:43: client0066: SQLrun: INFO: Executing: begin transaction #SIGUSR1 info start #Virtual memory allocated: 8768192, of which 8768192 with malloc #gdk_vm_maxsize: 34359738368, gdk_mem_maxsize: 223463815249 #gdk_mmap_minsize_persistent 262144, gdk_mmap_minsize_transient 4294967296 #Virtual size: 1316290560, anonymous RSS: 36896768, shared RSS: 20905984 (together: 57802752) #BATs: #fix, dirty, persistent, loaded, hot: 1 bats, 0 virtual, 0 malloc #fix, dirty, transient, loaded, hot: 2780 bats, 26008 virtual, 26008 malloc #fix, clean, persistent, loaded, hot: 5 bats, 7168 virtual, 7168 malloc #no fix, dirty, persistent, loaded, hot: 85 bats, 512 virtual, 512 malloc #no fix, dirty, transient, loaded, hot: 49 bats, 0 virtual, 0 malloc #no fix, clean, persistent, loaded, hot: 163 bats, 1665912 virtual, 1665912 malloc #3250 bats total, 3083 in use, 70 free bats in common shared list #Threads: #client0066, tid 66, Thread 0x7fff8df1f180, 0 free bats, waiting for nothing, working on exiting #heartbeat, tid 14, Thread 0x7fff8e12f180, 0 free bats, waiting for nothing, working on sleeping #listenThread, tid 13, Thread 0x7fff8e33f180, 0 free bats, waiting for nothing, working on nothing #logmanager, tid 12, Thread 0x7fff8e54f180, 18 free bats, waiting for nothing, working on sleeping #DFLOWworker0011, tid 11, Thread 0x7fff8e75f180, 15 free bats, waiting for semaphore DFLOWsema0011, working on idle, waiting for new client #DFLOWworker0010, tid 10, Thread 0x7fff8e96f180, 7 free bats, waiting for semaphore todo, working on waiting for work #DFLOWworker0009, tid 9, Thread 0x7fff8eb7f180, 12 free bats, waiting for semaphore todo, working on waiting for work #DFLOWworker0008, tid 8, Thread 0x7fff8ed8f180, 5 free bats, waiting for semaphore DFLOWsema0008, working on idle, waiting for new client #DFLOWworker0007, tid 7, Thread 0x7fff8ef9f180, 15 free bats, waiting for semaphore todo, working on waiting for work #DFLOWworker0006, tid 6, Thread 0x7fff8f1af180, 9 free bats, waiting for semaphore todo, working on waiting for work #DFLOWworker0005, tid 5, Thread 0x7fff8f3bf180, 8 free bats, waiting for semaphore todo, working on waiting for work #DFLOWworker0004, tid 4, Thread 0x7fff8f5cf180, 7 free bats, waiting for semaphore todo, working on waiting for work #DFLOWworker0003, tid 3, Thread 0x7fff8f7df180, 1 free bats, waiting for semaphore todo, working on waiting for work #BBPmanager, tid 2, Thread 0x7fff94cdf180, 0 free bats, waiting for nothing, working on sleeping #main-thread, tid 1, Thread 0x7fffa3388aa0, 0 free bats, waiting for nothing, working on nothing #Clients: #0 active clients, 0 finishing clients, 0 blocked clients; max: 64 #WAL: #SQL store oldest pending 5887 #logger sql: #current log file 336, last handled log file 335 #current transaction id 1141, saved transaction id 1138 #number of flushers: 0 #number of catalog entries 248, of which 0 deleted #pending range 336: drops 20, last_ts 5846, flushed_ts 5846, refcount 1, file size 372 (current) #SIGUSR1 info end # mserver5 exiting