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 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 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 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 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
|
ij> --
-- Licensed to the Apache Software Foundation (ASF) under one or more
-- contributor license agreements. See the NOTICE file distributed with
-- this work for additional information regarding copyright ownership.
-- The ASF licenses this file to You under the Apache License, Version 2.0
-- (the "License"); you may not use this file except in compliance with
-- the License. You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--
-- this test shows the current supported join functionality
--
-- create some tables
create table t1 (t1_c1 int, t1_c2 char(10));
0 rows inserted/updated/deleted
ij> create table t2 (t2_c1 int, t2_c2 char(10));
0 rows inserted/updated/deleted
ij> create table t3 (t3_c1 int, t3_c2 char(10));
0 rows inserted/updated/deleted
ij> create table t4 (t4_c1 int, t4_c2 char(10));
0 rows inserted/updated/deleted
ij> -- populate the tables
insert into t1 values (1, 't1-row1');
1 row inserted/updated/deleted
ij> insert into t1 values (2, 't1-row2');
1 row inserted/updated/deleted
ij> insert into t2 values (1, 't2-row1');
1 row inserted/updated/deleted
ij> insert into t2 values (2, 't2-row2');
1 row inserted/updated/deleted
ij> insert into t3 values (1, 't3-row1');
1 row inserted/updated/deleted
ij> insert into t3 values (2, 't3-row2');
1 row inserted/updated/deleted
ij> insert into t4 values (1, 't4-row1');
1 row inserted/updated/deleted
ij> insert into t4 values (2, 't4-row2');
1 row inserted/updated/deleted
ij> -- negative test, same exposed name
select * from t1, t1;
ERROR 42X09: The table or alias name 'T1' is used more than once in the FROM list.
ij> -- cartesian products
-- full projection
select * from t1, t2;
T1_C1 |T1_C2 |T2_C1 |T2_C2
---------------------------------------------
1 |t1-row1 |1 |t2-row1
1 |t1-row1 |2 |t2-row2
2 |t1-row2 |1 |t2-row1
2 |t1-row2 |2 |t2-row2
ij> select * from t1 a, t2 b, t3 cc, t4 d order by 1,2,3,4,5,6;
T1_C1 |T1_C2 |T2_C1 |T2_C2 |T3_C1 |T3_C2 |T4_C1 |T4_C2
-------------------------------------------------------------------------------------------
1 |t1-row1 |1 |t2-row1 |1 |t3-row1 |2 |t4-row2
1 |t1-row1 |1 |t2-row1 |1 |t3-row1 |1 |t4-row1
1 |t1-row1 |1 |t2-row1 |2 |t3-row2 |2 |t4-row2
1 |t1-row1 |1 |t2-row1 |2 |t3-row2 |1 |t4-row1
1 |t1-row1 |2 |t2-row2 |1 |t3-row1 |2 |t4-row2
1 |t1-row1 |2 |t2-row2 |1 |t3-row1 |1 |t4-row1
1 |t1-row1 |2 |t2-row2 |2 |t3-row2 |2 |t4-row2
1 |t1-row1 |2 |t2-row2 |2 |t3-row2 |1 |t4-row1
2 |t1-row2 |1 |t2-row1 |1 |t3-row1 |2 |t4-row2
2 |t1-row2 |1 |t2-row1 |1 |t3-row1 |1 |t4-row1
2 |t1-row2 |1 |t2-row1 |2 |t3-row2 |2 |t4-row2
2 |t1-row2 |1 |t2-row1 |2 |t3-row2 |1 |t4-row1
2 |t1-row2 |2 |t2-row2 |1 |t3-row1 |2 |t4-row2
2 |t1-row2 |2 |t2-row2 |1 |t3-row1 |1 |t4-row1
2 |t1-row2 |2 |t2-row2 |2 |t3-row2 |2 |t4-row2
2 |t1-row2 |2 |t2-row2 |2 |t3-row2 |1 |t4-row1
ij> -- reorder columns
select t2.*, t1.* from t1, t2;
T2_C1 |T2_C2 |T1_C1 |T1_C2
---------------------------------------------
1 |t2-row1 |1 |t1-row1
2 |t2-row2 |1 |t1-row1
1 |t2-row1 |2 |t1-row2
2 |t2-row2 |2 |t1-row2
ij> select t2_c2, t1_c2, t1_c1, t2_c1 from t1, t2;
T2_C2 |T1_C2 |T1_C1 |T2_C1
---------------------------------------------
t2-row1 |t1-row1 |1 |1
t2-row2 |t1-row1 |1 |2
t2-row1 |t1-row2 |2 |1
t2-row2 |t1-row2 |2 |2
ij> -- project out columns
select t2_c2, t1_c1 from t1, t2;
T2_C2 |T1_C1
----------------------
t2-row1 |1
t2-row2 |1
t2-row1 |2
t2-row2 |2
ij> select a.t1_c1, cc.t1_c1, e.t1_c1, g.t1_c1, i.t1_c1 from t1 a, t1 cc, t1 e, t1 g, t1 i;
T1_C1 |T1_C1 |T1_C1 |T1_C1 |T1_C1
-----------------------------------------------------------
1 |1 |1 |1 |1
1 |1 |1 |1 |2
1 |1 |1 |2 |1
1 |1 |1 |2 |2
1 |1 |2 |1 |1
1 |1 |2 |1 |2
1 |1 |2 |2 |1
1 |1 |2 |2 |2
1 |2 |1 |1 |1
1 |2 |1 |1 |2
1 |2 |1 |2 |1
1 |2 |1 |2 |2
1 |2 |2 |1 |1
1 |2 |2 |1 |2
1 |2 |2 |2 |1
1 |2 |2 |2 |2
2 |1 |1 |1 |1
2 |1 |1 |1 |2
2 |1 |1 |2 |1
2 |1 |1 |2 |2
2 |1 |2 |1 |1
2 |1 |2 |1 |2
2 |1 |2 |2 |1
2 |1 |2 |2 |2
2 |2 |1 |1 |1
2 |2 |1 |1 |2
2 |2 |1 |2 |1
2 |2 |1 |2 |2
2 |2 |2 |1 |1
2 |2 |2 |1 |2
2 |2 |2 |2 |1
2 |2 |2 |2 |2
ij> -- project/restricts
select a.t1_c1, b.t1_c1, cc.t1_c1, d.t1_c1, e.t1_c1, f.t1_c1, g.t1_c1, h.t1_c1, i.t1_c1, j.t1_c1
from t1 a, t1 b, t1 cc, t1 d, t1 e, t1 f, t1 g, t1 h, t1 i, t1 j
where a.t1_c2 = b.t1_c2 and b.t1_c2 = cc.t1_c2 and cc.t1_c2 = d.t1_c2 and
d.t1_c2 = e.t1_c2 and e.t1_c2 = f.t1_c2 and f.t1_c2 = g.t1_c2 and
g.t1_c2 = h.t1_c2 and h.t1_c2 = i.t1_c2 and i.t1_c2 = j.t1_c2;
T1_C1 |T1_C1 |T1_C1 |T1_C1 |T1_C1 |T1_C1 |T1_C1 |T1_C1 |T1_C1 |T1_C1
-----------------------------------------------------------------------------------------------------------------------
1 |1 |1 |1 |1 |1 |1 |1 |1 |1
2 |2 |2 |2 |2 |2 |2 |2 |2 |2
ij> select a.t1_c1, b.t1_c1, cc.t1_c1, d.t1_c1, e.t1_c1, f.t1_c1, g.t1_c1, h.t1_c1, i.t1_c1, j.t1_c1
from t1 a, t1 b, t1 cc, t1 d, t1 e, t1 f, t1 g, t1 h, t1 i, t1 j
where a.t1_c1 = 1 and b.t1_c1 = 1 and cc.t1_c1 = 1 and d.t1_c1 = 1 and e.t1_c1 = 1 and
f.t1_c1 = 1 and g.t1_c1 = 1 and h.t1_c1 = 1 and i.t1_c1 = 1 and
a.t1_c2 = b.t1_c2 and b.t1_c2 = cc.t1_c2 and cc.t1_c2 = d.t1_c2 and
d.t1_c2 = e.t1_c2 and e.t1_c2 = f.t1_c2 and f.t1_c2 = g.t1_c2 and
g.t1_c2 = h.t1_c2 and h.t1_c2 = i.t1_c2 and i.t1_c2 = j.t1_c2;
T1_C1 |T1_C1 |T1_C1 |T1_C1 |T1_C1 |T1_C1 |T1_C1 |T1_C1 |T1_C1 |T1_C1
-----------------------------------------------------------------------------------------------------------------------
1 |1 |1 |1 |1 |1 |1 |1 |1 |1
ij> -- project out entire tables
select 1, 2 from t1, t2;
1 |2
-----------------------
1 |2
1 |2
1 |2
1 |2
ij> select 1, t1.t1_c1 from t1, t2;
1 |T1_C1
-----------------------
1 |1
1 |1
1 |2
1 |2
ij> select t2.t2_c2,1 from t1, t2;
T2_C2 |2
----------------------
t2-row1 |1
t2-row2 |1
t2-row1 |1
t2-row2 |1
ij> -- bug #306
select c.t1_c1 from (select a.t1_c1 from t1 a, t1 b) c, t1 d where c.t1_c1 = d.t1_c1;
T1_C1
-----------
1
1
2
2
ij> -- create a table for testing inserts
create table instab (instab_c1 int, instab_c2 char(10), instab_c3 int,
instab_c4 char(10));
0 rows inserted/updated/deleted
ij> -- insert select with joins
-- cartesian product
insert into instab select * from t1, t2;
4 rows inserted/updated/deleted
ij> select * from instab;
INSTAB_C1 |INSTAB_C2 |INSTAB_C3 |INSTAB_C4
---------------------------------------------
1 |t1-row1 |1 |t2-row1
1 |t1-row1 |2 |t2-row2
2 |t1-row2 |1 |t2-row1
2 |t1-row2 |2 |t2-row2
ij> delete from instab;
4 rows inserted/updated/deleted
ij> insert into instab (instab_c1, instab_c2, instab_c3, instab_c4)
select * from t1, t2;
4 rows inserted/updated/deleted
ij> select * from instab;
INSTAB_C1 |INSTAB_C2 |INSTAB_C3 |INSTAB_C4
---------------------------------------------
1 |t1-row1 |1 |t2-row1
1 |t1-row1 |2 |t2-row2
2 |t1-row2 |1 |t2-row1
2 |t1-row2 |2 |t2-row2
ij> delete from instab;
4 rows inserted/updated/deleted
ij> insert into instab (instab_c1, instab_c2, instab_c3, instab_c4)
select t2_c1, t2_c2, t1_c1, t1_c2 from t1, t2;
4 rows inserted/updated/deleted
ij> select * from instab;
INSTAB_C1 |INSTAB_C2 |INSTAB_C3 |INSTAB_C4
---------------------------------------------
1 |t2-row1 |1 |t1-row1
2 |t2-row2 |1 |t1-row1
1 |t2-row1 |2 |t1-row2
2 |t2-row2 |2 |t1-row2
ij> delete from instab;
4 rows inserted/updated/deleted
ij> insert into instab (instab_c3, instab_c1, instab_c2, instab_c4)
select t2_c1, t1_c1, t1_c2, t2_c2 from t1, t2;
4 rows inserted/updated/deleted
ij> select * from instab;
INSTAB_C1 |INSTAB_C2 |INSTAB_C3 |INSTAB_C4
---------------------------------------------
1 |t1-row1 |1 |t2-row1
1 |t1-row1 |2 |t2-row2
2 |t1-row2 |1 |t2-row1
2 |t1-row2 |2 |t2-row2
ij> delete from instab;
4 rows inserted/updated/deleted
ij> -- projection
insert into instab (instab_c1, instab_c3)
select t1_c1, t2_c1 from t1, t2;
4 rows inserted/updated/deleted
ij> select * from instab;
INSTAB_C1 |INSTAB_C2 |INSTAB_C3 |INSTAB_C4
---------------------------------------------
1 |NULL |1 |NULL
1 |NULL |2 |NULL
2 |NULL |1 |NULL
2 |NULL |2 |NULL
ij> delete from instab;
4 rows inserted/updated/deleted
ij> -- project out 1 or more tables from join
insert into instab select 1, '2', 3, '4' from t1, t2;
4 rows inserted/updated/deleted
ij> select * from instab;
INSTAB_C1 |INSTAB_C2 |INSTAB_C3 |INSTAB_C4
---------------------------------------------
1 |2 |3 |4
1 |2 |3 |4
1 |2 |3 |4
1 |2 |3 |4
ij> delete from instab;
4 rows inserted/updated/deleted
ij> insert into instab select 1, t1.t1_c2, 3, t1.t1_c2 from t1, t2;
4 rows inserted/updated/deleted
ij> select * from instab;
INSTAB_C1 |INSTAB_C2 |INSTAB_C3 |INSTAB_C4
---------------------------------------------
1 |t1-row1 |3 |t1-row1
1 |t1-row1 |3 |t1-row1
1 |t1-row2 |3 |t1-row2
1 |t1-row2 |3 |t1-row2
ij> delete from instab;
4 rows inserted/updated/deleted
ij> insert into instab select t2.t2_c1, '2', t2.t2_c1, '4' from t1, t2;
4 rows inserted/updated/deleted
ij> select * from instab;
INSTAB_C1 |INSTAB_C2 |INSTAB_C3 |INSTAB_C4
---------------------------------------------
1 |2 |1 |4
2 |2 |2 |4
1 |2 |1 |4
2 |2 |2 |4
ij> delete from instab;
4 rows inserted/updated/deleted
ij> ------------------------------------------
-- test optimizations where we push around
-- predicates (remapColumnReferences)
------------------------------------------
-- case
select t1_c1 from t1, t2 where (case when t1_c1 = 1 then t2_c2 end) = t2_c2;
T1_C1
-----------
1
1
ij> -- CHAR built-in function
select t1_c1 from t1, t2 where CHAR(t1_c1) = t2_c2;
T1_C1
-----------
ij> -- logical operator OR
select t1_c1 from t1, t2 where t1_c1 = 1 or t2_c1 = 2;
T1_C1
-----------
1
1
2
ij> -- logical operator AND
select t1_c1 from t1, t2 where t1_c1 = 2147483647 and 2147483647 = t2_c1;
T1_C1
-----------
ij> -- beetle 5421
-- INT built-in function
select t1_c1 from t1, t2 where INT(t1_c1) = t2_c1;
T1_C1
-----------
1
2
ij> select t1_c1 from t1, t2 where t1_c1 = INT(2147483647) and INT(2147483647) = t2_c1;
T1_C1
-----------
ij> -- transitive closure - verify join condition doesn't get dropped
create table x(c1 int);
0 rows inserted/updated/deleted
ij> create table y(c1 int);
0 rows inserted/updated/deleted
ij> insert into x values 1, 2, null;
3 rows inserted/updated/deleted
ij> insert into y values 1, 2, null;
3 rows inserted/updated/deleted
ij> select * from x,y where x.c1 = y.c1 and x.c1 = 1 and y.c1 = 2;
C1 |C1
-----------------------
ij> select * from x,y where x.c1 = y.c1 and x.c1 is null;
C1 |C1
-----------------------
ij> select * from x,y where x.c1 = y.c1 and x.c1 is null and y.c1 = 2;
C1 |C1
-----------------------
ij> select * from x,y where x.c1 = y.c1 and x.c1 is null and y.c1 is null;
C1 |C1
-----------------------
ij> -- DERBY-2526: join node flattening leads to incorrect transitive closure,
-- which in turn results in incorrect results.
-- Ex. 1: As posted to DERBY-2526:
create table b2 (c1 int, c2 int, c3 char(1), c4 int, c5 int, c6 int);
0 rows inserted/updated/deleted
ij> create table b4 (c7 int, c4 int, c6 int);
0 rows inserted/updated/deleted
ij> create table b3 (c8 int, c9 int, c5 int, c6 int);
0 rows inserted/updated/deleted
ij> create table b (c1 int, c2 int, c3 char(1), c4 int, c5 int, c6 int);
0 rows inserted/updated/deleted
ij> create view bvw (c5, c1 ,c2 ,c3 ,c4) as
select c5, c1 ,c2 ,c3 ,c4 from b2 union
select c5, c1 ,c2 ,c3 ,c4 from b;
0 rows inserted/updated/deleted
ij> create view bvw2 (c1 ,c2 ,c3 ,c4 ,c5) as
select c1 ,c2 ,c3 ,c4 ,c5 from b2 union
select c1 ,c2 ,c3 ,c4 ,c5 from b;
0 rows inserted/updated/deleted
ij> insert into b4 (c7,c4,c6) values (4, 42, 31);
1 row inserted/updated/deleted
ij> insert into b2 (c5,c1,c3,c4,c6) values (3,4, 'F',43,23);
1 row inserted/updated/deleted
ij> insert into b3 (c5,c8,c9,c6) values (2,3,19,28);
1 row inserted/updated/deleted
ij> -- Should see 1 row for *both* of these queries.
select b3.* from b3 join bvw on (b3.c8 = bvw.c5) join b4 on (bvw.c1 = b4.c7) where b4.c4 = 42;
C8 |C9 |C5 |C6
-----------------------------------------------
3 |19 |2 |28
ij> select b3.* from b3 join bvw2 on (b3.c8 = bvw2.c5) join b4 on (bvw2.c1 = b4.c7) where b4.c4 = 42;
C8 |C9 |C5 |C6
-----------------------------------------------
3 |19 |2 |28
ij> -- Cleanup.
drop view bvw;
0 rows inserted/updated/deleted
ij> drop view bvw2;
0 rows inserted/updated/deleted
ij> drop table b;
0 rows inserted/updated/deleted
ij> drop table b2;
0 rows inserted/updated/deleted
ij> drop table b3;
0 rows inserted/updated/deleted
ij> drop table b4;
0 rows inserted/updated/deleted
ij> -- Ex. 2: Simplified repro.
create table b1 (c0 int);
0 rows inserted/updated/deleted
ij> create table xx (c1 int, c2 int);
0 rows inserted/updated/deleted
ij> create table b2 (c3 int, c4 int);
0 rows inserted/updated/deleted
ij> insert into b1 values 1;
1 row inserted/updated/deleted
ij> insert into xx values (0, 1);
1 row inserted/updated/deleted
ij> insert into b2 values (0, 2);
1 row inserted/updated/deleted
ij> -- Following should return 1 row.
select b1.* from
b1 JOIN (select * from xx) VW(c1,c2) on (b1.c0 = vw.c2)
JOIN b2 on (vw.c1 = b2.c3);
C0
-----------
1
ij> -- Try out various correlation name combinations to make sure that
-- correct column remapping occurs regardless of correlation name.
select b1.* from
b1 JOIN (select * from xx) VW(ccx1,ccx2) on (b1.c0 = vw.ccx2)
JOIN b2 on (vw.ccx1 = b2.c3);
C0
-----------
1
ij> select b1.* from
b1 JOIN (select c1 as ccx1, c2 as ccx2 from xx) VW(ccx1,ccx2) on (b1.c0 = vw.ccx2)
JOIN b2 on (vw.ccx1 = b2.c3);
C0
-----------
1
ij> select b1.* from
b1 JOIN (select c1 as ccx1, c2 as ccx2 from xx) VW(x1,x2) on (b1.c0 = vw.x2)
JOIN b2 on (vw.x1 = b2.c3);
C0
-----------
1
ij> select b1.* from
b1 JOIN (select c1 as ccx1, c2 as ccx2 from xx) VW(c1,c2) on (b1.c0 = vw.c2)
JOIN b2 on (vw.c1 = b2.c3);
C0
-----------
1
ij> -- Cleanup.
drop table b1;
0 rows inserted/updated/deleted
ij> drop table b2;
0 rows inserted/updated/deleted
ij> drop table xx;
0 rows inserted/updated/deleted
ij> -- DERBY-3023: join node flattening leads to incorrect search transitive
-- closure, which in turn leads to incorrect results.
CREATE TABLE d3023_t1 (A INTEGER, B INTEGER);
0 rows inserted/updated/deleted
ij> insert into d3023_t1 values (1, 1), (-2, 2), (3, 3);
3 rows inserted/updated/deleted
ij> CREATE TABLE d3023_t2 (C INTEGER, D INTEGER);
0 rows inserted/updated/deleted
ij> insert into d3023_t2 values (1, -1), (2, -2), (3, -3);
3 rows inserted/updated/deleted
ij> CREATE TABLE d3023_t3 (I INTEGER, J INTEGER);
0 rows inserted/updated/deleted
ij> insert into d3023_t3 values (-2, 1), (-3, -2);
2 rows inserted/updated/deleted
ij> CREATE TABLE d3023_t4 (X INTEGER, Y INTEGER);
0 rows inserted/updated/deleted
ij> insert into d3023_t4 values (1, 1), (2, 2), (3, 3);
3 rows inserted/updated/deleted
ij> -- Incremental queries building up to the query in question...
select distinct * from
d3023_t1 left outer join d3023_t2 on d3023_t1.a = d3023_t2.d;
A |B |C |D
-----------------------------------------------
-2 |2 |2 |-2
1 |1 |NULL |NULL
3 |3 |NULL |NULL
ij> select distinct * from
d3023_t1 left outer join d3023_t2 on d3023_t1.a = d3023_t2.d
where d3023_t1.a = -2;
A |B |C |D
-----------------------------------------------
-2 |2 |2 |-2
ij> select distinct * from
d3023_t1 left outer join d3023_t2 on d3023_t1.a = d3023_t2.d
inner join d3023_t3 on d3023_t1.a = d3023_t3.j;
A |B |C |D |I |J
-----------------------------------------------------------------------
-2 |2 |2 |-2 |-3 |-2
1 |1 |NULL |NULL |-2 |1
ij> select distinct * from
d3023_t1 left outer join d3023_t2 on d3023_t1.a = d3023_t2.d
inner join d3023_t3 on d3023_t1.a = d3023_t3.j
where d3023_t1.a = -2;
A |B |C |D |I |J
-----------------------------------------------------------------------
-2 |2 |2 |-2 |-3 |-2
ij> -- This query only returns a single row, even without the
-- explicit search predicate.
select distinct * from
d3023_t1 left outer join d3023_t2 on d3023_t1.a = d3023_t2.d
inner join d3023_t3 on d3023_t1.a = d3023_t3.j
inner join d3023_t4 on d3023_t2.c = d3023_t4.x;
A |B |C |D |I |J |X |Y
-----------------------------------------------------------------------------------------------
-2 |2 |2 |-2 |-3 |-2 |2 |2
ij> -- Slight variation of the same query. Add a search predicate
-- enforcing "d3023_t1.a = -2" to the join condition. Since the
-- row we saw in the previous query satisifies that predicate,
-- we should see the same row again.
select distinct * from
d3023_t1 left outer join d3023_t2
on d3023_t1.a = d3023_t2.d AND d3023_t1.a = -2
inner join d3023_t3 on d3023_t1.a = d3023_t3.j
inner join d3023_t4 on d3023_t2.c = d3023_t4.x;
A |B |C |D |I |J |X |Y
-----------------------------------------------------------------------------------------------
-2 |2 |2 |-2 |-3 |-2 |2 |2
ij> -- Same query as above, but with the predicate "d3023_t1.a = -2"
-- sitting at the top-most (outer) SELECT. That makes the predicate
-- available for inclusion in the "search transitive closure" logic
-- for the outer SELECT. That said, prior to the fix for DERBY-3023,
-- search transitive closure was incorrectly adding a new predicate,
-- d3023_t4.x = -2, to the query. This was because two different
-- column references were incorrectly mapped to the same column
-- position w.r.t. the outer join: i.e. "d3023_t1.a" in the search
-- predicate "d3023_t1.a = -2" AND "d3023_t2.c" in the join predicate
-- "d3023_t2.c = d3023_t4.x" were BOTH referencing the first column
-- in the HalfOuterJoinNode. As a result, the search transitive
-- closure logic thought that there was transitive equality between
-- the two predicates, which was incorrect. That in turn caused the
-- query to return incorrect results (no rows). With the fix for
-- DERBY-3023, this query should now return a single row.
select distinct * from
d3023_t1 left outer join d3023_t2 on d3023_t1.a = d3023_t2.d
inner join d3023_t3 on d3023_t1.a = d3023_t3.j
inner join d3023_t4 on d3023_t2.c = d3023_t4.x
where d3023_t1.a = -2;
A |B |C |D |I |J |X |Y
-----------------------------------------------------------------------------------------------
-2 |2 |2 |-2 |-3 |-2 |2 |2
ij> -- Cleanup.
drop table d3023_t1;
0 rows inserted/updated/deleted
ij> drop table d3023_t2;
0 rows inserted/updated/deleted
ij> drop table d3023_t3;
0 rows inserted/updated/deleted
ij> drop table d3023_t4;
0 rows inserted/updated/deleted
ij> -- Beetle task 5000. Bug found by Websphere. Should not return any rows.
select t1_c1, t1_c2, t2_c1, t2_c2
from t1, t2
where t1_c1 = t2_c1
and t1_c1 = 1
and t2_c1 <> 1;
T1_C1 |T1_C2 |T2_C1 |T2_C2
---------------------------------------------
ij> -- Beetle task 4736
create table a (a1 int not null primary key, a2 int, a3 int, a4 int, a5 int, a6 int);
0 rows inserted/updated/deleted
ij> create table b (b1 int not null primary key, b2 int, b3 int, b4 int, b5 int, b6 int);
0 rows inserted/updated/deleted
ij> create table c (c1 int not null, c2 int, c3 int not null, c4 int, c5 int, c6 int);
0 rows inserted/updated/deleted
ij> create table d (d1 int not null, d2 int, d3 int not null, d4 int, d5 int, d6 int);
0 rows inserted/updated/deleted
ij> alter table c add primary key (c1,c3);
0 rows inserted/updated/deleted
ij> alter table d add primary key (d1,d3);
0 rows inserted/updated/deleted
ij> insert into a values (1,1,3,6,NULL,2),(2,3,2,4,2,2),(3,4,2,NULL,NULL,NULL),
(4,NULL,4,2,5,2),(5,2,3,5,7,4),(7,1,4,2,3,4),
(8,8,8,8,8,8),(6,7,3,2,3,4);
8 rows inserted/updated/deleted
ij> insert into b values (6,7,2,3,NULL,1),(4,5,9,6,3,2),(1,4,2,NULL,NULL,NULL),
(5,NULL,2,2,5,2),(3,2,3,3,1,4),(7,3,3,3,3,3),(9,3,3,3,3,3);
7 rows inserted/updated/deleted
ij> insert into c values (3,7,7,3,NULL,1),(8,3,9,1,3,2),(1,4,1,NULL,NULL,NULL),
(3,NULL,1,2,4,2),(2,2,5,3,2,4),(1,7,2,3,1,1),(3,8,4,2,4,6);
7 rows inserted/updated/deleted
ij> insert into d values (1,7,2,3,NULL,3),(2,3,9,1,1,2),(2,2,2,NULL,3,2),
(1,NULL,3,2,2,1),(2,2,5,3,2,3),(2,5,6,3,7,2);
6 rows inserted/updated/deleted
ij> select a1,b1,c1,c3,d1,d3
from D join (A left outer join (B join C on b2=c2) on a1=b1)
on d3=b3 and d1=a2;
A1 |B1 |C1 |C3 |D1 |D3
-----------------------------------------------------------------------
1 |1 |1 |1 |1 |2
7 |7 |8 |9 |1 |3
ij> select a1,b1,c1,c3,d1,d3
from D join ((B join C on b2=c2) right outer join A on a1=b1)
on d3=b3 and d1=a2;
A1 |B1 |C1 |C3 |D1 |D3
-----------------------------------------------------------------------
1 |1 |1 |1 |1 |2
7 |7 |8 |9 |1 |3
ij> -- JIRA 1089: demonstrate that a table with an identity column generated
-- always can be used as the target of an insert-as-select join:
create table j1089_source (source_id int);
0 rows inserted/updated/deleted
ij> insert into j1089_source values (0);
1 row inserted/updated/deleted
ij> create table j1089_dest (
dest_id int not null primary key generated always as identity,
source_id_1 int not null,
source_id_2 int not null);
0 rows inserted/updated/deleted
ij> insert into j1089_dest (source_id_1, source_id_2)
select s1.source_id, s2.source_id
from j1089_source as s1
join j1089_source as s2 on 1 = 1;
1 row inserted/updated/deleted
ij> select * from j1089_dest;
DEST_ID |SOURCE_ID_1|SOURCE_ID_2
-----------------------------------
1 |0 |0
ij> -- DERBY-3538 NullPointerException during execution for query with LEFT
-- OUTER JOIN whose inner table selects all constants.
create table t3538 (i int, j int);
0 rows inserted/updated/deleted
ij> insert into t3538 values (-1, -2), (-2, -4), (-3, -9);
3 rows inserted/updated/deleted
ij> select * from
t3538 left outer join
(select -1 a, 1 b from t3538) x0 --DERBY-PROPERTIES joinStrategy=NESTEDLOOP
on x0.a = t3538.i;
I |J |A |B
-----------------------------------------------
-1 |-2 |-1 |1
-1 |-2 |-1 |1
-1 |-2 |-1 |1
-2 |-4 |NULL |NULL
-3 |-9 |NULL |NULL
ij> --- regression test for an old optimizer problem; when the bug occurred,
-- hash join queries with 'or' would return incorrect results.
create table t5929_1 ( i int, j int, k int);
0 rows inserted/updated/deleted
ij> create table t5929_2 ( i int, j int, k int);
0 rows inserted/updated/deleted
ij> insert into t5929_1 values (1, 1, 1), (2, 1, 2);
2 rows inserted/updated/deleted
ij> insert into t5929_1 select i+2, j, k from t5929_1;
2 rows inserted/updated/deleted
ij> insert into t5929_1 select i+4, j, k from t5929_1;
4 rows inserted/updated/deleted
ij> insert into t5929_2 select * from t5929_1;
8 rows inserted/updated/deleted
ij> -- This query should return 32 rows, but it returned 64 before fix
select * from --DERBY-PROPERTIES joinOrder=fixed
t5929_1, t5929_2 --DERBY-PROPERTIES joinStrategy=nestedLoop
where t5929_1.j=t5929_2.j and (t5929_2.j=1 and (t5929_2.k=1 or t5929_2.j=4));
I |J |K |I |J |K
-----------------------------------------------------------------------
1 |1 |1 |1 |1 |1
1 |1 |1 |3 |1 |1
1 |1 |1 |5 |1 |1
1 |1 |1 |7 |1 |1
2 |1 |2 |1 |1 |1
2 |1 |2 |3 |1 |1
2 |1 |2 |5 |1 |1
2 |1 |2 |7 |1 |1
3 |1 |1 |1 |1 |1
3 |1 |1 |3 |1 |1
3 |1 |1 |5 |1 |1
3 |1 |1 |7 |1 |1
4 |1 |2 |1 |1 |1
4 |1 |2 |3 |1 |1
4 |1 |2 |5 |1 |1
4 |1 |2 |7 |1 |1
5 |1 |1 |1 |1 |1
5 |1 |1 |3 |1 |1
5 |1 |1 |5 |1 |1
5 |1 |1 |7 |1 |1
6 |1 |2 |1 |1 |1
6 |1 |2 |3 |1 |1
6 |1 |2 |5 |1 |1
6 |1 |2 |7 |1 |1
7 |1 |1 |1 |1 |1
7 |1 |1 |3 |1 |1
7 |1 |1 |5 |1 |1
7 |1 |1 |7 |1 |1
8 |1 |2 |1 |1 |1
8 |1 |2 |3 |1 |1
8 |1 |2 |5 |1 |1
8 |1 |2 |7 |1 |1
ij> -- This query should return identical to the above query
select * from --DERBY-PROPERTIES joinOrder=fixed
t5929_1, t5929_2 --DERBY-PROPERTIES joinStrategy=hash
where t5929_1.j=t5929_2.j and (t5929_2.j=1 and t5929_2.k=1);
I |J |K |I |J |K
-----------------------------------------------------------------------
1 |1 |1 |1 |1 |1
1 |1 |1 |3 |1 |1
1 |1 |1 |5 |1 |1
1 |1 |1 |7 |1 |1
2 |1 |2 |1 |1 |1
2 |1 |2 |3 |1 |1
2 |1 |2 |5 |1 |1
2 |1 |2 |7 |1 |1
3 |1 |1 |1 |1 |1
3 |1 |1 |3 |1 |1
3 |1 |1 |5 |1 |1
3 |1 |1 |7 |1 |1
4 |1 |2 |1 |1 |1
4 |1 |2 |3 |1 |1
4 |1 |2 |5 |1 |1
4 |1 |2 |7 |1 |1
5 |1 |1 |1 |1 |1
5 |1 |1 |3 |1 |1
5 |1 |1 |5 |1 |1
5 |1 |1 |7 |1 |1
6 |1 |2 |1 |1 |1
6 |1 |2 |3 |1 |1
6 |1 |2 |5 |1 |1
6 |1 |2 |7 |1 |1
7 |1 |1 |1 |1 |1
7 |1 |1 |3 |1 |1
7 |1 |1 |5 |1 |1
7 |1 |1 |7 |1 |1
8 |1 |2 |1 |1 |1
8 |1 |2 |3 |1 |1
8 |1 |2 |5 |1 |1
8 |1 |2 |7 |1 |1
ij> select * from --DERBY-PROPERTIES joinOrder=fixed
t5929_1, t5929_2 --DERBY-PROPERTIES joinStrategy=hash
where t5929_1.j=t5929_2.j and (t5929_2.j=1 and (t5929_2.k=1 or t5929_2.j+1=5));
I |J |K |I |J |K
-----------------------------------------------------------------------
1 |1 |1 |1 |1 |1
1 |1 |1 |3 |1 |1
1 |1 |1 |5 |1 |1
1 |1 |1 |7 |1 |1
2 |1 |2 |1 |1 |1
2 |1 |2 |3 |1 |1
2 |1 |2 |5 |1 |1
2 |1 |2 |7 |1 |1
3 |1 |1 |1 |1 |1
3 |1 |1 |3 |1 |1
3 |1 |1 |5 |1 |1
3 |1 |1 |7 |1 |1
4 |1 |2 |1 |1 |1
4 |1 |2 |3 |1 |1
4 |1 |2 |5 |1 |1
4 |1 |2 |7 |1 |1
5 |1 |1 |1 |1 |1
5 |1 |1 |3 |1 |1
5 |1 |1 |5 |1 |1
5 |1 |1 |7 |1 |1
6 |1 |2 |1 |1 |1
6 |1 |2 |3 |1 |1
6 |1 |2 |5 |1 |1
6 |1 |2 |7 |1 |1
7 |1 |1 |1 |1 |1
7 |1 |1 |3 |1 |1
7 |1 |1 |5 |1 |1
7 |1 |1 |7 |1 |1
8 |1 |2 |1 |1 |1
8 |1 |2 |3 |1 |1
8 |1 |2 |5 |1 |1
8 |1 |2 |7 |1 |1
ij> select * from --DERBY-PROPERTIES joinOrder=fixed
t5929_2, t5929_1 --DERBY-PROPERTIES joinStrategy=hash
where t5929_1.j=t5929_2.j and (t5929_2.j=1 and (t5929_2.k=1 or t5929_2.j=4));
I |J |K |I |J |K
-----------------------------------------------------------------------
1 |1 |1 |1 |1 |1
1 |1 |1 |2 |1 |2
1 |1 |1 |3 |1 |1
1 |1 |1 |4 |1 |2
1 |1 |1 |5 |1 |1
1 |1 |1 |6 |1 |2
1 |1 |1 |7 |1 |1
1 |1 |1 |8 |1 |2
3 |1 |1 |1 |1 |1
3 |1 |1 |2 |1 |2
3 |1 |1 |3 |1 |1
3 |1 |1 |4 |1 |2
3 |1 |1 |5 |1 |1
3 |1 |1 |6 |1 |2
3 |1 |1 |7 |1 |1
3 |1 |1 |8 |1 |2
5 |1 |1 |1 |1 |1
5 |1 |1 |2 |1 |2
5 |1 |1 |3 |1 |1
5 |1 |1 |4 |1 |2
5 |1 |1 |5 |1 |1
5 |1 |1 |6 |1 |2
5 |1 |1 |7 |1 |1
5 |1 |1 |8 |1 |2
7 |1 |1 |1 |1 |1
7 |1 |1 |2 |1 |2
7 |1 |1 |3 |1 |1
7 |1 |1 |4 |1 |2
7 |1 |1 |5 |1 |1
7 |1 |1 |6 |1 |2
7 |1 |1 |7 |1 |1
7 |1 |1 |8 |1 |2
ij> -----------------------------------
-- clean up
----------------------------------
drop table a;
0 rows inserted/updated/deleted
ij> drop table b;
0 rows inserted/updated/deleted
ij> drop table c;
0 rows inserted/updated/deleted
ij> drop table d;
0 rows inserted/updated/deleted
ij> drop table t1;
0 rows inserted/updated/deleted
ij> drop table t2;
0 rows inserted/updated/deleted
ij> drop table t3;
0 rows inserted/updated/deleted
ij> drop table t4;
0 rows inserted/updated/deleted
ij> drop table instab;
0 rows inserted/updated/deleted
ij> drop table x;
0 rows inserted/updated/deleted
ij> drop table y;
0 rows inserted/updated/deleted
ij> drop table j1089_source;
0 rows inserted/updated/deleted
ij> drop table j1089_dest;
0 rows inserted/updated/deleted
ij> drop table t3538;
0 rows inserted/updated/deleted
ij> drop table t5929_1;
0 rows inserted/updated/deleted
ij> drop table t5929_2;
0 rows inserted/updated/deleted
ij>
|