QUERY: CREATE TABLE hobbies_r ( name text, person text ); QUERY: CREATE TABLE equipment_r ( name text, hobby text ); QUERY: CREATE TABLE onek ( unique1 int4, unique2 int4, two int4, four int4, ten int4, twenty int4, hundred int4, thousand int4, twothousand int4, fivethous int4, tenthous int4, odd int4, even int4, stringu1 char16, stringu2 char16, string4 char16 ); QUERY: CREATE TABLE tenk1 ( unique1 int4, unique2 int4, two int4, four int4, ten int4, twenty int4, hundred int4, thousand int4, twothousand int4, fivethous int4, tenthous int4, odd int4, even int4, stringu1 char16, stringu2 char16, string4 char16 ); QUERY: CREATE TABLE tenk2 ( unique1 int4, unique2 int4, two int4, four int4, ten int4, twenty int4, hundred int4, thousand int4, twothousand int4, fivethous int4, tenthous int4, odd int4, even int4, stringu1 char16, stringu2 char16, string4 char16 ); QUERY: CREATE TABLE person ( name text, age int4, location point ); QUERY: CREATE TABLE emp ( salary int4, manager char16 ) INHERITS (person); QUERY: CREATE TABLE student ( gpa float8 ) INHERITS (person); QUERY: CREATE TABLE stud_emp ( percent int4 ) INHERITS (emp, student); QUERY: CREATE TABLE city ( name char16, location box, budget city_budget ); QUERY: CREATE TABLE dept ( dname char16, mgrname text ); QUERY: CREATE TABLE slow_emp4000 ( home_base box ); QUERY: CREATE TABLE fast_emp4000 ( home_base box ); QUERY: CREATE TABLE road ( name text, thepath path ); QUERY: CREATE TABLE ihighway () INHERITS (road); QUERY: CREATE TABLE shighway ( surface text ) INHERITS (road); QUERY: CREATE TABLE real_city ( pop int4, cname text, outline path ); QUERY: CREATE TABLE a_star ( class char, a int4 ); QUERY: CREATE TABLE b_star ( b text ) INHERITS (a_star); QUERY: CREATE TABLE c_star ( c char16 ) INHERITS (a_star); QUERY: CREATE TABLE d_star ( d float8 ) INHERITS (b_star, c_star); QUERY: CREATE TABLE e_star ( e int2 ) INHERITS (c_star); QUERY: CREATE TABLE f_star ( f polygon ) INHERITS (e_star); QUERY: CREATE TABLE aggtest ( a int2, b float4 ); QUERY: CREATE TABLE arrtest ( a int2[], b int4[][][], c char16[], d text[][], e float8[] ); QUERY: CREATE TABLE hash_i4_heap ( seqno int4, random int4 ); QUERY: CREATE TABLE hash_c16_heap ( seqno int4, random char16 ); QUERY: CREATE TABLE hash_txt_heap ( seqno int4, random text ); QUERY: CREATE TABLE hash_f8_heap ( seqno int4, random float8 ); QUERY: CREATE TABLE bt_i4_heap ( seqno int4, random int4 ); QUERY: CREATE TABLE bt_c16_heap ( seqno char16, random int4 ); QUERY: CREATE TABLE bt_txt_heap ( seqno text, random int4 ); QUERY: CREATE TABLE bt_f8_heap ( seqno float8, random int4 );