# MonetDB 5 server v11.50.0
# This is an unreleased version
# Serving database 'mTests_sql_test_Dependencies', using 4 threads
# Compiled for amd64-pc-windows-msvc/32bit
# Found 7.997 GiB available main-memory of which we use 1.500 GiB
# Copyright (c) 2024 MonetDB Foundation, all rights reserved
# Visit https://www.monetdb.org/ for further information
# MonetDB/GIS module loaded
# MonetDB/SQL module loaded
# Listening for connection requests on mapi:monetdb://win2k22:57708/
# MonetDB server is started. To stop server press Ctrl-C.
#2024-04-26 00:32:10: client0015: 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
#2024-04-26 00:32:10: client0015: 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
#2024-04-26 00:32:10: client0015: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id
#2024-04-26 00:32:10: client0015: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot')
#2024-04-26 00:32:10: client0015: SQLrun: INFO: Executing: select name from sys.schemas where not system
#2024-04-26 00:32:10: client0015: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot')
#2024-04-26 00:32:10: client0015: SQLrun: INFO: Executing: call sys.setsessiontimeout(120)
#2024-04-26 00:32:10: client0015: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint'
#2024-04-26 00:32:10: client0015: SQLrun: INFO: Executing: create user "monet_test" with password 'pass_test' name 'TEST_USER' schema "sys"
#2024-04-26 00:32:10: client0015: SQLrun: INFO: Executing: create schema "test" authorization "monet_test"
#2024-04-26 00:32:10: client0015: SQLrun: INFO: Executing: drop user monetdb
#2024-04-26 00:32:10: client0015: SQLrun: INFO: Executing: alter user "monet_test" set schema "test"
#2024-04-26 00:32:10: client0015: SQLrun: INFO: Executing: drop schema test
#2024-04-26 00:32:10: client0016: SQLrun: INFO: Executing: call sys.setsessiontimeout(120)
#2024-04-26 00:32:10: client0016: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint'
#2024-04-26 00:32:10: client0016: SQLrun: INFO: Executing: drop user monetdb
#2024-04-26 00:32:10: client0017: SQLrun: INFO: Executing: call sys.setsessiontimeout(120)
#2024-04-26 00:32:10: client0017: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint'
#2024-04-26 00:32:10: client0017: SQLrun: INFO: Executing: create table t1(id int, name varchar(1024), age int, primary key(id))
#2024-04-26 00:32:10: client0017: SQLrun: INFO: Executing: create view v1 as select id, age from t1 where name like 'monet%'
#2024-04-26 00:32:10: client0017: SQLrun: INFO: Executing: create view v2 as select * from v1
#2024-04-26 00:32:10: client0017: SQLrun: INFO: Executing: create function f1(num int)
#2024-04-26 00:32:10: client0017: SQLrun: INFO: Executing: create function f2()
#2024-04-26 00:32:10: client0017: SQLrun: INFO: Executing: create index id_index on t1(id)
#2024-04-26 00:32:10: client0017: SQLrun: INFO: Executing: create table t2 (id_t1 int, age_v1 int)
#2024-04-26 00:32:10: client0017: SQLrun: INFO: Executing: alter table t2 add foreign key(id_t1) references t1(id)
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: create trigger trigger_test after insert on t1
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: create table t3 (id int)
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: create trigger trigger_test_4 after insert on t1
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select s.name, u.name, 'DEP_USER' from sys.schemas as s, users u where u.default_schema = s.id order by s.name, u.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select a.name, s.name, 'DEP_SCHEMA' from sys.schemas as s, auths a where s.owner = a.id order by a.name, s.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select t.name, v.name, 'DEP_VIEW' from sys.tables as t, sys.tables as v, sys.dependencies as dep where t.id = dep.id and v.id = dep.depend_id and dep.depend_type = 5 and v.type = 1 order by t.name, v.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select t.name, i.name, 'DEP_INDEX' from sys.tables as t, sys.idxs as i where i.table_id = t.id and i.name not in (select name from sys.keys) and t.type = 0 order by t.name, i.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: (select t.name as name, tri.name as trigname, 'DEP_TRIGGER' from sys.tables as t, sys.triggers as tri where tri.table_id = t.id) union (select t.name as name, tri.name as trigname, 'DEP_TRIGGER' from sys.triggers tri, sys.tables t, sys.dependencies dep where dep.id = t.id and dep.depend_id =tri.id and dep.depend_type = 8) order by name, trigname
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select t.name, fk.name, 'DEP_FKEY' from sys.tables as t, sys.keys as k, sys.keys as fk where fk.rkey = k.id and k.table_id = t.id order by t.name, fk.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select t.name, f.name, 'DEP_FUNC' from sys.functions as f, sys.tables as t, sys.dependencies as dep where t.id = dep.id and f.id = dep.depend_id and dep.depend_type = 7 and t.type in (0, 10) order by t.name, f.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select c.name, v.name, 'DEP_VIEW' from sys.columns as c, sys.tables as v, sys.dependencies as dep where c.id = dep.id and v.id = dep.depend_id and dep.depend_type = 5 and v.type = 1 order by c.name, v.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select c.name, k.name, 'DEP_KEY' from sys.columns as c, sys.objects as kc, sys.keys as k where kc."name" = c.name and kc.id = k.id and k.table_id = c.table_id and k.rkey = -1 order by c.name, k.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select c.name, i.name, 'DEP_INDEX' from sys.columns as c, sys.objects as kc, sys.idxs as i where kc."name" = c.name and kc.id = i.id and c.table_id = i.table_id and i.name not in (select name from sys.keys) order by c.name, i.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select c.name, f.name, 'DEP_FUNC' from sys.functions as f, sys.columns as c, sys.dependencies as dep where c.id = dep.id and f.id = dep.depend_id and dep.depend_type = 7 order by c.name, f.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select c.name, tri.name, 'DEP_TRIGGER' from sys.columns as c, sys.triggers as tri, sys.dependencies as dep where dep.id = c.id and dep.depend_id =tri.id and dep.depend_type = 8 order by c.name, tri.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select v.name, f.name, 'DEP_FUNC' from sys.functions as f, sys.tables as v, sys.dependencies as dep where v.id = dep.id and f.id = dep.depend_id and dep.depend_type = 7 and v.type in (1, 11) order by v.name, f.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select v.name, i.name, 'DEP_INDEX' from sys.tables as v, sys.idxs as i where i.table_id = v.id and i.name not in (select name from sys.keys) and v.type = 1 order by v.name, i.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select v.name, tri.name, 'DEP_TRIGGER' from sys.tables as v, sys.triggers as tri, sys.dependencies as dep where dep.id = v.id and dep.depend_id =tri.id and dep.depend_type = 8 and v.type = 1 order by v.name, tri.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select f1.name, f2.name, 'DEP_FUNC' from sys.functions as f1, sys.functions as f2, sys.dependencies as dep where f1.id = dep.id and f2.id = dep.depend_id and dep.depend_type = 7 order by f2.name, f1.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select f.name, tri.name, 'DEP_TRIGGER' from sys.functions as f, sys.triggers as tri, sys.dependencies as dep where dep.id = f.id and dep.depend_id =tri.id and dep.depend_type = 8 order by f.name, tri.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: select k.name, fk.name, 'DEP_FKEY' from sys.keys as k, sys.keys as fk where fk.rkey = k.id order by k.name, fk.name
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: drop table t1
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: drop view v1
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: drop table t2
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: drop function f1
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: drop function f2
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: drop trigger trigger_test
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: drop index id_index
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: drop table t2
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: drop function f1
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: drop view v1
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: drop view v2
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: drop view v1
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: drop table t1
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: drop trigger trigger_test_4
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: drop table t1
#2024-04-26 00:32:11: client0017: SQLrun: INFO: Executing: drop table t3
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: call sys.setsessiontimeout(120)
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint'
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: create function f1(num int)
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: create function f1()
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: create function f2(x int)
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: create function f3()
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: select f1.name, f2.name, 'DEP_FUNC' from sys.functions as f1, sys.functions as f2, sys.dependencies as dep where f1.id = dep.id and f2.id = dep.depend_id and dep.depend_type = 7 order by f2.name, f1.name
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: drop function f2
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: drop function f3
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: drop all function f1
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: select f1.name, f2.name, 'DEP_FUNC' from sys.functions as f1, sys.functions as f2, sys.dependencies as dep where f1.id = dep.id and f2.id = dep.depend_id and dep.depend_type = 7 order by f2.name, f1.name
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: create table t1(id int, name varchar(1024), age int)
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: create function f1()
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: create view v1 as select * from t1 where id = f1()
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: drop function f1
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: drop function f1 cascade
#2024-04-26 00:32:11: client0018: SQLrun: INFO: Executing: drop table t1
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: call sys.setsessiontimeout(120)
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint'
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: alter user "monet_test" set schema "sys"
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: drop schema test
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: drop user monet_test
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: drop schema test_2
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select s.name, u.name, 'DEP_USER' from sys.schemas as s, users u where u.default_schema = s.id order by s.name, u.name
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select a.name, s.name, 'DEP_SCHEMA' from sys.schemas as s, auths a where s.owner = a.id order by a.name, s.name
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select distinct t.name, v.name, 'DEP_VIEW' from sys.tables as t, sys.tables as v, sys.dependencies as dep where t.id = dep.id and v.id = dep.depend_id and dep.depend_type = 5 and v.type in (1, 11, 21, 31) order by t.name, v.name
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select t.name, i.name, 'DEP_INDEX' from sys.tables as t, sys.idxs as i where i.table_id = t.id and i.name not in (select name from sys.keys) and t.type in (0, 10, 20, 30) order by t.name, i.name
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: (select t.name as name, tri.name as trigname, 'DEP_TRIGGER' from sys.tables as t, sys.triggers as tri where tri.table_id = t.id) union (select t.name as name, tri.name as trigname, 'DEP_TRIGGER' from sys.triggers tri, sys.tables t, sys.dependencies dep where dep.id = t.id and dep.depend_id =tri.id and dep.depend_type = 8) order by name, trigname
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select t.name, fk.name, 'DEP_FKEY' from sys.tables as t, sys.keys as k, sys.keys as fk where fk.rkey = k.id and k.table_id = t.id order by t.name, fk.name
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select t.name, f.name, 'DEP_FUNC' from sys.functions as f, sys.tables as t, sys.dependencies as dep where t.id = dep.id and f.id = dep.depend_id and dep.depend_type = 7 and t.type in (0, 10, 20, 30) order by t.name, f.name
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select distinct c.name, v.name, 'DEP_VIEW' from sys.columns as c, sys.tables as v, sys.dependencies as dep where c.id = dep.id and v.id = dep.depend_id and dep.depend_type = 5 and v.type in (1, 11, 21, 31) order by c.name, v.name
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select c.name, k.name, 'DEP_KEY' from sys.columns as c, sys.objects as kc, sys.keys as k where kc."name" = c.name and kc.id = k.id and k.table_id = c.table_id and k.rkey = -1 order by c.name, k.name
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select c.name, i.name, 'DEP_INDEX' from sys.columns as c, sys.objects as kc, sys.idxs as i where kc."name" = c.name and kc.id = i.id and c.table_id = i.table_id and i.name not in (select name from sys.keys) order by c.name, i.name
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select c.name, f.name, 'DEP_FUNC' from sys.functions as f, sys.columns as c, sys.dependencies as dep where c.id = dep.id and f.id = dep.depend_id and dep.depend_type = 7 order by c.name, f.name
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select c.name, tri.name, 'DEP_TRIGGER' from sys.columns as c, sys.objects as tri, sys.dependencies as dep where dep.id = c.id and dep.depend_id =tri.id and dep.depend_type = 8 order by c.name, tri.name
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select v.name, f.name, 'DEP_FUNC' from sys.functions as f, sys.tables as v, sys.dependencies as dep where v.id = dep.id and f.id = dep.depend_id and dep.depend_type = 7 and v.type in (1, 11, 21, 31) order by v.name, f.name
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select v.name, i.name, 'DEP_INDEX' from sys.tables as v, sys.idxs as i where i.table_id = v.id and i.name not in (select name from sys.keys) and v.type in (1, 11, 21, 31) order by v.name, i.name
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select v.name, tri.name, 'DEP_TRIGGER' from sys.tables as v, sys.objects as tri, sys.dependencies as dep where dep.id = v.id and dep.depend_id =tri.id and dep.depend_type = 8 and v.type in (1, 11, 21, 31) order by v.name, tri.name
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select f1.name, f2.name, 'DEP_FUNC' from sys.functions as f1, sys.functions as f2, sys.dependencies as dep where f1.id = dep.id and f2.id = dep.depend_id and dep.depend_type = 7 order by f1.name, f2.name
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select f.name, tri.name, 'DEP_TRIGGER' from sys.functions as f, sys.objects as tri, sys.dependencies as dep where dep.id = f.id and dep.depend_id =tri.id and dep.depend_type = 8 order by f.name, tri.name
#2024-04-26 00:32:11: client0019: SQLrun: INFO: Executing: select k.name, fk.name, 'DEP_FKEY' from sys.keys as k, sys.keys as fk where fk.rkey = k.id order by k.name, fk.name
#2024-04-26 00:32:11: 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
#2024-04-26 00:32:11: 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
#2024-04-26 00:32:11: client0020: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id
#2024-04-26 00:32:11: client0020: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot')
#2024-04-26 00:32:11: client0020: SQLrun: INFO: Executing: select name from sys.schemas where not system
#2024-04-26 00:32:11: client0020: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot')
#2024-04-26 00:32:11: client0020: SQLrun: INFO: Executing: call sys.setsessiontimeout(120)
#2024-04-26 00:32:11: client0020: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint'
#2024-04-26 00:32:11: client0020: SQLrun: INFO: Executing: create table dictionary (id integer,val varchar(20000),primary key (id))
#2024-04-26 00:32:12: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:12: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:12: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:12: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:12: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:12: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:12: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:12: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:13: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:13: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:13: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:13: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:13: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:13: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:13: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:14: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:14: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:14: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:14: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:14: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:14: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:14: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:15: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:15: client0020: SQLrun: INFO: Executing: create table
#2024-04-26 00:32:15: client0020: SQLrun: INFO: Executing: create view triples as
#2024-04-26 00:32:15: client0020: SQLrun: INFO: Executing: select count(*) from dependencies where depend_type = 5 and depend_id in (select id from sys._tables where not system)
#2024-04-26 00:32:15: 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
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."dictionary" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."bench_booktitle" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."bench_cdrom" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."swrc_pages" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."foaf_homepage" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."swrc_editor" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."swrc_number" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."dc_creator" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."rdfs_seealso" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."dcterms_partof" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."dcterms_references" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."dcterms_issued" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."swrc_volume" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."dc_publisher" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."swrc_note" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."swrc_chapter" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."swrc_address" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."swrc_series" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."swrc_month" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."foaf_name" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."rdf_type" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."dc_title" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."swrc_journal" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."bench_abstract" cascade
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop table "sys"."swrc_isbn" cascade
#2024-04-26 00:32:15: 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
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: select s.name, q.name from sys.sequences q, schemas s where q.schema_id = s.id
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot')
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: select name from sys.schemas where not system
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: select name from sys.users where name not in ('monetdb', '.snapshot')
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: call sys.setsessiontimeout(120)
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: select * from sys.types where sqlname = 'hugeint'
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: create function "sys"."test1"() returns table ("col1" int, "col2" int) begin return select 1, 2; end
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: create view "sys"."test1" ("col1", "col2") as select "col1", "col2" from "sys"."test1"()
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: select count(*) from dependencies inner join tables on dependencies.id = tables.id where tables.name = 'test1'
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: select count(*) from dependencies inner join functions on dependencies.id = functions.id where functions.name = 'test1'
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop function "test1"()
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: create function "sys"."test2"() returns table ("col1" int, "col2" int) begin return select "col1", "col2" from "sys"."test1"; end
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop view "test1"
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: select count(*) from dependencies inner join tables on dependencies.id = tables.id where tables.name = 'test1'
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: select count(*) from dependencies inner join functions on dependencies.id = functions.id where functions.name = 'test1'
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop function "test2"()
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop view "test1"
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: drop function "test1"()
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: select count(*) from dependencies inner join tables on dependencies.id = tables.id where tables.name = 'test1'
#2024-04-26 00:32:15: client0021: SQLrun: INFO: Executing: select count(*) from dependencies inner join functions on dependencies.id = functions.id where functions.name = 'test1'
#2024-04-26 00:32:15: client0022: SQLrun: INFO: Executing: select count(*), max(id) from sys.bbp()