inherit_optimizer.out 64.4 KB
Newer Older
R
Richard Guo 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
--
-- Test inheritance features
--
CREATE TABLE a (dummy serial, aa TEXT);
CREATE TABLE b (bb TEXT) INHERITS (a);
CREATE TABLE c (cc TEXT) INHERITS (a);
CREATE TABLE d (dd TEXT) INHERITS (b,c,a);
NOTICE:  merging multiple inherited definitions of column "dummy"
NOTICE:  merging multiple inherited definitions of column "aa"
NOTICE:  merging multiple inherited definitions of column "dummy"
NOTICE:  merging multiple inherited definitions of column "aa"
INSERT INTO a(aa) VALUES('aaa');
INSERT INTO a(aa) VALUES('aaaa');
INSERT INTO a(aa) VALUES('aaaaa');
INSERT INTO a(aa) VALUES('aaaaaa');
INSERT INTO a(aa) VALUES('aaaaaaa');
INSERT INTO a(aa) VALUES('aaaaaaaa');
INSERT INTO b(aa) VALUES('bbb');
INSERT INTO b(aa) VALUES('bbbb');
INSERT INTO b(aa) VALUES('bbbbb');
INSERT INTO b(aa) VALUES('bbbbbb');
INSERT INTO b(aa) VALUES('bbbbbbb');
INSERT INTO b(aa) VALUES('bbbbbbbb');
INSERT INTO c(aa) VALUES('ccc');
INSERT INTO c(aa) VALUES('cccc');
INSERT INTO c(aa) VALUES('ccccc');
INSERT INTO c(aa) VALUES('cccccc');
INSERT INTO c(aa) VALUES('ccccccc');
INSERT INTO c(aa) VALUES('cccccccc');
INSERT INTO d(aa) VALUES('ddd');
INSERT INTO d(aa) VALUES('dddd');
INSERT INTO d(aa) VALUES('ddddd');
INSERT INTO d(aa) VALUES('dddddd');
INSERT INTO d(aa) VALUES('ddddddd');
INSERT INTO d(aa) VALUES('dddddddd');
SELECT relname, a.* FROM a, pg_class where a.tableoid = pg_class.oid;
 relname | dummy |    aa    
---------+-------+----------
 a       |     1 | aaa
 a       |     2 | aaaa
 a       |     3 | aaaaa
 a       |     4 | aaaaaa
 a       |     5 | aaaaaaa
 a       |     6 | aaaaaaaa
 b       |     7 | bbb
 b       |     8 | bbbb
 b       |     9 | bbbbb
 b       |    10 | bbbbbb
 b       |    11 | bbbbbbb
 b       |    12 | bbbbbbbb
 c       |    13 | ccc
 c       |    14 | cccc
 c       |    15 | ccccc
 c       |    16 | cccccc
 c       |    17 | ccccccc
 c       |    18 | cccccccc
 d       |    19 | ddd
 d       |    20 | dddd
 d       |    21 | ddddd
 d       |    22 | dddddd
 d       |    23 | ddddddd
 d       |    24 | dddddddd
(24 rows)

SELECT relname, b.* FROM b, pg_class where b.tableoid = pg_class.oid;
 relname | dummy |    aa    | bb 
---------+-------+----------+----
 b       |     7 | bbb      | 
 b       |     8 | bbbb     | 
 b       |     9 | bbbbb    | 
 b       |    10 | bbbbbb   | 
 b       |    11 | bbbbbbb  | 
 b       |    12 | bbbbbbbb | 
 d       |    19 | ddd      | 
 d       |    20 | dddd     | 
 d       |    21 | ddddd    | 
 d       |    22 | dddddd   | 
 d       |    23 | ddddddd  | 
 d       |    24 | dddddddd | 
(12 rows)

SELECT relname, c.* FROM c, pg_class where c.tableoid = pg_class.oid;
 relname | dummy |    aa    | cc 
---------+-------+----------+----
 c       |    13 | ccc      | 
 c       |    14 | cccc     | 
 c       |    15 | ccccc    | 
 c       |    16 | cccccc   | 
 c       |    17 | ccccccc  | 
 c       |    18 | cccccccc | 
 d       |    19 | ddd      | 
 d       |    20 | dddd     | 
 d       |    21 | ddddd    | 
 d       |    22 | dddddd   | 
 d       |    23 | ddddddd  | 
 d       |    24 | dddddddd | 
(12 rows)

SELECT relname, d.* FROM d, pg_class where d.tableoid = pg_class.oid;
 relname | dummy |    aa    | bb | cc | dd 
---------+-------+----------+----+----+----
 d       |    19 | ddd      |    |    | 
 d       |    20 | dddd     |    |    | 
 d       |    21 | ddddd    |    |    | 
 d       |    22 | dddddd   |    |    | 
 d       |    23 | ddddddd  |    |    | 
 d       |    24 | dddddddd |    |    | 
(6 rows)

SELECT relname, a.* FROM ONLY a, pg_class where a.tableoid = pg_class.oid;
 relname | dummy |    aa    
---------+-------+----------
 a       |     1 | aaa
 a       |     2 | aaaa
 a       |     3 | aaaaa
 a       |     4 | aaaaaa
 a       |     5 | aaaaaaa
 a       |     6 | aaaaaaaa
(6 rows)

SELECT relname, b.* FROM ONLY b, pg_class where b.tableoid = pg_class.oid;
 relname | dummy |    aa    | bb 
---------+-------+----------+----
 b       |     7 | bbb      | 
 b       |     8 | bbbb     | 
 b       |     9 | bbbbb    | 
 b       |    10 | bbbbbb   | 
 b       |    11 | bbbbbbb  | 
 b       |    12 | bbbbbbbb | 
(6 rows)

SELECT relname, c.* FROM ONLY c, pg_class where c.tableoid = pg_class.oid;
 relname | dummy |    aa    | cc 
---------+-------+----------+----
 c       |    13 | ccc      | 
 c       |    14 | cccc     | 
 c       |    15 | ccccc    | 
 c       |    16 | cccccc   | 
 c       |    17 | ccccccc  | 
 c       |    18 | cccccccc | 
(6 rows)

SELECT relname, d.* FROM ONLY d, pg_class where d.tableoid = pg_class.oid;
 relname | dummy |    aa    | bb | cc | dd 
---------+-------+----------+----+----+----
 d       |    19 | ddd      |    |    | 
 d       |    20 | dddd     |    |    | 
 d       |    21 | ddddd    |    |    | 
 d       |    22 | dddddd   |    |    | 
 d       |    23 | ddddddd  |    |    | 
 d       |    24 | dddddddd |    |    | 
(6 rows)

UPDATE a SET aa='zzzz' WHERE aa='aaaa';
UPDATE ONLY a SET aa='zzzzz' WHERE aa='aaaaa';
UPDATE b SET aa='zzz' WHERE aa='aaa';
UPDATE ONLY b SET aa='zzz' WHERE aa='aaa';
UPDATE a SET aa='zzzzzz' WHERE aa LIKE 'aaa%';
SELECT relname, a.* FROM a, pg_class where a.tableoid = pg_class.oid;
 relname | dummy |    aa    
---------+-------+----------
 a       |     1 | zzzzzz
 a       |     2 | zzzz
 a       |     3 | zzzzz
 a       |     4 | zzzzzz
 a       |     5 | zzzzzz
 a       |     6 | zzzzzz
 b       |     7 | bbb
 b       |     8 | bbbb
 b       |     9 | bbbbb
 b       |    10 | bbbbbb
 b       |    11 | bbbbbbb
 b       |    12 | bbbbbbbb
 c       |    13 | ccc
 c       |    14 | cccc
 c       |    15 | ccccc
 c       |    16 | cccccc
 c       |    17 | ccccccc
 c       |    18 | cccccccc
 d       |    19 | ddd
 d       |    20 | dddd
 d       |    21 | ddddd
 d       |    22 | dddddd
 d       |    23 | ddddddd
 d       |    24 | dddddddd
(24 rows)

SELECT relname, b.* FROM b, pg_class where b.tableoid = pg_class.oid;
 relname | dummy |    aa    | bb 
---------+-------+----------+----
 b       |     7 | bbb      | 
 b       |     8 | bbbb     | 
 b       |     9 | bbbbb    | 
 b       |    10 | bbbbbb   | 
 b       |    11 | bbbbbbb  | 
 b       |    12 | bbbbbbbb | 
 d       |    19 | ddd      | 
 d       |    20 | dddd     | 
 d       |    21 | ddddd    | 
 d       |    22 | dddddd   | 
 d       |    23 | ddddddd  | 
 d       |    24 | dddddddd | 
(12 rows)

SELECT relname, c.* FROM c, pg_class where c.tableoid = pg_class.oid;
 relname | dummy |    aa    | cc 
---------+-------+----------+----
 c       |    13 | ccc      | 
 c       |    14 | cccc     | 
 c       |    15 | ccccc    | 
 c       |    16 | cccccc   | 
 c       |    17 | ccccccc  | 
 c       |    18 | cccccccc | 
 d       |    19 | ddd      | 
 d       |    20 | dddd     | 
 d       |    21 | ddddd    | 
 d       |    22 | dddddd   | 
 d       |    23 | ddddddd  | 
 d       |    24 | dddddddd | 
(12 rows)

SELECT relname, d.* FROM d, pg_class where d.tableoid = pg_class.oid;
 relname | dummy |    aa    | bb | cc | dd 
