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 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 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 1097 1098 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 1133 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 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 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 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 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 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 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 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 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 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553
|
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.memory.TriggerTests
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.
*/
package org.apache.derbyTesting.functionTests.tests.memory;
import java.sql.*;
import java.util.Properties;
import junit.framework.Test;
import org.apache.derbyTesting.functionTests.util.streams.LoopingAlphabetStream;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.CleanDatabaseTestSetup;
import org.apache.derbyTesting.junit.SystemPropertyTestSetup;
import org.apache.derbyTesting.junit.TestConfiguration;
import org.apache.derbyTesting.junit.JDBC;
/**
* Repro for DERBY-1482:
* Update triggers on tables with blob columns stream blobs
* into memory even when the blobs are not referenced/accessed.
*/
public class TriggerTests extends BaseJDBCTestCase {
final int lobsize = 50000*1024;
boolean testWithLargeDataInLOB = true;
boolean isDerby1482Fixed = true;
/**
* Insert trigger tests
* ****************
* 1)test1InsertAfterTrigger
* This test creates an AFTER INSERT trigger which inserts non-lob
* columns into another table.
* ****************
* 2)test1InsertAfterTriggerStoredProc
* The test case is exactly like test1InsertAfterTrigger except that the
* trigger action is a stored procedure call. The work done by the trigger
* action SQL in test1InsertAfterTrigger gets done inside the stored procedure
* for this test.
* ****************
* 3)test1InsertBeforeTrigger
* This test creates a BEFORE INSERT trigger which selects
* columns from another table using "new" non-lob column for
* join clause.
* ****************
* 4)test1InsertBeforeTriggerStoredProc
* The test case is exactly like test1InsertBeforeTrigger except that the
* trigger action is a stored procedure call. The work done by the trigger
* action SQL in test1InsertBeforeTrigger gets done inside the stored procedure
* for this test.
* ****************
* Can't write stored procedure calls for trigger actions for test2
* because I will need to pass LOBs as parameters to the stored
* procedure which is not possible at this point.
* ****************
* 5)test2InsertAfterTriggerAccessLOB
* This test creates an AFTER INSERT trigger which in it's trigger action
* inserts lob columns from triggering table into another table. So, this
* test does access the LOB from the triggering table inside the trigger
* action.
* ****************
* 6)test2InsertAfterTriggerUpdatedLOB
* This test creates an AFTER INSERT trigger which in it's trigger action
* updates a lob column from the row just inserted. So, this test does
* update the LOB from the triggering table inside the trigger
* action.
* ****************
* 7)test2InsertBeforeTriggerAccessLOB
* This test creates a BEFORE INSERT trigger which selects "new"
* lob column from just inserted row. This test does access the
* LOB.
* ****************
* 8)test5InsertAfterTriggerNoReferencingClause
* This test creates an AFTER INSERT trigger but has not REFERENCING
* clause, meaning that before and after values are not available to
* the trigger action.
* ****************
* 9)test5InsertBeforeTriggerNoReferencingClause
* This test creates an BEFORE INSERT trigger but has no REFERENCING
* clause, meaning that before and after values are not available to
* the trigger action.
* ****************
*
*
*
*
*
* Delete trigger tests
* ****************
* 1)test1DeleteAfterTrigger
* This test creates an AFTER DELETE trigger which delets from another
* table using non-lob from the triggering table in the where clause.
* ****************
* 2)test1DeleteAfterTriggerStoredProc
* The test case is exactly like test1DeleteAfterTrigger except that the
* trigger action is a stored procedure call. The work done by the trigger
* action SQL in test1DeleteAfterTrigger gets done inside the stored procedure
* for this test.
* ****************
* 3)test1DeleteBeforeTrigger
* This test creates a BEFORE DELETE trigger which selects
* columns from another table using "new" non-lob column for
* join clause.
* ****************
* 4)test1DeleteBeforeTriggerStoredProc
* The test case is exactly like test1DeleteBeforeTrigger except that the
* trigger action is a stored procedure call. The work done by the trigger
* action SQL in test1DeleteBeforeTrigger gets done inside the stored procedure
* for this test.
* ****************
* Can't write stored procedure calls for trigger actions for test2
* because I will need to pass LOBs as parameters to the stored
* procedure which is not possible at this point.
* ****************
* 5)test2DeleteAfterTriggerAccessLOB
* This test creates an AFTER DELETE trigger which in it's trigger action
* deletes row from another table using triggering table's "new" LOB value
* in the join clause. So, this test does access the LOB from the
* triggering table inside the trigger action.
* ****************
* ****************
* 6)test2DeleteBeforeTriggerAccessLOB
* This test creates a BEFORE DELETE trigger which selects "old"
* lob column from just deleted row. This test does access the
* LOB.
* ****************
* 7)test5DeleteAfterTriggerNoReferencingClause
* This test creates an AFTER DELETE trigger but has no REFERENCING
* clause, meaning that before and after values are not available to
* the trigger action.
* ****************
* 8)test5DeleteBeforeTriggerNoReferencingClause
* This test creates an BEFORE DELETE trigger but has no REFERENCING
* clause, meaning that before and after values are not available to
* the trigger action.
* ****************
*
*
*
*
* Update trigger tests
* ****************
* 1)test1UpdateAfterTrigger -
* This test creates an AFTER UPDATE trigger which is declared on a
* non-LOB column. The trigger action does not access the LOB column.
* ****************
* 2)test1UpdateAfterTriggerStoredProc
* The test case is exactly like test1UpdateAfterTrigger except that the
* trigger action is a stored procedure call. The work done by the trigger
* action SQL in test1UpdateAfterTrigger gets done inside the stored procedure
* for this test.
* ****************
* 3)test1UpdateBeforeTrigger
* This test creates a BEFORE UPDATE trigger which is declared
* on a non-LOB column. The trigger action selects columns from
* another table using "new" non-lob column for join clause.
* ****************
* 4)test1UpdateBeforeTriggerStoredProc
* The test case is exactly like test1UpdateBeforeTrigger except that the
* trigger action is a stored procedure call. The work done by the trigger
* action SQL in test1UpdateBeforeTrigger gets done inside the stored procedure
* for this test.
* ****************
* Can't write stored procedure calls for trigger actions for test2
* because I will need to pass LOBs as parameters to the stored
* procedure which is not possible at this point.
* ****************
* 5)test2UpdateAfterTriggerAccessLOB
* The after update trigger on non-LOB column but the LOB column is
* referenced in the trigger action. So, this test does access the LOB
* from the triggering table inside the trigger action.
* ****************
* 6)test2UpdateAfterTriggerUpdatedLOB
* This test creates an AFTER UPDATE trigger which in it's trigger action
* updates a lob column from the row that just got updated. So, this test
* does update the LOB from the triggering table inside the trigger
* action.
* ****************
* 7)test2UpdateBeforeTriggerAccessLOB
* This test creates a BEFORE UPDATE trigger which selects "new"
* lob column from just updated row. This test does access the
* LOB.
* ****************
* 8)test3UpdateAfterTrigger
* The after update trigger is defined on LOB column but the LOB column
* is not referenced in the trigger action.
* ****************
* 9)test3UpdateAfterTriggerStoredProc
* The test case is exactly like test3UpdateAfterTrigger except that the
* trigger action is a stored procedure call. The work done by the trigger
* action SQL in test3UpdateAfterTrigger gets done inside the stored procedure
* for this test.
* ****************
* 10)test3UpdateBeforeTrigger
* This test creates a BEFORE UPDATE trigger which selects a row
* from another table using "new" non-LOB column from the triggering
* table. This test has update trigger defined on the LOB column
* but does not access/update that LOB column in the trigger action.
* ****************
* 11)test3UpdateBeforeTriggerStoredProc
* The test case is exactly like test3UpdateBeforeTrigger except that the
* trigger action is a stored procedure call. The work done by the trigger
* action SQL in test3UpdateBeforeTrigger gets done inside the stored procedure
* for this test.
* ****************
* 12)test4UpdateAfterTriggerAccessLOB
* The after update trigger on LOB column but the LOB column is referenced
* in the trigger action. This is one case though where we do need to keep
* before and after image since the LOB got updated and it is being used in
* trigger action.
* ****************
* 13)test4UpdateAfterTriggerUpdatedLOB
* The after update trigger on LOB column which then gets updated in the
* trigger action. So this test updates the LOB in the trigger action
* and is also the cause of the update trigger to fire.
* ****************
* 14)test4UpdateBeforeTrigger
* ****************
* 15)test5UpdateAfterTriggerNoReferencingClause
* This test creates an AFTER UPDATE trigger but has no REFERENCING
* clause, meaning that before and after values are not available to
* the trigger action.
* ****************
* 16)test5UpdateBeforeTriggerNoReferencingClause
* This test creates an BEFORE UPDATE trigger but has no REFERENCING
* clause, meaning that before and after values are not available to
* the trigger action.
* ****************
* 17)test6UpdateAfterTriggerNoTriggerColumn
* This test create an AFTER UPDATE trigger but does not identify any
* trigger columns. It has REFERENCING clause. Void of trigger columns
* will cause all the columns to be read into memory.
* ****************
*/
public TriggerTests(String name) {
super(name);
}
public static Test suite() {
Test suite = new CleanDatabaseTestSetup(TestConfiguration
.embeddedSuite(TriggerTests.class));
Properties p = new Properties();
// use small pageCacheSize so we don't run out of memory on the insert
// of large LOB columns.
p.setProperty("derby.storage.pageCacheSize", "100");
return new SystemPropertyTestSetup(suite,p);
}
/**
* Create the basic tables and data expected by almost all the tests. If a
* particular test needs anything else, that test will take care of it.
* @throws SQLException
*/
public void basicSetup() throws SQLException{
dropTable("TABLE1");
dropTable("TABLE2");
dropTable("TABLE3");
Statement s = createStatement();
try {
s.execute("drop trigger trigger1");
} catch (SQLException sqle) {}
try {
s.execute("drop trigger trigger2");
} catch (SQLException sqle) {}
//table1 is the main table on which all the testing is done and it
//uses table2 at times to do DMLs as part of it's trigger action.
s.execute("create table table1 (id int, status smallint, bl blob(2G))");
s.execute("create index i1 on table1(id)");
//table2 is mostly used as part of the trigger action for table1
s.execute("create table table2 (id int, updates int default 0)");
s.execute("create index i2 on table2(id)");
//table3 does not have lob. It is mostly used to show how things work
//fine when they may not for table1 since table1 has LOB column.
s.execute("create table table3 (id int, status smallint, score int)");
s.execute("create index i3 on table3(id)");
//load data in table1
PreparedStatement ps = prepareStatement(
"insert into table1 values (?, 0, ?)");
ps.setInt(1, 1);
ps.setBinaryStream(2, new LoopingAlphabetStream(lobsize), lobsize);
ps.executeUpdate();
//load data in table2
ps = prepareStatement(
"insert into table2 (id) values (?)");
ps.setInt(1, 1);
ps.executeUpdate();
//load data in table3
ps = prepareStatement(
"insert into table3 values (?, 0, ?)");
ps.setInt(1, 1);
ps.setInt(2, 2);
ps.executeUpdate();
commit();
}
/**
* This test creates an AFTER INSERT trigger which inserts non-lob
* columns into another table. The triggering INSERT does not insert
* any value into LOB column
* @throws SQLException
*/
public void test1InsertAfterTrigger() throws SQLException{
if (isDerby1482Fixed == false)
return;
basicSetup();
Statement s = createStatement();
s.execute("create trigger trigger1 AFTER INSERT on table1 referencing " +
"new as n_row for each row " +
"insert into table2(id, updates) values (n_row.id, -1)");
commit();
runtest1InsertTriggerTest();
}
/**
* The test case is exactly like test1InsertAfterTrigger except that the
* trigger action is a stored procedure call. The work done by the trigger
* action SQL in test1InsertAfterTrigger gets done inside the stored procedure
* for this test.
* @throws SQLException
*/
public void test1InsertAfterTriggerStoredProc() throws SQLException{
if (isDerby1482Fixed == false)
return;
// JSR169 cannot run with tests with stored procedures
// that do database access - for they require a
// DriverManager connection to jdbc:default:connection;
// DriverManager is not supported with JSR169.
if (JDBC.vmSupportsJSR169())
return;
basicSetup();
Statement s = createStatement();
s.execute("create procedure proc_test1_InsertAfterTrigger_update_table " +
"(p1 int) parameter style java language "+
"java MODIFIES SQL DATA external name "+
"'org.apache.derbyTesting.functionTests.tests.memory.TriggerTests.proc_test1_InsertAfterTrigger_update_table'");
s.execute("create trigger trigger1 after INSERT on table1 referencing " +
"new as n_row for each row " +
"call proc_test1_InsertAfterTrigger_update_table(n_row.id)");
commit();
runtest1InsertTriggerTest();
}
/**
* The is the stored procedure which gets called by the after insert
* trigger action for the test test1InsertAfterTriggerStoredProc
* @param p1 new value of table1.id after the row gets inserted
* @throws SQLException
*/
public static void proc_test1_InsertAfterTrigger_update_table(int p1) throws SQLException {
Connection conn = DriverManager.getConnection("jdbc:default:connection");
PreparedStatement ps = conn.prepareStatement(
"insert into table2(id, updates) values (" + p1 + ",-1)");
ps.executeUpdate();
conn.close();
}
/**
* This test creates an AFTER DELETE trigger which delets from another
* table using non-lob from the triggering table in the where clause.
*
* DELETE triggers read all the columns from the trigger table. Following
* test is on a trigger table with large data in LOB columns and hence it
* will run out of memory. For that reason, the test is disabled.
*
* @throws SQLException
*/
public void test1DeleteAfterTrigger() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
s.execute("create trigger trigger1 after DELETE on table1 referencing " +
"old as o_row for each row " +
"delete from table2 where id=o_row.id");
commit();
runDeleteTriggerTest();
}
/**
* The test case is exactly like test1DeleteAfterTrigger except that the
* trigger action is a stored procedure call. The work done by the trigger
* action SQL in test1DeleteAfterTrigger gets done inside the stored procedure
* for this test.
*
* DELETE triggers read all the columns from the trigger table. Following
* test is on a trigger table with large data in LOB columns and hence it
* will run out of memory. For that reason, the test is disabled.
*
* @throws SQLException
*/
public void test1DeleteAfterTriggerStoredProc() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
s.execute("create procedure proc_test1_DeleteAfterTrigger_update_table " +
"(p1 int) parameter style java language "+
"java MODIFIES SQL DATA external name "+
"'org.apache.derbyTesting.functionTests.tests.memory.TriggerTests.proc_test1_DeleteAfterTrigger_update_table'");
s.execute("create trigger trigger1 after DELETE on table1 referencing " +
"old as o_row for each row " +
"call proc_test1_DeleteAfterTrigger_update_table(o_row.id)");
commit();
runDeleteTriggerTest();
}
/**
* The is the stored procedure which gets called by the after delete
* trigger action for the test test1DeleteAfterTriggerStoredProc
* @param p1 old value of table1.id before the row gets deleted
* @throws SQLException
*/
public static void proc_test1_DeleteAfterTrigger_update_table(int p1) throws SQLException {
Connection conn = DriverManager.getConnection("jdbc:default:connection");
PreparedStatement ps = conn.prepareStatement(
"delete from table1 where id=" + p1);
ps.executeUpdate();
conn.close();
}
/**
* This test creates an AFTER UPDATE trigger which is declared on a
* non-LOB column. The trigger action does not access the LOB column.
*
* It uses 2 tables to demonstrate the problem.
* table1 has a BLOB column
* table2 gets updated as part of AFTER UPDATE trigger of
* non-BLOB column on table1
*
* table1 has an after update trigger defined on column "status" so
* that table2 will get updated as part of trigger action
*
* Notice that the trigger does not reference the BLOB column in
* table1 and update that caused the trigger is not updating the
* BLOB column
*
* @throws SQLException
*/
public void test1UpdateAfterTrigger() throws SQLException{
if (isDerby1482Fixed == false)
return;
basicSetup();
Statement s = createStatement();
s.execute("create trigger trigger1 after update of status on table1 referencing " +
"new as n_row for each row " +
"update table2 set updates = updates + 1 where table2.id = n_row.id");
commit();
runtest1UpdateTrigger();
}
/**
* The test case is exactly like test1UpdateAfterTrigger except that the
* trigger action is a stored procedure call. The work done by the trigger
* action SQL in test1UpdateAfterTrigger gets done inside the stored procedure
* for this test.
* @throws SQLException
*/
public void test1UpdateAfterTriggerStoredProc() throws SQLException{
if (isDerby1482Fixed == false)
return;
// JSR169 cannot run with tests with stored procedures
// that do database access - for they require a
// DriverManager connection to jdbc:default:connection;
// DriverManager is not supported with JSR169.
if (JDBC.vmSupportsJSR169())
return;
basicSetup();
Statement s = createStatement();
s.execute("create procedure proc_test1_UpdateAfterTrigger_update_table " +
"(p1 int) parameter style java language "+
"java MODIFIES SQL DATA external name "+
"'org.apache.derbyTesting.functionTests.tests.memory.TriggerTests.proc_test1_UpdateAfterTrigger_update_table'");
s.execute("create trigger trigger1 after update of status on table1 REFERENCING " +
"NEW as n_row for each row call proc_test1_UpdateAfterTrigger_update_table(n_row.id)");
commit();
runtest1UpdateTrigger();
}
/**
* The is the stored procedure which gets called by the after update
* trigger action for the test test1UpdateAfterTriggerStoredProc
* @param p1 new value of table1.id after the row gets updated
* @throws SQLException
*/
public static void proc_test1_UpdateAfterTrigger_update_table(int p1) throws SQLException {
Connection conn = DriverManager.getConnection("jdbc:default:connection");
PreparedStatement ps = conn.prepareStatement("update table2 "+
"set updates = updates + 1 where table2.id = " + p1);
ps.executeUpdate();
conn.close();
}
/**
* This test creates a BEFORE INSERT trigger which selects
* columns from another table using "new" non-lob column for
* join clause.
* @throws SQLException
*/
public void test1InsertBeforeTrigger() throws SQLException{
if (isDerby1482Fixed == false)
return;
basicSetup();
Statement s = createStatement();
s.execute("create trigger trigger1 no cascade before INSERT on table1 referencing " +
"new as n_row for each row " +
"select updates from table2 where table2.id = n_row.id");
commit();
runtest1InsertTriggerTest();
}
/**
* The test case is exactly like test1InsertBeforeTrigger except that the
* trigger action is a stored procedure call. The work done by the trigger
* action SQL in test1InsertBeforeTrigger gets done inside the stored procedure
* for this test.
* @throws SQLException
*/
public void test1InsertBeforeTriggerStoredProc() throws SQLException{
if (isDerby1482Fixed == false)
return;
// JSR169 cannot run with tests with stored procedures
// that do database access - for they require a
// DriverManager connection to jdbc:default:connection;
// DriverManager is not supported with JSR169.
if (JDBC.vmSupportsJSR169())
return;
basicSetup();
Statement s = createStatement();
s.execute("create procedure proc_test1_InsertBeforeTrigger_select_table " +
"(p1 int) parameter style java language "+
"java READS SQL DATA external name "+
"'org.apache.derbyTesting.functionTests.tests.memory.TriggerTests.proc_test1_InsertBeforeTrigger_select_table'");
s.execute("create trigger trigger1 no cascade before INSERT on table1 referencing " +
"new as n_row for each row call proc_test1_InsertBeforeTrigger_select_table(n_row.id)");
commit();
runtest1InsertTriggerTest();
}
/**
* The is the stored procedure which gets called by the before insert
* trigger action for the test test1InsertBeforeTriggerStoredProc
* @param p1 new value of table1.id after the row gets inserted
* @throws SQLException
*/
public static void proc_test1_InsertBeforeTrigger_select_table(int p1) throws SQLException {
Connection conn = DriverManager.getConnection("jdbc:default:connection");
PreparedStatement ps = conn.prepareStatement("select updates from " +
"table2 where table2.id = " + p1);
ps.executeQuery();
conn.close();
}
/**
* This test creates a BEFORE DELETE trigger which selects
* columns from another table using "new" non-lob column for
* join clause.
*
* DELETE triggers read all the columns from the trigger table. Following
* test is on a trigger table with large data in LOB columns and hence it
* will run out of memory. For that reason, the test is disabled.
*
* @throws SQLException
*/
public void test1DeleteBeforeTrigger() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
s.execute("create trigger trigger1 no cascade before DELETE on table1 referencing " +
"old as o_row for each row " +
"select updates from table2 where table2.id = o_row.id");
commit();
runDeleteTriggerTest();
}
/**
* The test case is exactly like test1DeleteBeforeTrigger except that the
* trigger action is a stored procedure call. The work done by the trigger
* action SQL in test1DeleteBeforeTrigger gets done inside the stored procedure
* for this test.
*
* DELETE triggers read all the columns from the trigger table. Following
* test is on a trigger table with large data in LOB columns and hence it
* will run out of memory. For that reason, the test is disabled.
*
* @throws SQLException
*/
public void test1DeleteBeforeTriggerStoredProc() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
s.execute("create procedure proc_test1_DeleteBeforeTrigger_select_table " +
"(p1 int) parameter style java language "+
"java READS SQL DATA external name "+
"'org.apache.derbyTesting.functionTests.tests.memory.TriggerTests.proc_test1_DeleteBeforeTrigger_select_table'");
s.execute("create trigger trigger1 no cascade before DELETE on table1 referencing " +
"old as o_row for each row call proc_test1_DeleteBeforeTrigger_select_table(o_row.id)");
commit();
runDeleteTriggerTest();
}
/**
* The is the stored procedure which gets called by the before delete
* trigger action for the test test1DeleteBeforeTriggerStoredProc
* @param p1 old value of table1.id before the row gets deleted
* @throws SQLException
*/
public static void proc_test1_DeleteBeforeTrigger_select_table(int p1) throws SQLException {
Connection conn = DriverManager.getConnection("jdbc:default:connection");
PreparedStatement ps = conn.prepareStatement("select updates from " +
"table2 where table2.id = " + p1);
ps.executeQuery();
conn.close();
}
/**
* This test creates a BEFORE UPDATE trigger which is declared
* on a non-LOB column. The trigger action selects columns from
* another table using "new" non-lob column for join clause.
*
* It uses 2 tables to demonstrate the problem.
* table1 has a BLOB column
* table2 gets updated as part of AFTER UPDATE trigger of
* non-BLOB column on table1
*
* table1 has a before update trigger defined on column "status" so
* that there will be a select done from table2 as part of trigger
* action.
*
* Notice that the trigger does not reference the BLOB column in
* table1 and update that caused the trigger is not updating the
* BLOB column
*
* @throws SQLException
*/
public void test1UpdateBeforeTrigger() throws SQLException{
if (isDerby1482Fixed == false)
return;
basicSetup();
Statement s = createStatement();
s.execute("create trigger trigger1 no cascade before update of status on table1 referencing " +
"new as n_row for each row " +
"select updates from table2 where table2.id = n_row.id");
commit();
runtest1UpdateTrigger();
}
/**
* The test case is exactly like test1UpdateBeforeTrigger except that the
* trigger action is a stored procedure call. The work done by the trigger
* action SQL in test1UpdateBeforeTrigger gets done inside the stored procedure
* for this test.
* @throws SQLException
*/
public void test1UpdateBeforeTriggerStoredProc() throws SQLException{
if (isDerby1482Fixed == false)
return;
// JSR169 cannot run with tests with stored procedures
// that do database access - for they require a
// DriverManager connection to jdbc:default:connection;
// DriverManager is not supported with JSR169.
if (JDBC.vmSupportsJSR169())
return;
basicSetup();
Statement s = createStatement();
s.execute("create procedure proc_test1_UpdateBeforeTrigger_select_table " +
"(p1 int) parameter style java language "+
"java READS SQL DATA external name "+
"'org.apache.derbyTesting.functionTests.tests.memory.TriggerTests.proc_test1_UpdateBeforeTrigger_select_table'");
s.execute("create trigger trigger1 no cascade before update of status on table1 REFERENCING " +
"NEW as n_row for each row call proc_test1_UpdateBeforeTrigger_select_table(n_row.id)");
commit();
runtest1UpdateTrigger();
}
/**
* The is the stored procedure which gets called by the before update
* trigger action for the test test1UpdateBeforeTriggerStoredProc
* @param p1 new value of table1.id after the row gets updated
* @throws SQLException
*/
public static void proc_test1_UpdateBeforeTrigger_select_table(int p1) throws SQLException {
Connection conn = DriverManager.getConnection("jdbc:default:connection");
PreparedStatement ps = conn.prepareStatement("select updates from " +
"table2 where table2.id = " + p1);
ps.executeQuery();
conn.close();
}
/**
* This test creates an AFTER INSERT trigger which in it's trigger action
* inserts lob columns from triggering table into another table. So, this
* test does access the LOB from the triggering table inside the trigger
* action.
*
* INSERT trigger in this test is inserting large data in the LOB column
* which will be used in the INSERT trigger and hence it will run out of
* memory. For that reason, the test is disabled.
*
* @throws SQLException
*/
public void test2InsertAfterTriggerAccessLOB() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
//The default table2 created by basicSetup does not match the
//requirement of this test so dropping and recreating it.
s.execute("drop table table2");
s.execute("create table table2 (id int, bl_table2 blob(2G))");
PreparedStatement ps = prepareStatement(
"insert into table2 (id) values (?)");
ps.setInt(1, 1);
ps.executeUpdate();
s.execute("create trigger trigger1 after INSERT on table1 referencing " +
"new as n_row for each row " +
"insert into table2(id, bl_table2) values (n_row.id, n_row.bl)");
commit();
runtest2InsertTriggerTest();
}
/**
* This test creates an AFTER DELETE trigger which in it's trigger action
* deletes row from another table using triggering table's "new" LOB value
* in the join clause. So, this test does access the LOB from the
* triggering table inside the trigger action.
*
* DELETE triggers read all the columns from the trigger table. Following
* test is on a trigger table with large data in LOB columns and hence it
* will run out of memory. For that reason, the test is disabled.
*
* @throws SQLException
*/
public void test2DeleteAfterTriggerAccessLOB() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
//The default table2 created by basicSetup does not match the
//requirement of this test so dropping and recreating it.
s.execute("drop table table2");
s.execute("create table table2 (id int, bl_table2 blob(2G))");
PreparedStatement ps = prepareStatement(
"insert into table2 (id) values (?)");
ps.setInt(1, 1);
ps.executeUpdate();
commit();
s.execute("create trigger trigger1 after DELETE on table1 referencing " +
"old as o_row for each row " +
"delete from table2 where id = o_row.id and o_row.bl is not null");
commit();
runDeleteTriggerTest();
}
/**
* The after update trigger on non-LOB column but the LOB column is
* referenced in the trigger action. So, this test does access the LOB
* from the triggering table inside the trigger action.
*
* It uses 2 tables to demonstrate the problem.
* table1 has a BLOB column
* table2 gets updated with LOB column from triggering table
* eventhough the UPDATE which caused the trigger to fire didn't
* update the LOB. The trigger got fired for update of non-LOB
* column on the triggering table.
*
* table1 has an after update trigger defined on column "status" so
* that the trigger action will update table2 with LOB value from
* table1.
*
* Notice that the trigger action DOES reference the BLOB column in
* table1 but the update that caused the trigger is not updating
* the BLOB column
*
* UPDATE trigger in this test is working with large data in the LOB column
* inside the trigger action and hence it will run out of memory. For that
* reason, the test is disabled.
*
* @throws SQLException
*/
public void test2UpdateAfterTriggerAccessLOB() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
//The default table2 created by basicSetup does not match the
//requirement of this test so dropping and recreating it.
s.execute("drop table table2");
s.execute("create table table2 (id int, bl_table2 blob(2G))");
s.execute("create trigger trigger1 after update of status on table1 referencing " +
"new as n_row for each row " +
"update table2 set bl_table2 = n_row.bl where table2.id = n_row.id");
PreparedStatement ps = prepareStatement(
"insert into table2 (id) values (?)");
ps.setInt(1, 1);
ps.executeUpdate();
commit();
runtest1UpdateTrigger();
}
/**
* This test creates an AFTER INSERT trigger which in it's trigger action
* updates a lob column from the row just inserted. So, this test does
* update the LOB from the triggering table inside the trigger
* action.
*
* INSERT trigger in this test is inserting large data in the LOB column
* which will be used in the INSERT trigger and hence it will run out of
* memory. For that reason, the test is disabled.
*
* @throws SQLException
*/
public void test2InsertAfterTriggerUpdatedLOB() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
//The default table1 created by basicSetup does not match the
//requirement of this test so dropping and recreating it.
s.execute("drop table table1");
s.execute("create table table1 (id int, status smallint, bl blob(2G), bl_null blob(2G))");
PreparedStatement ps = prepareStatement(
"insert into table1 values (?, 0, ?, null)");
ps.setInt(1, 1);
ps.setBinaryStream(2, new LoopingAlphabetStream(lobsize), lobsize);
ps.executeUpdate();
s.execute("create trigger trigger1 after INSERT on table1 referencing " +
"new as n_row for each row " +
"update table1 set bl_null=n_row.bl where bl_null is null");
commit();
runtest2InsertTriggerTest();
}
/**
* This test creates an AFTER UPDATE trigger which in it's trigger action
* updates a lob column from the row that just got updated. So, this test
* does update the LOB from the triggering table inside the trigger
* action.
*
* UPDATE trigger in this test is working with large data in the LOB column
* inside the trigger action and hence it will run out of memory. For that
* reason, the test is disabled.
*
* @throws SQLException
*/
public void test2UpdateAfterTriggerUpdatedLOB() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
//The default table1 created by basicSetup does not match the
//requirement of this test so dropping and recreating it.
s.execute("drop table table1");
s.execute("create table table1 (id int, status smallint, bl blob(2G), bl_null blob(2G))");
s.execute("create trigger trigger1 after update of status on table1 referencing " +
"new as n_row for each row " +
"update table1 set bl_null=n_row.bl where bl_null is null");
PreparedStatement ps = prepareStatement(
"insert into table1 values (?, 0, ?, null)");
ps.setInt(1, 1);
ps.setBinaryStream(2, new LoopingAlphabetStream(lobsize), lobsize);
ps.executeUpdate();
commit();
runtest1UpdateTrigger();
}
/**
* This test creates a BEFORE INSERT trigger which selects "new"
* lob column from just inserted row. This test does access the
* LOB.
*
* INSERT trigger in this test is inserting large data in the LOB column
* which will be used in the INSERT trigger action and hence it will run
* out of memory. For that reason, the test is disabled.
*
* @throws SQLException
*/
public void test2InsertBeforeTriggerAccessLOB() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
//The default table2 created by basicSetup does not match the
//requirement of this test so dropping and recreating it.
s.execute("drop table table2");
s.execute("create table table2 (id int, bl_table2 blob(2G))");
s.execute("create trigger trigger1 no cascade before INSERT on table1 referencing " +
"new as n_row for each row " +
"values(n_row.bl)");
PreparedStatement ps = prepareStatement(
"insert into table2 (id) values (?)");
ps.setInt(1, 1);
ps.executeUpdate();
commit();
runtest2InsertTriggerTest();
}
/**
* This test creates a BEFORE DELETE trigger which selects "old"
* lob column from just deleted row. This test does access the
* LOB.
*
* DELETE triggers read all the columns from the trigger table. Following
* test is on a trigger table with large data in LOB columns and hence it
* will run out of memory. For that reason, the test is disabled.
*
* @throws SQLException
*/
public void test2DeleteBeforeTriggerAccessLOB() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
//The default table2 created by basicSetup does not match the
//requirement of this test so dropping and recreating it.
s.execute("drop table table2");
s.execute("create table table2 (id int, bl_table2 blob(2G))");
s.execute("create trigger trigger1 no cascade before DELETE on table1 referencing " +
"old as o_row for each row " +
"values(o_row.bl)");
PreparedStatement ps = prepareStatement(
"insert into table2 (id) values (?)");
ps.setInt(1, 1);
ps.executeUpdate();
commit();
runDeleteTriggerTest();
}
/**
* This test creates a BEFORE UPDATE trigger which selects "new"
* lob column from just updated row. This test does access the
* LOB.
*
* UPDATE trigger in this test is working with large data in the LOB column
* inside the trigger action and hence it will run out of memory. For that
* reason, the test is disabled.
*
* @throws SQLException
*/
public void test2UpdateBeforeTriggerAccessLOB() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
//The default table2 created by basicSetup does not match the
//requirement of this test so dropping and recreating it.
s.execute("drop table table2");
s.execute("create table table2 (id int, bl_table2 blob(2G))");
s.execute("create trigger trigger1 no cascade before update of status on table1 referencing " +
"new as n_row for each row " +
"values(n_row.bl)");
PreparedStatement ps = prepareStatement(
"insert into table2 (id) values (?)");
ps.setInt(1, 1);
ps.executeUpdate();
commit();
runtest1UpdateTrigger();
}
/**
* The after update trigger is defined on LOB column but the LOB column
* is not referenced in the trigger action.
*
* It used 2 tables to demonstrate the problem.
* table1 has a BLOB column
* table2 gets updated with non-LOB column from triggering table
* eventhough the UPDATE which caused the trigger to fire updated a LOB
* column. The trigger got fired for update of LOB column on the triggering
* table.
*
* table1 has an after update trigger defined on LOB column so that
* the trigger action will update table2 with non-LOB value from
* table1
*
* UPDATE trigger is defined on LOB column with large data and hence it
* will run out of memory. For that reason, the test is disabled.
*
* @throws SQLException
*/
public void test3UpdateAfterTrigger() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
s.execute("create trigger trigger1 after update of bl on table1 referencing " +
"new as n_row for each row " +
"update table2 set updates = n_row.status where table2.id = n_row.id");
commit();
runtest2UpdateTrigger();
}
/**
* The test case is exactly like test3UpdateAfterTrigger except that the
* trigger action is a stored procedure call. The work done by the trigger
* action SQL in test3UpdateAfterTrigger gets done inside the stored procedure
* for this test.
*
* UPDATE trigger is defined on LOB column with large data and hence it
* will run out of memory. For that reason, the test is disabled.
*
* @throws SQLException
*/
public void test3UpdateAfterTriggerStoredProc() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
s.execute("create procedure proc_test3_UpdateAfterTrigger_update_table " +
"(p1 int, p2 int) parameter style java language "+
"java MODIFIES SQL DATA external name "+
"'org.apache.derbyTesting.functionTests.tests.memory.TriggerTests.proc_test3_UpdateAfterTrigger_update_table'");
s.execute("create trigger trigger1 after update of bl on table1 REFERENCING " +
"NEW as n_row for each row call proc_test3_UpdateAfterTrigger_update_table(n_row.status, n_row.id)");
commit();
runtest2UpdateTrigger();
}
/**
* The is the stored procedure which gets called by the after delete
* trigger action for the test test3UpdateAfterTriggerStoredProc
* @param p1 new value of table1.status after the row gets inserted
* @param p2 new value of table1.id after the row gets inserted
* @throws SQLException
*/
public static void proc_test3_UpdateAfterTrigger_update_table(int p1, int p2) throws SQLException {
Connection conn = DriverManager.getConnection("jdbc:default:connection");
PreparedStatement ps = conn.prepareStatement("update table2 "+
"set updates = " + p1 + " where table2.id = " + p2);
ps.executeUpdate();
conn.close();
}
/**
* This test creates a BEFORE UPDATE trigger which selects a row
* from another table using "new" non-LOB column from the triggering
* table. This test has update trigger defined on the LOB column
* but does not access/update that LOB column in the trigger action.
*
* UPDATE trigger is defined on LOB column with large data and hence it
* will run out of memory. For that reason, the test is disabled.
*
* @throws SQLException
*/
public void test3UpdateBeforeTrigger() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
s.execute("create trigger trigger1 no cascade before update of bl on table1 referencing " +
"new as n_row for each row " +
"select updates from table2 where table2.id = n_row.id");
commit();
runtest2UpdateTrigger();
}
/**
* The test case is exactly like test3UpdateBeforeTrigger except that the
* trigger action is a stored procedure call. The work done by the trigger
* action SQL in test3UpdateBeforeTrigger gets done inside the stored procedure
* for this test.
*
* UPDATE trigger is defined on LOB column with large data and hence it
* will run out of memory. For that reason, the test is disabled.
*
* @throws SQLException
*/
public void test3UpdateBeforeTriggerStoredProc() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
s.execute("create procedure proc_test3_UpdateBeforeTrigger_select_table " +
"(p1 int) parameter style java language "+
"java READS SQL DATA external name "+
"'org.apache.derbyTesting.functionTests.tests.memory.TriggerTests.proc_test3_UpdateBeforeTrigger_select_table'");
s.execute("create trigger trigger1 no cascade before update of bl on table1 REFERENCING " +
"NEW as n_row for each row call proc_test3_UpdateBeforeTrigger_select_table(n_row.id)");
commit();
runtest2UpdateTrigger();
}
/**
* The is the stored procedure which gets called by the before delete
* trigger action for the test test3UpdateBeforeTriggerStoredProc
* @param p1 new value of table1.id after the row gets inserted
* @throws SQLException
*/
public static void proc_test3_UpdateBeforeTrigger_select_table(int p1) throws SQLException {
Connection conn = DriverManager.getConnection("jdbc:default:connection");
PreparedStatement ps = conn.prepareStatement("select updates from " +
"table2 where table2.id = " + p1);
ps.executeQuery();
conn.close();
}
/**
* The after update trigger on LOB column but the LOB column is referenced
* in the trigger action. This is one case though where we do need to keep
* before and after image since the LOB got updated and it is being used
* in trigger action.
*
* It used 2 tables to demonstrate the problem.
* table1 has a BLOB column
* table2 gets updated with LOB column value from triggering table,
* the same LOB which got UPDATEd and caused the trigger to fire. The
* trigger got fired for update of LOB column on the triggering
* table.
*
* UPDATE trigger is defined on LOB column with large data and hence it
* will run out of memory. For that reason, the test is disabled.
*
* @throws SQLException
*/
public void test4UpdateAfterTriggerAccessLOB() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
//The default table2 created by basicSetup does not match the
//requirement of this test so dropping and recreating it.
s.execute("drop table table2");
s.execute("create table table2 (id int, bl_table2 blob(2G))");
s.execute("create trigger trigger1 after update of bl on table1 referencing " +
"new as n_row for each row " +
"update table2 set bl_table2 = n_row.bl where table2.id = n_row.id");
PreparedStatement ps = prepareStatement(
"insert into table2 (id) values (?)");
ps.setInt(1, 1);
ps.executeUpdate();
commit();
runtest2UpdateTrigger();
}
/**
* The after update trigger on LOB column which then gets updated in the
* trigger action. So this test updates the LOB in the trigger action
* and is also the cause of the update trigger to fire.
*
* The UPDATE trigger access the large data in LOB column inside the
* trigger action which will cause the test to run out of memory. For
* this reason, this test is disabled.
*
* @throws SQLException
*/
public void test4UpdateAfterTriggerUpdatedLOB() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
//The default table1 created by basicSetup does not match the
//requirement of this test so dropping and recreating it.
s.execute("drop table table1");
s.execute("create table table1 (id int, status smallint, bl blob(2G), bl_null blob(2G))");
s.execute("create trigger trigger1 after update of bl_null on table1 referencing " +
"new as n_row for each row " +
"update table1 set bl_null=n_row.bl where bl_null is null");
PreparedStatement ps = prepareStatement(
"insert into table1 values (?, 0, ?, ?)");
ps.setInt(1, 1);
ps.setBinaryStream(2, new LoopingAlphabetStream(lobsize), lobsize);
ps.setBinaryStream(3, new LoopingAlphabetStream(lobsize), lobsize);
ps.executeUpdate();
commit();
runtest3UpdateTrigger();
}
/**
* This test creates a BEFORE UPDATE trigger on LOB column and
* the trigger action selects "new" lob column from just updated
* row. This test does access the LOB.
*
* The UPDATE trigger access the large data in LOB column inside the
* trigger action and it is defined on the LOB column which will cause
* the test to run out of memory. For this reason, this test is disabled.
*
* @throws SQLException
*/
public void test4UpdateBeforeTrigger() throws SQLException{
if (isDerby1482Fixed == false)
return;
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
//The default table2 created by basicSetup does not match the
//requirement of this test so dropping and recreating it.
s.execute("drop table table2");
s.execute("create table table2 (id int, bl_table2 blob(2G))");
s.execute("create trigger trigger1 no cascade before update of bl on table1 referencing " +
"new as n_row for each row " +
"values(n_row.bl)");
PreparedStatement ps = prepareStatement(
"insert into table2 (id) values (?)");
ps.setInt(1, 1);
ps.executeUpdate();
commit();
runtest2UpdateTrigger();
}
/**
* This test creates an AFTER INSERT trigger but has no REFERENCING
* clause, meaning that before and after values are not available to
* the trigger action.
* @throws SQLException
*/
public void test5InsertAfterTriggerNoReferencingClause() throws SQLException{
basicSetup();
Statement s = createStatement();
s.execute("create trigger trigger1 AFTER INSERT on table1 " +
"insert into table2(id, updates) values (100, -1)");
commit();
runtest1InsertTriggerTest();
}
/**
* This test creates an BEFORE INSERT trigger but has no REFERENCING
* clause, meaning that before and after values are not available to
* the trigger action.
* @throws SQLException
*/
public void test5InsertBeforeTriggerNoReferencingClause() throws SQLException{
basicSetup();
Statement s = createStatement();
s.execute("create trigger trigger1 NO CASCADE BEFORE INSERT on table1 " +
"select updates from table2 where table2.id = 1");
commit();
runtest1InsertTriggerTest();
}
/**
* This test creates an AFTER DELETE trigger but has no REFERENCING
* clause, meaning that before and after values are not available to
* the trigger action.
* @throws SQLException
*/
public void test5DeleteAfterTriggerNoReferencingClause() throws SQLException{
basicSetup();
Statement s = createStatement();
s.execute("create trigger trigger1 AFTER DELETE on table1 " +
"delete from table2 where id=1");
commit();
runDeleteTriggerTest();
}
/**
* This test creates an BEFORE DELETE trigger but has no REFERENCING
* clause, meaning that before and after values are not available to
* the trigger action.
* @throws SQLException
*/
public void test5DeleteBeforeTriggerNoReferencingClause() throws SQLException{
basicSetup();
Statement s = createStatement();
s.execute("create trigger trigger1 NO CASCADE BEFORE DELETE on table1 " +
"select updates from table2 where table2.id = 1");
commit();
runDeleteTriggerTest();
}
/**
* This test creates an AFTER UPDATE trigger but has no REFERENCING
* clause, meaning that before and after values are not available to
* the trigger action.
* @throws SQLException
*/
public void test5UpdateAfterTriggerNoReferencingClause() throws SQLException{
basicSetup();
Statement s = createStatement();
s.execute("create trigger trigger1 AFTER UPDATE of status on table1 " +
"update table2 set updates = updates + 1 where table2.id = 1");
commit();
runtest1UpdateTrigger();
}
/**
* This test creates an BEFORE UPDATE trigger but has no REFERENCING
* clause, meaning that before and after values are not available to
* the trigger action.
* @throws SQLException
*/
public void test5UpdateBeforeTriggerNoReferencingClause() throws SQLException{
basicSetup();
Statement s = createStatement();
s.execute("create trigger trigger1 NO CASCADE BEFORE UPDATE of status on table1 " +
"select updates from table2 where table2.id = 1");
commit();
runtest1UpdateTrigger();
}
/**
* This test create an AFTER UPDATE trigger but does not identify any
* trigger columns. It has REFERENCING clause. Void of trigger columns
* will cause all the columns to be read into memory.
*
* When no trigger columns are defined for an UPDATE trigger, all the
* columns get read into memory. Since the trigger table has large data
* in LOB columns, it will run out of memory. For that reason, the test
* is disabled.
*/
public void test6UpdateAfterTriggerNoTriggerColumn() throws SQLException{
if (testWithLargeDataInLOB)
return;
basicSetup();
Statement s = createStatement();
//The default table2 created by basicSetup does not match the
//requirement of this test so dropping and recreating it.
s.execute("drop table table2");
s.execute("create table table2 (id int, bl_table2 blob(2G))");
s.execute("create trigger trigger1 after update on table1 referencing " +
"new as n_row for each row " +
"update table2 set bl_table2 = n_row.bl where table2.id = n_row.id");
PreparedStatement ps = prepareStatement(
"insert into table2 (id) values (?)");
ps.setInt(1, 1);
ps.executeUpdate();
commit();
runtest2UpdateTrigger();
}
/**
* Following will do an insert into table1 which will cause insert
* trigger to fire. The insert does not involve the LOB column.
*
* @throws SQLException
*/
public void runtest1InsertTriggerTest() throws SQLException{
PreparedStatement ps = prepareStatement(
"insert into table1(id, status) values(101, 0)");
ps.executeUpdate();
commit();
}
/**
* Following will do an insert into table1 which will cause insert
* trigger to fire. The insert involves the LOB column.
*
* @throws SQLException
*/
public void runtest2InsertTriggerTest() throws SQLException{
PreparedStatement ps = prepareStatement(
"insert into table1(id, status, bl) values(101, 0, ?)");
ps.setBinaryStream(1, new LoopingAlphabetStream(lobsize), lobsize);
ps.executeUpdate();
commit();
}
/**
* Following will update a row in table1 which will cause update
* trigger to fire. The update does not involve the LOB column.
*
* @throws SQLException
*/
public void runtest1UpdateTrigger() throws SQLException{
PreparedStatement ps = prepareStatement(
"update table1 set status = 1 where id = 1");
ps.executeUpdate();
commit();
}
/**
* Following will update a row in table1 which will cause update
* trigger to fire. The update involves the LOB column.
*
* @throws SQLException
*/
public void runtest2UpdateTrigger() throws SQLException{
PreparedStatement ps = prepareStatement(
"update table1 set bl = ? where id = 1");
ps.setBinaryStream(1, new LoopingAlphabetStream(lobsize), lobsize);
ps.executeUpdate();
commit();
}
/**
* Following will update a row in table1 which will cause update
* trigger to fire. The update involves the LOB column.
*
* @throws SQLException
*/
public void runtest3UpdateTrigger() throws SQLException{
PreparedStatement ps = prepareStatement(
"update table1 set bl_null=null where id = 1");
ps.executeUpdate();
commit();
}
/**
* Following will delete a row from table1 which will cause delete
* trigger to fire.
*
* @throws SQLException
*/
public void runDeleteTriggerTest() throws SQLException{
PreparedStatement ps = prepareStatement(
"delete from table1 where id=1");
ps.executeUpdate();
commit();
}
}
|