|
| 1 | +QUERY: CREATE TABLE hobbies_r ( |
| 2 | + name text, |
| 3 | + person text |
| 4 | +); |
| 5 | +QUERY: CREATE TABLE equipment_r ( |
| 6 | + name text, |
| 7 | + hobby text |
| 8 | +); |
| 9 | +QUERY: CREATE TABLE onek ( |
| 10 | + unique1 int4, |
| 11 | + unique2 int4, |
| 12 | + two int4, |
| 13 | + four int4, |
| 14 | + ten int4, |
| 15 | + twenty int4, |
| 16 | + hundred int4, |
| 17 | + thousand int4, |
| 18 | + twothousand int4, |
| 19 | + fivethous int4, |
| 20 | + tenthous int4, |
| 21 | + odd int4, |
| 22 | + even int4, |
| 23 | + stringu1 char16, |
| 24 | + stringu2 char16, |
| 25 | + string4 char16 |
| 26 | +); |
| 27 | +QUERY: CREATE TABLE tenk1 ( |
| 28 | + unique1 int4, |
| 29 | + unique2 int4, |
| 30 | + two int4, |
| 31 | + four int4, |
| 32 | + ten int4, |
| 33 | + twenty int4, |
| 34 | + hundred int4, |
| 35 | + thousand int4, |
| 36 | + twothousand int4, |
| 37 | + fivethous int4, |
| 38 | + tenthous int4, |
| 39 | + odd int4, |
| 40 | + even int4, |
| 41 | + stringu1 char16, |
| 42 | + stringu2 char16, |
| 43 | + string4 char16 |
| 44 | +); |
| 45 | +QUERY: CREATE TABLE tenk2 ( |
| 46 | + unique1 int4, |
| 47 | + unique2 int4, |
| 48 | + two int4, |
| 49 | + four int4, |
| 50 | + ten int4, |
| 51 | + twenty int4, |
| 52 | + hundred int4, |
| 53 | + thousand int4, |
| 54 | + twothousand int4, |
| 55 | + fivethous int4, |
| 56 | + tenthous int4, |
| 57 | + odd int4, |
| 58 | + even int4, |
| 59 | + stringu1 char16, |
| 60 | + stringu2 char16, |
| 61 | + string4 char16 |
| 62 | +); |
| 63 | +QUERY: CREATE TABLE person ( |
| 64 | + name text, |
| 65 | + age int4, |
| 66 | + location point |
| 67 | +); |
| 68 | +QUERY: CREATE TABLE emp ( |
| 69 | + salary int4, |
| 70 | + manager char16 |
| 71 | +) INHERITS (person); |
| 72 | +QUERY: CREATE TABLE student ( |
| 73 | + gpa float8 |
| 74 | +) INHERITS (person); |
| 75 | +QUERY: CREATE TABLE stud_emp ( |
| 76 | + percent int4 |
| 77 | +) INHERITS (emp, student); |
| 78 | +QUERY: CREATE TABLE city ( |
| 79 | + name char16, |
| 80 | + location box, |
| 81 | + budget city_budget |
| 82 | +); |
| 83 | +QUERY: CREATE TABLE dept ( |
| 84 | + dname char16, |
| 85 | + mgrname text |
| 86 | +); |
| 87 | +QUERY: CREATE TABLE slow_emp4000 ( |
| 88 | + home_base box |
| 89 | +); |
| 90 | +QUERY: CREATE TABLE fast_emp4000 ( |
| 91 | + home_base box |
| 92 | +); |
| 93 | +QUERY: CREATE TABLE road ( |
| 94 | + name text, |
| 95 | + thepath path |
| 96 | +); |
| 97 | +QUERY: CREATE TABLE ihighway () INHERITS (road); |
| 98 | +QUERY: CREATE TABLE shighway ( |
| 99 | + surface text |
| 100 | +) INHERITS (road); |
| 101 | +QUERY: CREATE TABLE real_city ( |
| 102 | + pop int4, |
| 103 | + cname text, |
| 104 | + outline path |
| 105 | +); |
| 106 | +QUERY: CREATE TABLE a_star ( |
| 107 | + class char, |
| 108 | + a int4 |
| 109 | +); |
| 110 | +QUERY: CREATE TABLE b_star ( |
| 111 | + b text |
| 112 | +) INHERITS (a_star); |
| 113 | +QUERY: CREATE TABLE c_star ( |
| 114 | + c char16 |
| 115 | +) INHERITS (a_star); |
| 116 | +QUERY: CREATE TABLE d_star ( |
| 117 | + d float8 |
| 118 | +) INHERITS (b_star, c_star); |
| 119 | +QUERY: CREATE TABLE e_star ( |
| 120 | + e int2 |
| 121 | +) INHERITS (c_star); |
| 122 | +QUERY: CREATE TABLE f_star ( |
| 123 | + f polygon |
| 124 | +) INHERITS (e_star); |
| 125 | +QUERY: CREATE TABLE aggtest ( |
| 126 | + a int2, |
| 127 | + b float4 |
| 128 | +); |
| 129 | +QUERY: CREATE TABLE arrtest ( |
| 130 | + a int2[], |
| 131 | + b int4[][][], |
| 132 | + c char16[], |
| 133 | + d text[][], |
| 134 | + e float8[] |
| 135 | +); |
| 136 | +QUERY: CREATE TABLE hash_i4_heap ( |
| 137 | + seqno int4, |
| 138 | + random int4 |
| 139 | +); |
| 140 | +QUERY: CREATE TABLE hash_c16_heap ( |
| 141 | + seqno int4, |
| 142 | + random char16 |
| 143 | +); |
| 144 | +QUERY: CREATE TABLE hash_txt_heap ( |
| 145 | + seqno int4, |
| 146 | + random text |
| 147 | +); |
| 148 | +QUERY: CREATE TABLE hash_f8_heap ( |
| 149 | + seqno int4, |
| 150 | + random float8 |
| 151 | +); |
| 152 | +QUERY: CREATE TABLE bt_i4_heap ( |
| 153 | + seqno int4, |
| 154 | + random int4 |
| 155 | +); |
| 156 | +QUERY: CREATE TABLE bt_c16_heap ( |
| 157 | + seqno char16, |
| 158 | + random int4 |
| 159 | +); |
| 160 | +QUERY: CREATE TABLE bt_txt_heap ( |
| 161 | + seqno text, |
| 162 | + random int4 |
| 163 | +); |
| 164 | +QUERY: CREATE TABLE bt_f8_heap ( |
| 165 | + seqno float8, |
| 166 | + random int4 |
| 167 | +); |
0 commit comments