---------+-------+----------+----+----+----
 d       |    19 | ddd      |    |    | 
 d       |    20 | dddd     |    |    | 
 d       |    21 | ddddd    |    |    | 
 d       |    22 | dddddd   |    |    | 
 d       |    23 | ddddddd  |    |    | 
 d       |    24 | dddddddd |    |    | 
(6 rows)

SELECT relname, a.* FROM ONLY a, pg_class where a.tableoid = pg_class.oid;
 relname | dummy |   aa   
---------+-------+--------
 a       |     1 | zzzzzz
 a       |     2 | zzzz
 a       |     3 | zzzzz
 a       |     4 | zzzzzz
 a       |     5 | zzzzzz
 a       |     6 | zzzzzz
(6 rows)

SELECT relname, b.* FROM ONLY b, pg_class where b.tableoid = pg_class.oid;
 relname | dummy |    aa    | bb 
---------+-------+----------+----
 b       |     7 | bbb      | 
 b       |     8 | bbbb     | 
 b       |     9 | bbbbb    | 
 b       |    10 | bbbbbb   | 
 b       |    11 | bbbbbbb  | 
 b       |    12 | bbbbbbbb | 
(6 rows)

SELECT relname, c.* FROM ONLY c, pg_class where c.tableoid = pg_class.oid;
 relname | dummy |    aa    | cc 
---------+-------+----------+----
 c       |    13 | ccc      | 
 c       |    14 | cccc     | 
 c       |    15 | ccccc    | 
 c       |    16 | cccccc   | 
 c       |    17 | ccccccc  | 
 c       |    18 | cccccccc | 
(6 rows)

SELECT relname, d.* FROM ONLY d, pg_class where d.tableoid = pg_class.oid;
 relname | dummy |    aa    | bb | cc | dd 
---------+-------+----------+----+----+----
 d       |    19 | ddd      |    |    | 
 d       |    20 | dddd     |    |    | 
 d       |    21 | ddddd    |    |    | 
 d       |    22 | dddddd   |    |    | 
 d       |    23 | ddddddd  |    |    | 
 d       |    24 | dddddddd |    |    | 
(6 rows)

UPDATE b SET aa='new';
SELECT relname, a.* FROM a, pg_class where a.tableoid = pg_class.oid;
 relname | dummy |    aa    
---------+-------+----------
 a       |     1 | zzzzzz
 a       |     2 | zzzz
 a       |     3 | zzzzz
 a       |     4 | zzzzzz
 a       |     5 | zzzzzz
 a       |     6 | zzzzzz
 b       |     7 | new
 b       |     8 | new
 b       |     9 | new
 b       |    10 | new
 b       |    11 | new
 b       |    12 | new
 c       |    13 | ccc
 c       |    14 | cccc
 c       |    15 | ccccc
 c       |    16 | cccccc
 c       |    17 | ccccccc
 c       |    18 | cccccccc
 d       |    19 | new
 d       |    20 | new
 d       |    21 | new
 d       |    22 | new
 d       |    23 | new
 d       |    24 | new
(24 rows)

SELECT relname, b.* FROM b, pg_class where b.tableoid = pg_class.oid;
 relname | dummy | aa  | bb 
---------+-------+-----+----
 b       |     7 | new | 
 b       |     8 | new | 
 b       |     9 | new | 
 b       |    10 | new | 
 b       |    11 | new | 
 b       |    12 | new | 
 d       |    19 | new | 
 d       |    20 | new | 
 d       |    21 | new | 
 d       |    22 | new | 
 d       |    23 | new | 
 d       |    24 | new | 
(12 rows)

SELECT relname, c.* FROM c, pg_class where c.tableoid = pg_class.oid;
 relname | dummy |    aa    | cc 
---------+-------+----------+----
 c       |    13 | ccc      | 
 c       |    14 | cccc     | 
 c       |    15 | ccccc    | 
 c       |    16 | cccccc   | 
 c       |    17 | ccccccc  | 
 c       |    18 | cccccccc | 
 d       |    19 | new      | 
 d       |    20 | new      | 
 d       |    21 | new      | 
 d       |    22 | new      | 
 d       |    23 | new      | 
 d       |    24 | new      | 
(12 rows)

SELECT relname, d.* FROM d, pg_class where d.tableoid = pg_class.oid;
 relname | dummy | aa  | bb | cc | dd 
---------+-------+-----+----+----+----
 d       |    19 | new |    |    | 
 d       |    20 | new |    |    | 
 d       |    21 | new |    |    | 
 d       |    22 | new |    |    | 
 d       |    23 | new |    |    | 
 d       |    24 | new |    |    | 
(6 rows)

SELECT relname, a.* FROM ONLY a, pg_class where a.tableoid = pg_class.oid;
 relname | dummy |   aa   
---------+-------+--------
 a       |     1 | zzzzzz
 a       |     2 | zzzz
 a       |     3 | zzzzz
 a       |     4 | zzzzzz
 a       |     5 | zzzzzz
 a       |     6 | zzzzzz
(6 rows)

SELECT relname, b.* FROM ONLY b, pg_class where b.tableoid = pg_class.oid;
 relname | dummy | aa  | bb 
---------+-------+-----+----
 b       |     7 | new | 
 b       |     8 | new | 
 b       |     9 | new | 
 b       |    10 | new | 
 b       |    11 | new | 
 b       |    12 | new | 
(6 rows)

SELECT relname, c.* FROM ONLY c, pg_class where c.tableoid = pg_class.oid;
 relname | dummy |    aa    | cc 
---------+-------+----------+----
 c       |    13 | ccc      | 
 c       |    14 | cccc     | 
 c       |    15 | ccccc    | 
 c       |    16 | cccccc   | 
 c       |    17 | ccccccc  | 
 c       |    18 | cccccccc | 
(6 rows)

SELECT relname, d.* FROM ONLY d, pg_class where d.tableoid = pg_class.oid;
 relname | dummy | aa  | bb | cc | dd 
---------+-------+-----+----+----+----
 d       |    19 | new |    |    | 
 d       |    20 | new |    |    | 
 d       |    21 | new |    |    | 
 d       |    22 | new |    |    | 
 d       |    23 | new |    |    | 
 d       |    24 | new |    |    | 
(6 rows)

UPDATE a SET aa='new';
DELETE FROM ONLY c WHERE aa='new';
SELECT relname, a.* FROM a, pg_class where a.tableoid = pg_class.oid;
 relname | dummy | aa  
---------+-------+-----
 a       |     1 | new
 a       |     2 | new
 a       |     3 | new
 a       |     4 | new
 a       |     5 | new
 a       |     6 | new
 b       |     7 | new
 b       |     8 | new
 b       |     9 | new
 b       |    10 | new
 b       |    11 | new
 b       |    12 | new
 d       |    19 | new
 d       |    20 | new
 d       |    21 | new
 d       |    22 | new
 d       |    23 | new
 d       |    24 | new
(18 rows)

SELECT relname, b.* FROM b, pg_class where b.tableoid = pg_class.oid;
 relname | dummy | aa  | bb 
---------+-------+-----+----
 b       |     7 | new | 
 b       |     8 | new | 
 b       |     9 | new | 
 b       |    10 | new | 
 b       |    11 | new | 
 b       |    12 | new | 
 d       |    19 | new | 
 d       |    20 | new | 
 d       |    21 | new | 
 d       |    22 | new | 
 d       |    23 | new | 
 d       |    24 | new | 
(12 rows)

SELECT relname, c.* FROM c, pg_class where c.tableoid = pg_class.oid;
 relname | dummy | aa  | cc 
---------+-------+-----+----
 d       |    19 | new | 
 d       |    20 | new | 
 d       |    21 | new | 
 d       |    22 | new | 
 d       |    23 | new | 
 d       |    24 | new | 
(6 rows)

SELECT relname, d.* FROM d, pg_class where d.tableoid = pg_class.oid;
 relname | dummy | aa  | bb | cc | dd 
---------+-------+-----+----+----+----
 d       |    19 | new |    |    | 
 d       |    20 | new |    |    | 
 d       |    21 | new |    |    | 
 d       |    22 | new |    |    | 
 d       |    23 | new |    |    | 
 d       |    24 | new |    |    | 
(6 rows)

SELECT relname, a.* FROM ONLY a, pg_class where a.tableoid = pg_class.oid;
 relname | dummy | aa  
---------+-------+-----
 a       |     1 | new
 a       |     2 | new
 a       |     3 | new
 a       |     4 | new
 a       |     5 | new
 a       |     6 | new
(6 rows)

SELECT relname, b.* FROM ONLY b, pg_class where b.tableoid = pg_class.oid;
 relname | dummy | aa  | bb 
---------+-------+-----+----
 b       |     7 | new | 
 b       |     8 | new | 
 b       |     9 | new | 
 b       |    10 | new | 
 b       |    11 | new | 
 b       |    12 | new | 
(6 rows)

SELECT relname, c.* FROM ONLY c, pg_class where c.tableoid = pg_class.oid;
 relname | dummy | aa | cc 
---------+-------+----+----
(0 rows)

SELECT relname, d.* FROM ONLY d, pg_class where d.tableoid = pg_class.oid;
 relname | dummy | aa  | bb | cc | dd 
---------+-------+-----+----+----+----
 d       |    19 | new |    |    | 
 d       |    20 | new |    |    | 
 d       |    21 | new |    |    | 
 d       |    22 | new |    |    | 
 d       |    23 | new |    |    | 
 d       |    24 | new |    |    | 
(6 rows)

DELETE FROM a;
SELECT relname, a.* FROM a, pg_class where a.tableoid = pg_class.oid;
 relname | dummy | aa 
---------+-------+----
(0 rows)

SELECT relname, b.* FROM b, pg_class where b.tableoid = pg_class.oid;
 relname | dummy | aa | bb 
---------+-------+----+----
(0 rows)

SELECT relname, c.* FROM c, pg_class where c.tableoid = pg_class.oid;
 relname | dummy | aa | cc 
---------+-------+----+----
(0 rows)

SELECT relname, d.* FROM d, pg_class where d.tableoid = pg_class.oid;
 relname | dummy | aa | bb | cc | dd 
---------+-------+----+----+----+----
(0 rows)

SELECT relname, a.* FROM ONLY a, pg_class where a.tableoid = pg_class.oid;
 relname | dummy | aa 
---------+-------+----
(0 rows)

SELECT relname, b.* FROM ONLY b, pg_class where b.tableoid = pg_class.oid;
 relname | dummy | aa | bb 
---------+-------+----+----
(0 rows)

SELECT relname, c.* FROM ONLY c, pg_class where c.tableoid = pg_class.oid;
 relname | dummy | aa | cc 
---------+-------+----+----
(0 rows)

SELECT relname, d.* FROM ONLY d, pg_class where d.tableoid = pg_class.oid;
 relname | dummy | aa | bb | cc | dd 
---------+-------+----+----+----+----
(0 rows)

-- Confirm PRIMARY KEY adds NOT NULL constraint to child table
CREATE TEMP TABLE z (b TEXT, PRIMARY KEY(aa, b)) inherits (a);
INSERT INTO z VALUES (NULL, 'text'); -- should fail
542 543
ERROR:  null value in column "dummy" violates not-null constraint  (seg1 172.17.0.2:25433 pid=366731)
DETAIL:  Failing row contains (null, text, null).
R
Richard Guo 已提交
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
-- Check UPDATE with inherited target and an inherited source table
create temp table foo(f1 int, f2 int);
create temp table foo2(f3 int) inherits (foo);
create temp table bar(f1 int, f2 int);
create temp table bar2(f3 int) inherits (bar);
insert into foo values(1,1);
insert into foo values(3,3);
insert into foo2 values(2,2,2);
insert into foo2 values(3,3,3);
insert into bar values(1,1);
insert into bar values(2,2);
insert into bar values(3,3);
insert into bar values(4,4);
insert into bar2 values(1,1,1);
insert into bar2 values(2,2,2);
insert into bar2 values(3,3,3);
insert into bar2 values(4,4,4);
update bar set f2 = f2 + 100 where f1 in (select f1 from foo);
562
select tableoid::regclass::text as relname, bar.* from bar order by 1,2;
R
Richard Guo 已提交
563 564 565 566 567 568 569 570 571 572 573 574
 relname | f1 | f2  
---------+----+-----
 bar     |  1 | 101
 bar     |  2 | 102
 bar     |  3 | 103
 bar     |  4 |   4
 bar2    |  1 | 101
 bar2    |  2 | 102
 bar2    |  3 | 103
 bar2    |  4 |   4
(8 rows)

575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
-- Check UPDATE with inherited target and an appendrel subquery
update bar set f2 = f2 + 100
from
  ( select f1 from foo union all select f1+3 from foo ) ss
where bar.f1 = ss.f1;
select tableoid::regclass::text as relname, bar.* from bar order by 1,2;
 relname | f1 | f2  
---------+----+-----
 bar     |  1 | 201
 bar     |  2 | 202
 bar     |  3 | 203
 bar     |  4 | 104
 bar2    |  1 | 201
 bar2    |  2 | 202
 bar2    |  3 | 203
 bar2    |  4 | 104
(8 rows)

R
Richard Guo 已提交
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
/* Test multiple inheritance of column defaults */
CREATE TABLE firstparent (tomorrow date default now()::date + 1);
CREATE TABLE secondparent (tomorrow date default  now() :: date  +  1);
CREATE TABLE jointchild () INHERITS (firstparent, secondparent);  -- ok
NOTICE:  merging multiple inherited definitions of column "tomorrow"
CREATE TABLE thirdparent (tomorrow date default now()::date - 1);
CREATE TABLE otherchild () INHERITS (firstparent, thirdparent);  -- not ok
NOTICE:  merging multiple inherited definitions of column "tomorrow"
ERROR:  column "tomorrow" inherits conflicting default values
HINT:  To resolve the conflict, specify a default explicitly.
CREATE TABLE otherchild (tomorrow date default now())
  INHERITS (firstparent, thirdparent);  -- ok, child resolves ambiguous default
NOTICE:  merging multiple inherited definitions of column "tomorrow"
NOTICE:  merging column "tomorrow" with inherited definition
DROP TABLE firstparent, secondparent, jointchild, thirdparent, otherchild;
-- Test changing the type of inherited columns
insert into d values('test','one','two','three');
ERROR:  invalid input syntax for integer: "test"
LINE 1: insert into d values('test','one','two','three');
                             ^
613
alter table z drop constraint z_pkey;
R
Richard Guo 已提交
614 615 616 617 618 619
alter table a alter column aa type integer using bit_length(aa);
select * from d;
 dummy | aa | bb | cc | dd 
-------+----+----+----+----
(0 rows)

620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
-- check that oid column is handled properly during alter table inherit
create table oid_parent (a int) with oids;
NOTICE:  OIDS=TRUE is not recommended for user-created tables
HINT:  Use OIDS=FALSE to prevent wrap-around of the OID counter.
create table oid_child () inherits (oid_parent);
NOTICE:  OIDS=TRUE is not recommended for user-created tables
HINT:  Use OIDS=FALSE to prevent wrap-around of the OID counter.
select attinhcount, attislocal from pg_attribute
  where attrelid = 'oid_child'::regclass and attname = 'oid';
 attinhcount | attislocal 
-------------+------------
           1 | f
(1 row)

drop table oid_child;
create table oid_child (a int) without oids;
alter table oid_child inherit oid_parent;  -- fail
ERROR:  table "oid_child" without OIDs cannot inherit from table "oid_parent" with OIDs
alter table oid_child set with oids;
NOTICE:  OIDS=TRUE is not recommended for user-created tables
HINT:  Use OIDS=FALSE to prevent wrap-around of the OID counter.
select attinhcount, attislocal from pg_attribute
  where attrelid = 'oid_child'::regclass and attname = 'oid';
 attinhcount | attislocal 
-------------+------------
           0 | t
(1 row)

alter table oid_child inherit oid_parent;
select attinhcount, attislocal from pg_attribute
  where attrelid = 'oid_child'::regclass and attname = 'oid';
 attinhcount | attislocal 
-------------+------------
           1 | t
(1 row)

alter table oid_child set without oids;  -- fail
ERROR:  cannot drop inherited column "oid"
alter table oid_parent set without oids;
select attinhcount, attislocal from pg_attribute
  where attrelid = 'oid_child'::regclass and attname = 'oid';
 attinhcount | attislocal 
-------------+------------
           0 | t
(1 row)

alter table oid_child set without oids;
select attinhcount, attislocal from pg_attribute
  where attrelid = 'oid_child'::regclass and attname = 'oid';
 attinhcount | attislocal 
-------------+------------
(0 rows)

drop table oid_parent cascade;
NOTICE:  drop cascades to table oid_child
R
Richard Guo 已提交
675 676
-- Test non-inheritable parent constraints
create table p1(ff1 int);
677
alter table p1 add constraint p1chk check (ff1 > 0) no inherit;
R
Richard Guo 已提交
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
alter table p1 add constraint p2chk check (ff1 > 10);
-- connoinherit should be true for NO INHERIT constraint
select pc.relname, pgc.conname, pgc.contype, pgc.conislocal, pgc.coninhcount, pgc.connoinherit from pg_class as pc inner join pg_constraint as pgc on (pgc.conrelid = pc.oid) where pc.relname = 'p1' order by 1,2;
 relname | conname | contype | conislocal | coninhcount | connoinherit 
---------+---------+---------+------------+-------------+--------------
 p1      | p1chk   | c       | t          |           0 | t
 p1      | p2chk   | c       | t          |           0 | f
(2 rows)

-- Test that child does not inherit NO INHERIT constraints
create table c1 () inherits (p1);
\d p1
      Table "public.p1"
 Column |  Type   | Modifiers 
--------+---------+-----------
 ff1    | integer | 
Check constraints:
695
    "p1chk" CHECK (ff1 > 0) NO INHERIT
R
Richard Guo 已提交
696 697 698 699 700 701 702 703 704 705 706 707 708 709
    "p2chk" CHECK (ff1 > 10)
Number of child tables: 1 (Use \d+ to list them.)
Distributed by: (ff1)

\d c1
      Table "public.c1"
 Column |  Type   | Modifiers 
--------+---------+-----------
 ff1    | integer | 
Check constraints:
    "p2chk" CHECK (ff1 > 10)
Inherits: p1
Distributed by: (ff1)

710 711 712
-- Test that child does not override inheritable constraints of the parent
create table c2 (constraint p2chk check (ff1 > 10) no inherit) inherits (p1);	--fails
ERROR:  constraint "p2chk" conflicts with inherited constraint on relation "c2"
R
Richard Guo 已提交
713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
drop table p1 cascade;
NOTICE:  drop cascades to table c1
-- Tests for casting between the rowtypes of parent and child
-- tables. See the pgsql-hackers thread beginning Dec. 4/04
create table base (i integer);
create table derived () inherits (base);
insert into derived (i) values (0);
select derived::base from derived;
 derived 
---------
 (0)
(1 row)

drop table derived;
drop table base;
create table p1(ff1 int);
create table p2(f1 text);
create function p2text(p2) returns text as 'select $1.f1' language sql;
create table c1(f3 int) inherits(p1,p2);
insert into c1 values(123456789, 'hi', 42);
select p2text(c1.*) from c1;
 p2text 
--------
 hi
(1 row)

drop function p2text(p2);
drop table c1;
drop table p2;
drop table p1;
CREATE TABLE ac (aa TEXT);
alter table ac add constraint ac_check check (aa is not null);
CREATE TABLE bc (bb TEXT) INHERITS (ac);
select pc.relname, pgc.conname, pgc.contype, pgc.conislocal, pgc.coninhcount, pgc.consrc from pg_class as pc inner join pg_constraint as pgc on (pgc.conrelid = pc.oid) where pc.relname in ('ac', 'bc') order by 1,2;
 relname | conname  | contype | conislocal | coninhcount |      consrc      
---------+----------+---------+------------+-------------+------------------
 ac      | ac_check | c       | t          |           0 | (aa IS NOT NULL)
 bc      | ac_check | c       | f          |           1 | (aa IS NOT NULL)
(2 rows)

insert into ac (aa) values (NULL);
ERROR:  new row for relation "ac" violates check constraint "ac_check"
DETAIL:  Failing row contains (null).
insert into bc (aa) values (NULL);
ERROR:  new row for relation "bc" violates check constraint "ac_check"
DETAIL:  Failing row contains (null, null).
alter table bc drop constraint ac_check;  -- fail, disallowed
ERROR:  cannot drop inherited constraint "ac_check" of relation "bc"
alter table ac drop constraint ac_check;
select pc.relname, pgc.conname, pgc.contype, pgc.conislocal, pgc.coninhcount, pgc.consrc from pg_class as pc inner join pg_constraint as pgc on (pgc.conrelid = pc.oid) where pc.relname in ('ac', 'bc') order by 1,2;
 relname | conname | contype | conislocal | coninhcount | consrc 
---------+---------+---------+------------+-------------+--------
(0 rows)

-- try the unnamed-constraint case
alter table ac add check (aa is not null);
select pc.relname, pgc.conname, pgc.contype, pgc.conislocal, pgc.coninhcount, pgc.consrc from pg_class as pc inner join pg_constraint as pgc on (pgc.conrelid = pc.oid) where pc.relname in ('ac', 'bc') order by 1,2;
 relname |   conname   | contype | conislocal | coninhcount |      consrc      
---------+-------------+---------+------------+-------------+------------------
 ac      | ac_aa_check | c       | t          |           0 | (aa IS NOT NULL)
 bc      | ac_aa_check | c       | f          |           1 | (aa IS NOT NULL)
(2 rows)

insert into ac (aa) values (NULL);
ERROR:  new row for relation "ac" violates check constraint "ac_aa_check"
DETAIL:  Failing row contains (null).
insert into bc (aa) values (NULL);
ERROR:  new row for relation "bc" violates check constraint "ac_aa_check"
DETAIL:  Failing row contains (null, null).
alter table bc drop constraint ac_aa_check;  -- fail, disallowed
ERROR:  cannot drop inherited constraint "ac_aa_check" of relation "bc"
alter table ac drop constraint ac_aa_check;
select pc.relname, pgc.conname, pgc.contype, pgc.conislocal, pgc.coninhcount, pgc.consrc from pg_class as pc inner join pg_constraint as pgc on (pgc.conrelid = pc.oid) where pc.relname in ('ac', 'bc') order by 1,2;
 relname | conname | contype | conislocal | coninhcount | consrc 
---------+---------+---------+------------+-------------+--------
(0 rows)

alter table ac add constraint ac_check check (aa is not null);
alter table bc no inherit ac;
select pc.relname, pgc.conname, pgc.contype, pgc.conislocal, pgc.coninhcount, pgc.consrc from pg_class as pc inner join pg_constraint as pgc on (pgc.conrelid = pc.oid) where pc.relname in ('ac', 'bc') order by 1,2;
 relname | conname  | contype | conislocal | coninhcount |      consrc      
---------+----------+---------+------------+-------------+------------------
 ac      | ac_check | c       | t          |           0 | (aa IS NOT NULL)
 bc      | ac_check | c       | t          |           0 | (aa IS NOT NULL)
(2 rows)

alter table bc drop constraint ac_check;
select pc.relname, pgc.conname, pgc.contype, pgc.conislocal, pgc.coninhcount, pgc.consrc from pg_class as pc inner join pg_constraint as pgc on (pgc.conrelid = pc.oid) where pc.relname in ('ac', 'bc') order by 1,2;
 relname | conname  | contype | conislocal | coninhcount |      consrc      
---------+----------+---------+------------+-------------+------------------
 ac      | ac_check | c       | t          |           0 | (aa IS NOT NULL)
(1 row)

alter table ac drop constraint ac_check;
select pc.relname, pgc.conname, pgc.contype, pgc.conislocal, pgc.coninhcount, pgc.consrc from pg_class as pc inner join pg_constraint as pgc on (pgc.conrelid = pc.oid) where pc.relname in ('ac', 'bc') order by 1,2;
 relname | conname | contype | conislocal | coninhcount | consrc 
---------+---------+---------+------------+-------------+--------
(0 rows)

drop table bc;
drop table ac;
create table ac (a int constraint check_a check (a <> 0));
create table bc (a int constraint check_a check (a <> 0), b int constraint check_b check (b <> 0)) inherits (ac);
NOTICE:  merging column "a" with inherited definition
NOTICE:  merging constraint "check_a" with inherited definition
select pc.relname, pgc.conname, pgc.contype, pgc.conislocal, pgc.coninhcount, pgc.consrc from pg_class as pc inner join pg_constraint as pgc on (pgc.conrelid = pc.oid) where pc.relname in ('ac', 'bc') order by 1,2;
 relname | conname | contype | conislocal | coninhcount |  consrc  
---------+---------+---------+------------+-------------+----------
 ac      | check_a | c       | t          |           0 | (a <> 0)
 bc      | check_a | c       | t          |           1 | (a <> 0)
 bc      | check_b | c       | t          |           0 | (b <> 0)
(3 rows)

drop table bc;
drop table ac;
create table ac (a int constraint check_a check (a <> 0));
create table bc (b int constraint check_b check (b <> 0));
create table cc (c int constraint check_c check (c <> 0)) inherits (ac, bc);
select pc.relname, pgc.conname, pgc.contype, pgc.conislocal, pgc.coninhcount, pgc.consrc from pg_class as pc inner join pg_constraint as pgc on (pgc.conrelid = pc.oid) where pc.relname in ('ac', 'bc', 'cc') order by 1,2;
 relname | conname | contype | conislocal | coninhcount |  consrc  
---------+---------+---------+------------+-------------+----------
 ac      | check_a | c       | t          |           0 | (a <> 0)
 bc      | check_b | c       | t          |           0 | (b <> 0)
 cc      | check_a | c       | f          |           1 | (a <> 0)
 cc      | check_b | c       | f          |           1 | (b <> 0)
 cc      | check_c | c       | t          |           0 | (c <> 0)
(5 rows)

alter table cc no inherit bc;
select pc.relname, pgc.conname, pgc.contype, pgc.conislocal, pgc.coninhcount, pgc.consrc from pg_class as pc inner join pg_constraint as pgc on (pgc.conrelid = pc.oid) where pc.relname in ('ac', 'bc', 'cc') order by 1,2;
 relname | conname | contype | conislocal | coninhcount |  consrc  
---------+---------+---------+------------+-------------+----------
 ac      | check_a | c       | t          |           0 | (a <> 0)
 bc      | check_b | c       | t          |           0 | (b <> 0)
 cc      | check_a | c       | f          |           1 | (a <> 0)
 cc      | check_b | c       | t          |           0 | (b <> 0)
 cc      | check_c | c       | t          |           0 | (c <> 0)
(5 rows)

drop table cc;
drop table bc;
drop table ac;
create table p1(f1 int);
create table p2(f2 int);
create table c1(f3 int) inherits(p1,p2);
insert into c1 values(1,-1,2);
alter table p2 add constraint cc check (f2>0);  -- fail
ERROR:  check constraint "cc" is violated by some row
alter table p2 add check (f2>0);  -- check it without a name, too
ERROR:  check constraint "p2_f2_check" is violated by some row
delete from c1;
insert into c1 values(1,1,2);
alter table p2 add check (f2>0);
insert into c1 values(1,-1,2);  -- fail
ERROR:  new row for relation "c1" violates check constraint "p2_f2_check"
DETAIL:  Failing row contains (1, -1, 2).
create table c2(f3 int) inherits(p1,p2);
\d c2
      Table "public.c2"
 Column |  Type   | Modifiers 
--------+---------+-----------
 f1     | integer | 
 f2     | integer | 
 f3     | integer | 
Check constraints:
    "p2_f2_check" CHECK (f2 > 0)
Inherits: p1,
          p2
Distributed by: (f1)

create table c3 (f4 int) inherits(c1,c2);
NOTICE:  merging multiple inherited definitions of column "f1"
NOTICE:  merging multiple inherited definitions of column "f2"
NOTICE:  merging multiple inherited definitions of column "f3"
\d c3
      Table "public.c3"
 Column |  Type   | Modifiers 
--------+---------+-----------
 f1     | integer | 
 f2     | integer | 
 f3     | integer | 
 f4     | integer | 
Check constraints:
    "p2_f2_check" CHECK (f2 > 0)
Inherits: c1,
          c2
Distributed by: (f1)

drop table p1 cascade;
NOTICE:  drop cascades to 3 other objects
DETAIL:  drop cascades to table c1
drop cascades to table c2
drop cascades to table c3
drop table p2 cascade;
create table pp1 (f1 int);
create table cc1 (f2 text, f3 int) inherits (pp1);
alter table pp1 add column a1 int check (a1 > 0);
\d cc1
      Table "public.cc1"
 Column |  Type   | Modifiers 
--------+---------+-----------
 f1     | integer | 
 f2     | text    | 
 f3     | integer | 
 a1     | integer | 
Check constraints:
    "pp1_a1_check" CHECK (a1 > 0)
Inherits: pp1
Distributed by: (f1)

create table cc2(f4 float) inherits(pp1,cc1);
NOTICE:  merging multiple inherited definitions of column "f1"
NOTICE:  merging multiple inherited definitions of column "a1"
\d cc2
          Table "public.cc2"
 Column |       Type       | Modifiers 
--------+------------------+-----------
 f1     | integer          | 
 a1     | integer          | 
 f2     | text             | 
 f3     | integer          | 
 f4     | double precision | 
Check constraints:
    "pp1_a1_check" CHECK (a1 > 0)
Inherits: pp1,
          cc1
Distributed by: (f1)

alter table pp1 add column a2 int check (a2 > 0);
NOTICE:  merging definition of column "a2" for child "cc2"
NOTICE:  merging constraint "pp1_a2_check" with inherited definition
\d cc2
          Table "public.cc2"
 Column |       Type       | Modifiers 
--------+------------------+-----------
 f1     | integer          | 
 a1     | integer          | 
 f2     | text             | 
 f3     | integer          | 
 f4     | double precision | 
 a2     | integer          | 
Check constraints:
    "pp1_a1_check" CHECK (a1 > 0)
    "pp1_a2_check" CHECK (a2 > 0)
Inherits: pp1,
          cc1
Distributed by: (f1)

drop table pp1 cascade;
NOTICE:  drop cascades to 2 other objects
DETAIL:  drop cascades to table cc1
drop cascades to table cc2
-- Test for renaming in simple multiple inheritance
CREATE TABLE inht1 (a int, b int);
CREATE TABLE inhs1 (b int, c int);
CREATE TABLE inhts (d int) INHERITS (inht1, inhs1);
NOTICE:  merging multiple inherited definitions of column "b"
ALTER TABLE inht1 RENAME a TO aa;
ALTER TABLE inht1 RENAME b TO bb;                -- to be failed
ERROR:  cannot rename inherited column "b"
ALTER TABLE inhts RENAME aa TO aaa;      -- to be failed
ERROR:  cannot rename inherited column "aa"
ALTER TABLE inhts RENAME d TO dd;
\d+ inhts
                        Table "public.inhts"
 Column |  Type   | Modifiers | Storage | Stats target | Description 
--------+---------+-----------+---------+--------------+-------------
 aa     | integer |           | plain   |              | 
 b      | integer |           | plain   |              | 
 c      | integer |           | plain   |              | 
 dd     | integer |           | plain   |              | 
Inherits: inht1,
          inhs1
Distributed by: (aa)

DROP TABLE inhts;
-- Test for renaming in diamond inheritance
CREATE TABLE inht2 (x int) INHERITS (inht1);
CREATE TABLE inht3 (y int) INHERITS (inht1);
CREATE TABLE inht4 (z int) INHERITS (inht2, inht3);
NOTICE:  merging multiple inherited definitions of column "aa"
NOTICE:  merging multiple inherited definitions of column "b"
ALTER TABLE inht1 RENAME aa TO aaa;
\d+ inht4
                        Table "public.inht4"
 Column |  Type   | Modifiers | Storage | Stats target | Description 
--------+---------+-----------+---------+--------------+-------------
 aaa    | integer |           | plain   |              | 
 b      | integer |           | plain   |              | 
 x      | integer |           | plain   |              | 
 y      | integer |           | plain   |              | 
 z      | integer |           | plain   |              | 
Inherits: inht2,
          inht3
Distributed by: (aaa)

CREATE TABLE inhts (d int) INHERITS (inht2, inhs1);
NOTICE:  merging multiple inherited definitions of column "b"
ALTER TABLE inht1 RENAME aaa TO aaaa;
ALTER TABLE inht1 RENAME b TO bb;                -- to be failed
ERROR:  cannot rename inherited column "b"
\d+ inhts
                        Table "public.inhts"
 Column |  Type   | Modifiers | Storage | Stats target | Description 
--------+---------+-----------+---------+--------------+-------------
 aaaa   | integer |           | plain   |              | 
 b      | integer |           | plain   |              | 
 x      | integer |           | plain   |              | 
 c      | integer |           | plain   |              | 
 d      | integer |           | plain   |              | 
Inherits: inht2,
          inhs1
Distributed by: (aaaa)

WITH RECURSIVE r AS (
  SELECT 'inht1'::regclass AS inhrelid
UNION ALL
  SELECT c.inhrelid FROM pg_inherits c, r WHERE r.inhrelid = c.inhparent
)
SELECT a.attrelid::regclass, a.attname, a.attinhcount, e.expected
  FROM (SELECT inhrelid, count(*) AS expected FROM pg_inherits
        WHERE inhparent IN (SELECT inhrelid FROM r) GROUP BY inhrelid) e
  JOIN pg_attribute a ON e.inhrelid = a.attrelid WHERE NOT attislocal
  ORDER BY a.attrelid::regclass::name, a.attnum;
 attrelid | attname | attinhcount | expected 
----------+---------+-------------+----------
 inht2    | aaaa    |           1 |        1
 inht2    | b       |           1 |        1
 inht3    | aaaa    |           1 |        1
 inht3    | b       |           1 |        1
 inht4    | aaaa    |           2 |        2
 inht4    | b       |           2 |        2
 inht4    | x       |           1 |        2
 inht4    | y       |           1 |        2
 inhts    | aaaa    |           1 |        1
 inhts    | b       |           2 |        1
 inhts    | x       |           1 |        1
 inhts    | c       |           1 |        1
(12 rows)

DROP TABLE inht1, inhs1 CASCADE;
NOTICE:  drop cascades to 4 other objects
DETAIL:  drop cascades to table inht2
drop cascades to table inhts
drop cascades to table inht3
drop cascades to table inht4
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
-- Test non-inheritable indices [UNIQUE, EXCLUDE] contraints
CREATE TABLE test_constraints (id int, val1 varchar, val2 int, UNIQUE(val1, val2));
CREATE TABLE test_constraints_inh () INHERITS (test_constraints);
\d+ test_constraints
                        Table "public.test_constraints"
 Column |       Type        | Modifiers | Storage  | Stats target | Description 
--------+-------------------+-----------+----------+--------------+-------------
 id     | integer           |           | plain    |              | 
 val1   | character varying |           | extended |              | 
 val2   | integer           |           | plain    |              | 
Indexes:
    "test_constraints_val1_val2_key" UNIQUE CONSTRAINT, btree (val1, val2)
Child tables: test_constraints_inh
Distributed by: (val1, val2)

ALTER TABLE ONLY test_constraints DROP CONSTRAINT test_constraints_val1_val2_key;
\d+ test_constraints
                        Table "public.test_constraints"
 Column |       Type        | Modifiers | Storage  | Stats target | Description 
--------+-------------------+-----------+----------+--------------+-------------
 id     | integer           |           | plain    |              | 
 val1   | character varying |           | extended |              | 
 val2   | integer           |           | plain    |              | 
Child tables: test_constraints_inh
Distributed by: (val1, val2)

\d+ test_constraints_inh
                      Table "public.test_constraints_inh"
 Column |       Type        | Modifiers | Storage  | Stats target | Description 
--------+-------------------+-----------+----------+--------------+-------------
 id     | integer           |           | plain    |              | 
 val1   | character varying |           | extended |              | 
 val2   | integer           |           | plain    |              | 
Inherits: test_constraints
Distributed by: (val1, val2)

DROP TABLE test_constraints_inh;
DROP TABLE test_constraints;
1097 1098
-- start_ignore
-- GPDB does not support exclusion constraints, so no need to run this test
1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
CREATE TABLE test_ex_constraints (
    c circle,
    EXCLUDE USING gist (c WITH &&)
);
CREATE TABLE test_ex_constraints_inh () INHERITS (test_ex_constraints);
\d+ test_ex_constraints
                 Table "public.test_ex_constraints"
 Column |  Type  | Modifiers | Storage | Stats target | Description 
--------+--------+-----------+---------+--------------+-------------
 c      | circle |           | plain   |              | 
Indexes:
    "test_ex_constraints_c_excl" EXCLUDE USING gist (c WITH &&)
Child tables: test_ex_constraints_inh
Distributed randomly

ALTER TABLE test_ex_constraints DROP CONSTRAINT test_ex_constraints_c_excl;
\d+ test_ex_constraints
                 Table "public.test_ex_constraints"
 Column |  Type  | Modifiers | Storage | Stats target | Description 
--------+--------+-----------+---------+--------------+-------------
 c      | circle |           | plain   |              | 
Child tables: test_ex_constraints_inh
Distributed randomly

\d+ test_ex_constraints_inh
               Table "public.test_ex_constraints_inh"
 Column |  Type  | Modifiers | Storage | Stats target | Description 
--------+--------+-----------+---------+--------------+-------------
 c      | circle |           | plain   |              | 
Inherits: test_ex_constraints
Distributed randomly

DROP TABLE test_ex_constraints_inh;
DROP TABLE test_ex_constraints;
1133
-- end_ignore
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178
-- Test non-inheritable foreign key contraints
CREATE TABLE test_primary_constraints(id int PRIMARY KEY);
CREATE TABLE test_foreign_constraints(id1 int REFERENCES test_primary_constraints(id));
CREATE TABLE test_foreign_constraints_inh () INHERITS (test_foreign_constraints);
\d+ test_primary_constraints
               Table "public.test_primary_constraints"
 Column |  Type   | Modifiers | Storage | Stats target | Description 
--------+---------+-----------+---------+--------------+-------------
 id     | integer | not null  | plain   |              | 
Indexes:
    "test_primary_constraints_pkey" PRIMARY KEY, btree (id)
Referenced by:
    TABLE "test_foreign_constraints" CONSTRAINT "test_foreign_constraints_id1_fkey" FOREIGN KEY (id1) REFERENCES test_primary_constraints(id)
Distributed by: (id)

\d+ test_foreign_constraints
               Table "public.test_foreign_constraints"
 Column |  Type   | Modifiers | Storage | Stats target | Description 
--------+---------+-----------+---------+--------------+-------------
 id1    | integer |           | plain   |              | 
Foreign-key constraints:
    "test_foreign_constraints_id1_fkey" FOREIGN KEY (id1) REFERENCES test_primary_constraints(id)
Child tables: test_foreign_constraints_inh
Distributed by: (id1)

ALTER TABLE test_foreign_constraints DROP CONSTRAINT test_foreign_constraints_id1_fkey;
\d+ test_foreign_constraints
               Table "public.test_foreign_constraints"
 Column |  Type   | Modifiers | Storage | Stats target | Description 
--------+---------+-----------+---------+--------------+-------------
 id1    | integer |           | plain   |              | 
Child tables: test_foreign_constraints_inh
Distributed by: (id1)

\d+ test_foreign_constraints_inh
             Table "public.test_foreign_constraints_inh"
 Column |  Type   | Modifiers | Storage | Stats target | Description 
--------+---------+-----------+---------+--------------+-------------
 id1    | integer |           | plain   |              | 
Inherits: test_foreign_constraints
Distributed by: (id1)

DROP TABLE test_foreign_constraints_inh;
DROP TABLE test_foreign_constraints;
DROP TABLE test_primary_constraints;
1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243
-- Test that parent and child CHECK constraints can be created in either order
create table p1(f1 int);
NOTICE:  Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'f1' as the Greenplum Database data distribution key for this table.
HINT:  The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
create table p1_c1() inherits(p1);
NOTICE:  table has parent, setting distribution columns to match parent table
alter table p1 add constraint inh_check_constraint1 check (f1 > 0);
alter table p1_c1 add constraint inh_check_constraint1 check (f1 > 0);
NOTICE:  merging constraint "inh_check_constraint1" with inherited definition
NOTICE:  merging constraint "inh_check_constraint1" with inherited definition  (seg0 127.0.0.1:25432 pid=11727)
NOTICE:  merging constraint "inh_check_constraint1" with inherited definition  (seg1 127.0.0.1:25433 pid=11728)
NOTICE:  merging constraint "inh_check_constraint1" with inherited definition  (seg2 127.0.0.1:25434 pid=11729)
alter table p1_c1 add constraint inh_check_constraint2 check (f1 < 10);
alter table p1 add constraint inh_check_constraint2 check (f1 < 10);
NOTICE:  merging constraint "inh_check_constraint2" with inherited definition
NOTICE:  merging constraint "inh_check_constraint2" with inherited definition  (seg0 127.0.0.1:25432 pid=11727)
NOTICE:  merging constraint "inh_check_constraint2" with inherited definition  (seg2 127.0.0.1:25434 pid=11729)
NOTICE:  merging constraint "inh_check_constraint2" with inherited definition  (seg1 127.0.0.1:25433 pid=11728)
select conrelid::regclass::text as relname, conname, conislocal, coninhcount
from pg_constraint where conname like 'inh\_check\_constraint%'
order by 1, 2;
 relname |        conname        | conislocal | coninhcount 
---------+-----------------------+------------+-------------
 p1      | inh_check_constraint1 | t          |           0
 p1      | inh_check_constraint2 | t          |           0
 p1_c1   | inh_check_constraint1 | t          |           1
 p1_c1   | inh_check_constraint2 | t          |           1
(4 rows)

drop table p1 cascade;
NOTICE:  drop cascades to table p1_c1
-- Test that a valid child can have not-valid parent, but not vice versa
create table invalid_check_con(f1 int);
NOTICE:  Table doesn't have 'DISTRIBUTED BY' clause -- Using column named 'f1' as the Greenplum Database data distribution key for this table.
HINT:  The 'DISTRIBUTED BY' clause determines the distribution of data. Make sure column(s) chosen are the optimal data distribution key to minimize skew.
create table invalid_check_con_child() inherits(invalid_check_con);
NOTICE:  table has parent, setting distribution columns to match parent table
alter table invalid_check_con_child add constraint inh_check_constraint check(f1 > 0) not valid;
alter table invalid_check_con add constraint inh_check_constraint check(f1 > 0); -- fail
ERROR:  constraint "inh_check_constraint" conflicts with NOT VALID constraint on relation "invalid_check_con_child"
alter table invalid_check_con_child drop constraint inh_check_constraint;
insert into invalid_check_con values(0);
alter table invalid_check_con_child add constraint inh_check_constraint check(f1 > 0);
alter table invalid_check_con add constraint inh_check_constraint check(f1 > 0) not valid;
NOTICE:  merging constraint "inh_check_constraint" with inherited definition
NOTICE:  merging constraint "inh_check_constraint" with inherited definition  (seg1 127.0.0.1:25433 pid=11728)
NOTICE:  merging constraint "inh_check_constraint" with inherited definition  (seg2 127.0.0.1:25434 pid=11729)
NOTICE:  merging constraint "inh_check_constraint" with inherited definition  (seg0 127.0.0.1:25432 pid=11727)
insert into invalid_check_con values(0); -- fail
ERROR:  new row for relation "invalid_check_con" violates check constraint "inh_check_constraint"  (seg0 127.0.0.1:25432 pid=11727)
DETAIL:  Failing row contains (0).
insert into invalid_check_con_child values(0); -- fail
ERROR:  new row for relation "invalid_check_con_child" violates check constraint "inh_check_constraint"  (seg0 127.0.0.1:25432 pid=11727)
DETAIL:  Failing row contains (0).
select conrelid::regclass::text as relname, conname,
       convalidated, conislocal, coninhcount, connoinherit
from pg_constraint where conname like 'inh\_check\_constraint%'
order by 1, 2;
         relname         |       conname        | convalidated | conislocal | coninhcount | connoinherit 
-------------------------+----------------------+--------------+------------+-------------+--------------
 invalid_check_con       | inh_check_constraint | f            | t          |           0 | f
 invalid_check_con_child | inh_check_constraint | t            | t          |           1 | f
(2 rows)

-- We don't drop the invalid_check_con* tables, to test dump/reload with
R
Richard Guo 已提交
1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269
--
-- Test parameterized append plans for inheritance trees
--
create temp table patest0 (id, x) as
  select x, x from generate_series(0,1000) x
  distributed by (id);
create temp table patest1() inherits (patest0);
insert into patest1
  select x, x from generate_series(0,1000) x;
create temp table patest2() inherits (patest0);
insert into patest2
  select x, x from generate_series(0,1000) x;
create index patest0i on patest0(id);
create index patest1i on patest1(id);
create index patest2i on patest2(id);
analyze patest0;
analyze patest1;
analyze patest2;
set enable_seqscan=off;
set enable_bitmapscan=off;
explain (costs off)
select * from patest0 join (select f1 from int4_tbl where f1 < 10 and f1 > -10 limit 1) ss on id = f1;
                                 QUERY PLAN                                 
----------------------------------------------------------------------------
 Gather Motion 3:1  (slice3; segments: 3)
   ->  Hash Join
1270
         Hash Cond: (patest0.id = int4_tbl.f1)
R
Richard Guo 已提交
1271 1272
         ->  Append
               ->  Index Scan using patest0i on patest0
1273 1274
               ->  Index Scan using patest1i on patest1
               ->  Index Scan using patest2i on patest2
R
Richard Guo 已提交
1275 1276 1277 1278 1279 1280 1281
         ->  Hash
               ->  Redistribute Motion 1:3  (slice2; segments: 1)
                     Hash Key: int4_tbl.f1
                     ->  Limit
                           ->  Gather Motion 3:1  (slice1; segments: 3)
                                 ->  Limit
                                       ->  Seq Scan on int4_tbl
1282
                                             Filter: ((f1 < 10) AND (f1 > (-10)))
1283
 Optimizer: Postgres query optimizer
R
Richard Guo 已提交
1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300
(16 rows)

select * from patest0 join (select f1 from int4_tbl where f1 < 10 and f1 > -10 limit 1) ss on id = f1;
 id | x | f1 
----+---+----
  0 | 0 |  0
  0 | 0 |  0
  0 | 0 |  0
(3 rows)

drop index patest2i;
explain (costs off)
select * from patest0 join (select f1 from int4_tbl where f1 < 10 and f1 > -10 limit 1) ss on id = f1;
                                 QUERY PLAN                                 
----------------------------------------------------------------------------
 Gather Motion 3:1  (slice3; segments: 3)
   ->  Hash Join
1301
         Hash Cond: (patest0.id = int4_tbl.f1)
R
Richard Guo 已提交
1302 1303
         ->  Append
               ->  Index Scan using patest0i on patest0
1304 1305
               ->  Index Scan using patest1i on patest1
               ->  Seq Scan on patest2
R
Richard Guo 已提交
1306 1307 1308 1309 1310 1311 1312
         ->  Hash
               ->  Redistribute Motion 1:3  (slice2; segments: 1)
                     Hash Key: int4_tbl.f1
                     ->  Limit
                           ->  Gather Motion 3:1  (slice1; segments: 3)
                                 ->  Limit
                                       ->  Seq Scan on int4_tbl
1313
                                             Filter: ((f1 < 10) AND (f1 > (-10)))
1314
 Optimizer: Postgres query optimizer
R
Richard Guo 已提交
1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352
(16 rows)

select * from patest0 join (select f1 from int4_tbl where f1 < 10 and f1 > -10 limit 1) ss on id = f1;
 id | x | f1 
----+---+----
  0 | 0 |  0
  0 | 0 |  0
  0 | 0 |  0
(3 rows)

reset enable_seqscan;
reset enable_bitmapscan;
drop table patest0 cascade;
NOTICE:  drop cascades to 2 other objects
DETAIL:  drop cascades to table patest1
drop cascades to table patest2
--
-- Test merge-append plans for inheritance trees
--
create table matest0 (id serial primary key, name text);
create table matest1 (id integer primary key) inherits (matest0);
NOTICE:  merging column "id" with inherited definition
create table matest2 (id integer primary key) inherits (matest0);
NOTICE:  merging column "id" with inherited definition
create table matest3 (id integer primary key) inherits (matest0);
NOTICE:  merging column "id" with inherited definition
create index matest0i on matest0 ((1-id));
create index matest1i on matest1 ((1-id));
-- create index matest2i on matest2 ((1-id));  -- intentionally missing
create index matest3i on matest3 ((1-id));
insert into matest1 (name) values ('Test 1');
insert into matest1 (name) values ('Test 2');
insert into matest2 (name) values ('Test 3');
insert into matest2 (name) values ('Test 4');
insert into matest3 (name) values ('Test 5');
insert into matest3 (name) values ('Test 6');
set enable_indexscan = off;  -- force use of seqscan/sort, so no merge
explain (verbose, costs off) select * from matest0 order by 1-id;
1353 1354
                            QUERY PLAN                            
------------------------------------------------------------------
R
Richard Guo 已提交
1355
 Gather Motion 3:1  (slice1; segments: 3)
1356
   Output: matest0.id, matest0.name, ((1 - matest0.id))
1357
   Merge Key: ((1 - matest0.id))
R
Richard Guo 已提交
1358
   ->  Sort
1359
         Output: matest0.id, matest0.name, ((1 - matest0.id))
1360
         Sort Key: ((1 - matest0.id))
R
Richard Guo 已提交
1361
         ->  Result
1362
               Output: matest0.id, matest0.name, (1 - matest0.id)
R
Richard Guo 已提交
1363 1364
               ->  Append
                     ->  Seq Scan on public.matest0
1365 1366 1367 1368 1369 1370 1371
                           Output: matest0.id, matest0.name
                     ->  Seq Scan on public.matest1
                           Output: matest1.id, matest1.name
                     ->  Seq Scan on public.matest2
                           Output: matest2.id, matest2.name
                     ->  Seq Scan on public.matest3
                           Output: matest3.id, matest3.name
1372
 Optimizer: Postgres query optimizer
R
Richard Guo 已提交
1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386
 Settings: enable_indexscan=off, optimizer=on
(19 rows)

select * from matest0 order by 1-id;
 id |  name  
----+--------
  6 | Test 6
  5 | Test 5
  4 | Test 4
  3 | Test 3
  2 | Test 2
  1 | Test 1
(6 rows)

1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
explain (verbose, costs off) select min(1-id) from matest0;
                     QUERY PLAN                     
----------------------------------------------------
 Aggregate
   Output: min((min((1 - matest0.id))))
   ->  Gather Motion 3:1  (slice1; segments: 3)
         Output: (min((1 - matest0.id)))
         ->  Aggregate
               Output: min((1 - matest0.id))
               ->  Append
                     ->  Seq Scan on public.matest0
                           Output: matest0.id
                     ->  Seq Scan on public.matest1
                           Output: matest1.id
                     ->  Seq Scan on public.matest2
                           Output: matest2.id
                     ->  Seq Scan on public.matest3
                           Output: matest3.id
1405
 Optimizer: Postgres query optimizer
1406 1407 1408 1409 1410 1411 1412 1413 1414
 Settings: enable_indexscan=off, optimizer=off
(17 rows)

select min(1-id) from matest0;
 min 
-----
  -5
(1 row)

R
Richard Guo 已提交
1415 1416 1417 1418 1419 1420 1421
reset enable_indexscan;
set enable_seqscan = off;  -- plan with fewest seqscans should be merge
-- GPDB_92_MERGE_FIXME: the cost of bitmap scan is not correct?
-- the cost of merge append with index scan is bigger than the cost
-- of append with bitmapscan + sort
set enable_bitmapscan = off; 
explain (verbose, costs off) select * from matest0 order by 1-id;
1422 1423
                               QUERY PLAN                               
------------------------------------------------------------------------
R
Richard Guo 已提交
1424
 Gather Motion 3:1  (slice1; segments: 3)
1425
   Output: matest0.id, matest0.name, ((1 - matest0.id))
1426
   Merge Key: ((1 - matest0.id))
R
Richard Guo 已提交
1427
   ->  Merge Append
1428
         Sort Key: ((1 - matest0.id))
R
Richard Guo 已提交
1429
         ->  Index Scan using matest0i on public.matest0
1430 1431 1432
               Output: matest0.id, matest0.name, (1 - matest0.id)
         ->  Index Scan using matest1i on public.matest1
               Output: matest1.id, matest1.name, (1 - matest1.id)
R
Richard Guo 已提交
1433
         ->  Sort
1434
               Output: matest2.id, matest2.name, ((1 - matest2.id))
1435
               Sort Key: ((1 - matest2.id))
1436 1437 1438 1439
               ->  Seq Scan on public.matest2
                     Output: matest2.id, matest2.name, (1 - matest2.id)
         ->  Index Scan using matest3i on public.matest3
               Output: matest3.id, matest3.name, (1 - matest3.id)
1440
 Optimizer: Postgres query optimizer
R
Richard Guo 已提交
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454
 Settings: enable_bitmapscan=off, enable_seqscan=off, optimizer=on
(18 rows)

select * from matest0 order by 1-id;
 id |  name  
----+--------
  6 | Test 6
  5 | Test 5
  4 | Test 4
  3 | Test 3
  2 | Test 2
  1 | Test 1
(6 rows)

1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484
explain (verbose, costs off) select min(1-id) from matest0;
                                         QUERY PLAN                                         
--------------------------------------------------------------------------------------------
 Result
   Output: $0
   InitPlan 1 (returns $0)  (slice2)
     ->  Limit
           Output: ((1 - matest0.id))
           ->  Gather Motion 3:1  (slice1; segments: 3)
                 Output: ((1 - matest0.id))
                 Merge Key: ((1 - matest0.id))
                 ->  Result
                       Output: ((1 - matest0.id))
                       ->  Merge Append
                             Sort Key: ((1 - matest0.id))
                             ->  Index Scan using matest0i on public.matest0
                                   Output: matest0.id, (1 - matest0.id)
                                   Index Cond: ((1 - matest0.id) IS NOT NULL)
                             ->  Index Scan using matest1i on public.matest1
                                   Output: matest1.id, (1 - matest1.id)
                                   Index Cond: ((1 - matest1.id) IS NOT NULL)
                             ->  Sort
                                   Output: matest2.id, ((1 - matest2.id))
                                   Sort Key: ((1 - matest2.id))
                                   ->  Index Only Scan using matest2_pkey on public.matest2
                                         Output: matest2.id, (1 - matest2.id)
                                         Filter: ((1 - matest2.id) IS NOT NULL)
                             ->  Index Scan using matest3i on public.matest3
                                   Output: matest3.id, (1 - matest3.id)
                                   Index Cond: ((1 - matest3.id) IS NOT NULL)
1485
 Optimizer: Postgres query optimizer
1486 1487 1488 1489 1490 1491 1492 1493 1494
 Settings: enable_bitmapscan=off, enable_seqscan=off, optimizer=off
(29 rows)

select min(1-id) from matest0;
 min 
-----
  -5
(1 row)

R
Richard Guo 已提交
1495 1496 1497 1498 1499 1500 1501 1502
reset enable_seqscan;
reset enable_bitmapscan;
drop table matest0 cascade;
NOTICE:  drop cascades to 3 other objects
DETAIL:  drop cascades to table matest1
drop cascades to table matest2
drop cascades to table matest3
--
1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534
-- Check that use of an index with an extraneous column doesn't produce
-- a plan with extraneous sorting
--
create table matest0 (a int, b int, c int, d int);
create table matest1 () inherits(matest0);
create index matest0i on matest0 (b, c);
create index matest1i on matest1 (b, c);
set enable_nestloop = off;  -- we want a plan with two MergeAppends
explain (costs off)
select t1.* from matest0 t1, matest0 t2
where t1.b = t2.b and t2.c = t2.d
order by t1.b limit 10;
                                   QUERY PLAN                                    
---------------------------------------------------------------------------------
 Limit
   ->  Gather Motion 3:1  (slice2; segments: 3)
         Merge Key: t1.b
         ->  Limit
               ->  Sort
                     Sort Key: t1.b
                     ->  Hash Join
                           Hash Cond: (t1.b = t2.b)
                           ->  Append
                                 ->  Seq Scan on matest0 t1
                                 ->  Seq Scan on matest1 t1_1
                           ->  Hash
                                 ->  Broadcast Motion 3:3  (slice1; segments: 3)
                                       ->  Append
                                             ->  Seq Scan on matest0 t2
                                                   Filter: (c = d)
                                             ->  Seq Scan on matest1 t2_1
                                                   Filter: (c = d)
1535
 Optimizer: Postgres query optimizer
1536 1537 1538 1539 1540 1541
(19 rows)

reset enable_nestloop;
drop table matest0 cascade;
NOTICE:  drop cascades to table matest1
--
R
Richard Guo 已提交
1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552
-- Test merge-append for UNION ALL append relations
--
set enable_seqscan = off;
set enable_indexscan = on;
set enable_bitmapscan = off;
-- Check handling of duplicated, constant, or volatile targetlist items
explain (costs off)
SELECT thousand, tenthous FROM tenk1
UNION ALL
SELECT thousand, thousand FROM tenk1
ORDER BY thousand, tenthous;
1553 1554
                    QUERY PLAN                    
--------------------------------------------------
R
Richard Guo 已提交
1555
 Gather Motion 3:1  (slice1; segments: 3)
1556
   Merge Key: tenk1.thousand, tenk1.tenthous
R
Richard Guo 已提交
1557
   ->  Sort
1558
         Sort Key: tenk1.thousand, tenk1.tenthous
R
Richard Guo 已提交
1559
         ->  Append
1560 1561
               ->  Seq Scan on tenk1
               ->  Seq Scan on tenk1 tenk1_1
1562
 Optimizer: PQO version 2.74.0
R
Richard Guo 已提交
1563 1564 1565 1566 1567 1568 1569
(8 rows)

explain (costs off)
SELECT thousand, tenthous, thousand+tenthous AS x FROM tenk1
UNION ALL
SELECT 42, 42, hundred FROM tenk1
ORDER BY thousand, tenthous;
1570 1571
                    QUERY PLAN                     
---------------------------------------------------
R
Richard Guo 已提交
1572
 Gather Motion 3:1  (slice1; segments: 3)
1573
   Merge Key: tenk1.thousand, tenk1.tenthous
R
Richard Guo 已提交
1574
   ->  Sort
1575
         Sort Key: tenk1.thousand, tenk1.tenthous
R
Richard Guo 已提交
1576 1577
         ->  Append
               ->  Result
1578
                     ->  Seq Scan on tenk1
R
Richard Guo 已提交
1579
               ->  Result
1580
                     ->  Seq Scan on tenk1 tenk1_1
1581
 Optimizer: PQO version 2.74.0
R
Richard Guo 已提交
1582 1583 1584 1585 1586 1587 1588
(10 rows)

explain (costs off)
SELECT thousand, tenthous FROM tenk1
UNION ALL
SELECT thousand, random()::integer FROM tenk1
ORDER BY thousand, tenthous;
1589 1590
                    QUERY PLAN                     
---------------------------------------------------
R
Richard Guo 已提交
1591
 Gather Motion 3:1  (slice1; segments: 3)
1592
   Merge Key: tenk1.thousand, tenk1.tenthous
R
Richard Guo 已提交
1593
   ->  Sort
1594
         Sort Key: tenk1.thousand, tenk1.tenthous
R
Richard Guo 已提交
1595
         ->  Append
1596
               ->  Seq Scan on tenk1
R
Richard Guo 已提交
1597
               ->  Result
1598
                     ->  Seq Scan on tenk1 tenk1_1
1599
 Optimizer: PQO version 2.74.0
R
Richard Guo 已提交
1600 1601 1602
(9 rows)

-- Check min/max aggregate optimization
1603 1604
-- GPDB: simple union all pull up is disabled in pull_up_subqueries(), so the
-- min/max optimization doesn't kick in.
R
Richard Guo 已提交
1605 1606 1607 1608 1609
explain (costs off)
SELECT min(x) FROM
  (SELECT unique1 AS x FROM tenk1 a
   UNION ALL
   SELECT unique2 AS x FROM tenk1 b) s;
1610 1611
                    QUERY PLAN                     
---------------------------------------------------
R
Richard Guo 已提交
1612 1613 1614 1615
 Aggregate
   ->  Gather Motion 3:1  (slice1; segments: 3)
         ->  Aggregate
               ->  Append
1616 1617
                     ->  Seq Scan on tenk1
                     ->  Seq Scan on tenk1 tenk1_1
1618
 Optimizer: PQO version 2.74.0
R
Richard Guo 已提交
1619 1620 1621 1622 1623 1624 1625
(7 rows)

explain (costs off)
SELECT min(y) FROM
  (SELECT unique1 AS x, unique1 AS y FROM tenk1 a
   UNION ALL
   SELECT unique2 AS x, unique2 AS y FROM tenk1 b) s;
1626 1627
                    QUERY PLAN                     
---------------------------------------------------
R
Richard Guo 已提交
1628 1629 1630 1631 1632
 Aggregate
   ->  Gather Motion 3:1  (slice1; segments: 3)
         ->  Aggregate
               ->  Append
                     ->  Result
1633 1634
                           ->  Seq Scan on tenk1
                     ->  Seq Scan on tenk1 tenk1_1
1635
 Optimizer: PQO version 2.74.0
R
Richard Guo 已提交
1636 1637 1638 1639 1640 1641 1642 1643 1644
(8 rows)

-- XXX planner doesn't recognize that index on unique2 is sufficiently sorted
explain (costs off)
SELECT x, y FROM
  (SELECT thousand AS x, tenthous AS y FROM tenk1 a
   UNION ALL
   SELECT unique2 AS x, unique2 AS y FROM tenk1 b) s
ORDER BY x, y;
1645 1646
                    QUERY PLAN                    
--------------------------------------------------
R
Richard Guo 已提交
1647
 Gather Motion 3:1  (slice1; segments: 3)
1648
   Merge Key: tenk1.thousand, tenk1.tenthous
R
Richard Guo 已提交
1649
   ->  Sort
1650
         Sort Key: tenk1.thousand, tenk1.tenthous
R
Richard Guo 已提交
1651
         ->  Append
1652 1653
               ->  Seq Scan on tenk1
               ->  Seq Scan on tenk1 tenk1_1
1654
 Optimizer: PQO version 2.74.0
R
Richard Guo 已提交
1655 1656
(8 rows)

1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680
-- exercise rescan code path via a repeatedly-evaluated subquery
explain (costs off)
SELECT
    ARRAY(SELECT f.i FROM (
        (SELECT d + g.i FROM generate_series(4, 30, 3) d ORDER BY 1)
        UNION ALL
        (SELECT d + g.i FROM generate_series(0, 30, 5) d ORDER BY 1)
    ) f(i)
    ORDER BY f.i LIMIT 10)
FROM generate_series(1, 3) g(i);
                              QUERY PLAN                              
----------------------------------------------------------------------
 Function Scan on generate_series g
   SubPlan 1
     ->  Limit
           ->  Sort
                 Sort Key: ((d.d + g.i))
                 ->  Append
                       ->  Sort
                             Sort Key: ((d.d + g.i))
                             ->  Function Scan on generate_series d
                       ->  Sort
                             Sort Key: ((d_1.d + g.i))
                             ->  Function Scan on generate_series d_1
1681
 Optimizer: Postgres query optimizer
1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698
(13 rows)

SELECT
    ARRAY(SELECT f.i FROM (
        (SELECT d + g.i FROM generate_series(4, 30, 3) d ORDER BY 1)
        UNION ALL
        (SELECT d + g.i FROM generate_series(0, 30, 5) d ORDER BY 1)
    ) f(i)
    ORDER BY f.i LIMIT 10)
FROM generate_series(1, 3) g(i);
            array             
------------------------------
 {1,5,6,8,11,11,14,16,17,20}
 {2,6,7,9,12,12,15,17,18,21}
 {3,7,8,10,13,13,16,18,19,22}
(3 rows)

R
Richard Guo 已提交
1699 1700 1701
reset enable_seqscan;
reset enable_indexscan;
reset enable_bitmapscan;
1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725
--
-- Check handling of a constant-null CHECK constraint
--
create table cnullparent (f1 int);
create table cnullchild (check (f1 = 1 or f1 = null)) inherits(cnullparent);
insert into cnullchild values(1);
insert into cnullchild values(2);
insert into cnullchild values(null);
select * from cnullparent;
 f1 
----
  2
   
  1
(3 rows)

select * from cnullparent where f1 = 2;
 f1 
----
  2
(1 row)

drop table cnullparent cascade;
NOTICE:  drop cascades to table cnullchild