SyntaxRegressionTest.java
65.8 KB
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
/*
Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved.
The MySQL Connector/J is licensed under the terms of the GPLv2
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most MySQL Connectors.
There are special exceptions to the terms and conditions of the GPLv2 as it is applied to
this software, see the FOSS License Exception
<http://www.mysql.com/about/legal/licensing/foss-exception.html>.
This program is free software; you can redistribute it and/or modify it under the terms
of the GNU General Public License as published by the Free Software Foundation; version 2
of the License.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this
program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth
Floor, Boston, MA 02110-1301 USA
*/
package testsuite.regression;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Types;
import java.util.Properties;
import java.util.concurrent.Callable;
import com.mysql.jdbc.NonRegisteringDriver;
import com.mysql.jdbc.StringUtils;
import com.mysql.jdbc.Util;
import testsuite.BaseTestCase;
/**
* Regression tests for syntax
*/
public class SyntaxRegressionTest extends BaseTestCase {
public SyntaxRegressionTest(String name) {
super(name);
}
/**
* ALTER TABLE syntax changed in 5.6GA
*
* ALTER TABLE ... , algorithm, concurrency
*
* algorithm:
* | ALGORITHM [=] DEFAULT
* | ALGORITHM [=] INPLACE
* | ALGORITHM [=] COPY
*
* concurrency:
* | LOCK [=] DEFAULT
* | LOCK [=] NONE
* | LOCK [=] SHARED
* | LOCK [=] EXCLUSIVE
*
* @throws SQLException
*/
public void testAlterTableAlgorithmLock() throws SQLException {
if (versionMeetsMinimum(5, 6, 6)) {
Connection c = null;
Properties props = new Properties();
props.setProperty("useServerPrepStmts", "true");
try {
c = getConnectionWithProps(props);
String[] algs = { "", ", ALGORITHM DEFAULT", ", ALGORITHM = DEFAULT", ", ALGORITHM INPLACE", ", ALGORITHM = INPLACE", ", ALGORITHM COPY",
", ALGORITHM = COPY" };
String[] lcks = { "", ", LOCK DEFAULT", ", LOCK = DEFAULT", ", LOCK NONE", ", LOCK = NONE", ", LOCK SHARED", ", LOCK = SHARED",
", LOCK EXCLUSIVE", ", LOCK = EXCLUSIVE" };
createTable("testAlterTableAlgorithmLock", "(x VARCHAR(10) NOT NULL DEFAULT '') CHARSET=latin2");
int i = 1;
for (String alg : algs) {
for (String lck : lcks) {
i = i ^ 1;
// TODO: 5.6.10 reports: "LOCK=NONE is not supported. Reason: COPY algorithm requires a lock. Try LOCK=SHARED."
// We should check if situation change in future
if (!(lck.contains("NONE") && alg.contains("COPY"))) {
String sql = "ALTER TABLE testAlterTableAlgorithmLock CHARSET=latin" + (i + 1) + alg + lck;
this.stmt.executeUpdate(sql);
this.pstmt = this.conn.prepareStatement("ALTER TABLE testAlterTableAlgorithmLock CHARSET=?" + alg + lck);
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = c.prepareStatement(sql);
assertTrue(this.pstmt instanceof com.mysql.jdbc.ServerPreparedStatement);
}
}
}
} finally {
if (c != null) {
c.close();
}
}
}
}
/**
* CREATE TABLE syntax changed in 5.6GA
*
* InnoDB: Allow the location of file-per-table tablespaces to be chosen
* CREATE TABLE ... DATA DIRECTORY = 'absolute/path/to/directory/'
*
* Notes:
* - DATA DIRECTORY option can't be used with temporary tables.
* - DATA DIRECTORY and INDEX DIRECTORY can't be used together for InnoDB.
* - Using these options result in an 'option ignored' warning for servers below MySQL 5.7.7. This syntax isn't allowed for MySQL 5.7.7 and higher.
*
* @throws SQLException
*/
public void testCreateTableDataDirectory() throws SQLException {
if (versionMeetsMinimum(5, 6, 6)) {
try {
String tmpdir = null;
String separator = File.separatorChar == '\\' ? File.separator + File.separator : File.separator;
this.rs = this.stmt.executeQuery("SHOW VARIABLES WHERE Variable_name='tmpdir' or Variable_name='innodb_file_per_table'");
while (this.rs.next()) {
if ("tmpdir".equals(this.rs.getString(1))) {
tmpdir = this.rs.getString(2);
if (tmpdir.endsWith(File.separator)) {
tmpdir = tmpdir.substring(0, tmpdir.length() - 1);
}
if (File.separatorChar == '\\') {
tmpdir = StringUtils.escapeQuote(tmpdir, File.separator);
}
} else if ("innodb_file_per_table".equals(this.rs.getString(1))) {
if (!this.rs.getString(2).equals("ON")) {
fail("You need to set innodb_file_per_table to ON before running this test!");
}
}
}
dropTable("testCreateTableDataDirectorya");
dropTable("testCreateTableDataDirectoryb");
dropTable("testCreateTableDataDirectoryc");
dropTable("testCreateTableDataDirectoryd");
createTable("testCreateTableDataDirectorya", "(x VARCHAR(10) NOT NULL DEFAULT '') DATA DIRECTORY = '" + tmpdir + "'");
createTable("testCreateTableDataDirectoryb", "(x VARCHAR(10) NOT NULL DEFAULT '') DATA DIRECTORY = '" + tmpdir + separator + "'");
this.stmt.executeUpdate("CREATE TEMPORARY TABLE testCreateTableDataDirectoryc (x VARCHAR(10) NOT NULL DEFAULT '') DATA DIRECTORY = '" + tmpdir
+ (versionMeetsMinimum(5, 7, 7) ? "' ENGINE = MyISAM" : "'"));
createTable("testCreateTableDataDirectoryd", "(x VARCHAR(10) NOT NULL DEFAULT '') DATA DIRECTORY = '" + tmpdir + separator
+ "' INDEX DIRECTORY = '" + tmpdir + (versionMeetsMinimum(5, 7, 7) ? "' ENGINE = MyISAM" : "'"));
this.stmt.executeUpdate("ALTER TABLE testCreateTableDataDirectorya DISCARD TABLESPACE");
this.pstmt = this.conn
.prepareStatement("CREATE TABLE testCreateTableDataDirectorya (x VARCHAR(10) NOT NULL DEFAULT '') DATA DIRECTORY = '" + tmpdir + "'");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = this.conn.prepareStatement(
"CREATE TABLE testCreateTableDataDirectorya (x VARCHAR(10) NOT NULL DEFAULT '') DATA DIRECTORY = '" + tmpdir + separator + "'");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = this.conn.prepareStatement(
"CREATE TEMPORARY TABLE testCreateTableDataDirectorya (x VARCHAR(10) NOT NULL DEFAULT '') DATA DIRECTORY = '" + tmpdir + "'");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = this.conn.prepareStatement("CREATE TABLE testCreateTableDataDirectorya (x VARCHAR(10) NOT NULL DEFAULT '') DATA DIRECTORY = '"
+ tmpdir + "' INDEX DIRECTORY = '" + tmpdir + "'");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = this.conn.prepareStatement("ALTER TABLE testCreateTableDataDirectorya DISCARD TABLESPACE");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
} finally {
// we need to drop them even if retainArtifacts=true, otherwise temp files could be deleted by OS and DB became corrupted
dropTable("testCreateTableDataDirectorya");
dropTable("testCreateTableDataDirectoryb");
dropTable("testCreateTableDataDirectoryc");
dropTable("testCreateTableDataDirectoryd");
}
}
}
/**
* Test case for transportable tablespaces syntax support:
*
* FLUSH TABLES ... FOR EXPORT
* ALTER TABLE ... DISCARD TABLESPACE
* ALTER TABLE ... IMPORT TABLESPACE
*
* @throws SQLException
*/
public void testTransportableTablespaces() throws Exception {
if (versionMeetsMinimum(5, 6, 8)) {
String tmpdir = null;
String uuid = null;
this.rs = this.stmt
.executeQuery("SHOW VARIABLES WHERE Variable_name='tmpdir' or Variable_name='innodb_file_per_table' or Variable_name='server_uuid'");
while (this.rs.next()) {
if ("tmpdir".equals(this.rs.getString(1))) {
tmpdir = this.rs.getString(2);
if (tmpdir.endsWith(File.separator)) {
tmpdir = tmpdir.substring(0, tmpdir.length() - File.separator.length());
}
} else if ("innodb_file_per_table".equals(this.rs.getString(1))) {
if (!this.rs.getString(2).equals("ON")) {
fail("You need to set innodb_file_per_table to ON before running this test!");
}
} else if ("server_uuid".equals(this.rs.getString(1))) {
uuid = this.rs.getString(2);
}
}
if (uuid != null) {
tmpdir = tmpdir + File.separator + uuid;
}
if (File.separatorChar == '\\') {
tmpdir = StringUtils.escapeQuote(tmpdir, File.separator);
}
Properties props = new NonRegisteringDriver().parseURL(dbUrl, null);
String dbname = props.getProperty(NonRegisteringDriver.DBNAME_PROPERTY_KEY);
if (dbname == null) {
assertTrue("No database selected", false);
}
dropTable("testTransportableTablespaces1");
dropTable("testTransportableTablespaces2");
File checkTableSpaceFile1 = new File(tmpdir + File.separator + dbname + File.separator + "testTransportableTablespaces1.ibd");
if (checkTableSpaceFile1.exists()) {
checkTableSpaceFile1.delete();
}
File checkTableSpaceFile2 = new File(tmpdir + File.separator + dbname + File.separator + "testTransportableTablespaces2.ibd");
if (checkTableSpaceFile2.exists()) {
checkTableSpaceFile2.delete();
}
try {
createTable("testTransportableTablespaces1", "(x VARCHAR(10) NOT NULL DEFAULT '') DATA DIRECTORY = '" + tmpdir + "'");
createTable("testTransportableTablespaces2", "(x VARCHAR(10) NOT NULL DEFAULT '') DATA DIRECTORY = '" + tmpdir + "'");
this.stmt.executeUpdate("FLUSH TABLES testTransportableTablespaces1, testTransportableTablespaces2 FOR EXPORT");
this.stmt.executeUpdate("UNLOCK TABLES");
File tempFile = File.createTempFile("testTransportableTablespaces1", "tmp");
tempFile.deleteOnExit();
String tableSpacePath = tmpdir + File.separator + dbname + File.separator + "testTransportableTablespaces1.ibd";
File tableSpaceFile = new File(tableSpacePath);
copyFile(tableSpaceFile, tempFile);
this.stmt.executeUpdate("ALTER TABLE testTransportableTablespaces1 DISCARD TABLESPACE");
tableSpaceFile = new File(tableSpacePath);
copyFile(tempFile, tableSpaceFile);
this.stmt.executeUpdate("ALTER TABLE testTransportableTablespaces1 IMPORT TABLESPACE");
this.pstmt = this.conn.prepareStatement("FLUSH TABLES testTransportableTablespaces1, testTransportableTablespaces2 FOR EXPORT");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = this.conn.prepareStatement("ALTER TABLE testTransportableTablespaces1 DISCARD TABLESPACE");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = this.conn.prepareStatement("ALTER TABLE testTransportableTablespaces1 IMPORT TABLESPACE");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
} finally {
// we need to drop them even if retainArtifacts=true, otherwise temp files could be deleted by OS and DB became corrupted
dropTable("testTransportableTablespaces1");
dropTable("testTransportableTablespaces2");
}
}
}
private void copyFile(File source, File dest) throws IOException {
FileInputStream is = null;
FileOutputStream os = null;
try {
is = new FileInputStream(source);
os = new FileOutputStream(dest);
int nLength;
byte[] buf = new byte[8000];
while (true) {
nLength = is.read(buf);
if (nLength < 0) {
break;
}
os.write(buf, 0, nLength);
}
} finally {
if (is != null) {
try {
is.close();
} catch (Exception ex) {
}
}
if (os != null) {
try {
os.close();
} catch (Exception ex) {
}
}
}
}
/**
* Test case for ALTER [IGNORE] TABLE t1 EXCHANGE PARTITION p1 WITH TABLE t2 syntax
*
* @throws SQLException
*/
public void testExchangePartition() throws Exception {
if (versionMeetsMinimum(5, 6, 6)) {
createTable("testExchangePartition1", "(id int(11) NOT NULL AUTO_INCREMENT, year year(4) DEFAULT NULL,"
+ " modified timestamp NOT NULL, PRIMARY KEY (id)) ENGINE=InnoDB ROW_FORMAT=COMPACT PARTITION BY HASH (id) PARTITIONS 2");
createTable("testExchangePartition2", "LIKE testExchangePartition1");
this.stmt.executeUpdate("ALTER TABLE testExchangePartition2 REMOVE PARTITIONING");
if (versionMeetsMinimum(5, 7, 4)) {
this.stmt.executeUpdate("ALTER TABLE testExchangePartition1 EXCHANGE PARTITION p1 WITH TABLE testExchangePartition2");
} else {
this.stmt.executeUpdate("ALTER IGNORE TABLE testExchangePartition1 EXCHANGE PARTITION p1 WITH TABLE testExchangePartition2");
}
if (versionMeetsMinimum(5, 7, 4)) {
this.pstmt = this.conn.prepareStatement("ALTER TABLE testExchangePartition1 EXCHANGE PARTITION p1 WITH TABLE testExchangePartition2");
} else {
this.pstmt = this.conn
.prepareStatement("ALTER IGNORE TABLE testExchangePartition1 " + "EXCHANGE PARTITION p1 WITH TABLE testExchangePartition2");
}
assertEquals(Util.isJdbc4() ? Class.forName(Util.isJdbc42() ? "com.mysql.jdbc.JDBC42PreparedStatement" : "com.mysql.jdbc.JDBC4PreparedStatement")
: com.mysql.jdbc.PreparedStatement.class, this.pstmt.getClass());
this.pstmt.executeUpdate();
Connection testConn = null;
try {
testConn = getConnectionWithProps("useServerPrepStmts=true,emulateUnsupportedPstmts=false");
if (versionMeetsMinimum(5, 7, 4)) {
this.pstmt = testConn.prepareStatement("ALTER TABLE testExchangePartition1 EXCHANGE PARTITION p1 WITH TABLE testExchangePartition2");
} else {
this.pstmt = testConn
.prepareStatement("ALTER IGNORE TABLE testExchangePartition1 " + "EXCHANGE PARTITION p1 WITH TABLE testExchangePartition2");
}
assertEquals(Util.isJdbc4()
? Class.forName(Util.isJdbc42() ? "com.mysql.jdbc.JDBC42ServerPreparedStatement" : "com.mysql.jdbc.JDBC4ServerPreparedStatement")
: com.mysql.jdbc.ServerPreparedStatement.class, this.pstmt.getClass());
this.pstmt.executeUpdate();
} finally {
if (testConn != null) {
testConn.close();
}
}
}
}
/**
* Test for explicit partition selection syntax
*
* @throws SQLException
*/
public void testExplicitPartitions() throws Exception {
if (versionMeetsMinimum(5, 6, 5)) {
Connection c = null;
String datadir = null;
Properties props = new NonRegisteringDriver().parseURL(dbUrl, null);
String dbname = props.getProperty(NonRegisteringDriver.DBNAME_PROPERTY_KEY);
props = new Properties();
props.setProperty("useServerPrepStmts", "true");
try {
this.stmt.executeUpdate("SET @old_default_storage_engine = @@default_storage_engine");
this.stmt.executeUpdate("SET @@default_storage_engine = 'InnoDB'");
c = getConnectionWithProps(props);
createTable("testExplicitPartitions",
"(a INT NOT NULL, b varchar (64), INDEX (b,a), PRIMARY KEY (a)) ENGINE = InnoDB"
+ " PARTITION BY RANGE (a) SUBPARTITION BY HASH (a) SUBPARTITIONS 2"
+ " (PARTITION pNeg VALUES LESS THAN (0) (SUBPARTITION subp0, SUBPARTITION subp1),"
+ " PARTITION `p0-9` VALUES LESS THAN (10) (SUBPARTITION subp2, SUBPARTITION subp3),"
+ " PARTITION `p10-99` VALUES LESS THAN (100) (SUBPARTITION subp4, SUBPARTITION subp5),"
+ " PARTITION `p100-99999` VALUES LESS THAN (100000) (SUBPARTITION subp6, SUBPARTITION subp7))");
this.stmt.executeUpdate("INSERT INTO testExplicitPartitions PARTITION (pNeg, pNeg) VALUES (-1, \"pNeg(-subp1)\")");
this.pstmt = this.conn.prepareStatement("INSERT INTO testExplicitPartitions PARTITION (pNeg, subp0) VALUES (-3, \"pNeg(-subp1)\")");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt.execute();
this.pstmt = c.prepareStatement("INSERT INTO testExplicitPartitions PARTITION (pNeg, subp0) VALUES (-2, \"(pNeg-)subp0\")");
assertTrue(this.pstmt instanceof com.mysql.jdbc.ServerPreparedStatement);
this.pstmt.execute();
this.pstmt = c.prepareStatement(
"INSERT INTO testExplicitPartitions PARTITION (`p100-99999`) VALUES (100, \"`p100-99999`(-subp6)\"), (101, \"`p100-99999`(-subp7)\"), (1000, \"`p100-99999`(-subp6)\")");
assertTrue(this.pstmt instanceof com.mysql.jdbc.ServerPreparedStatement);
this.pstmt.execute();
this.stmt.executeUpdate("INSERT INTO testExplicitPartitions PARTITION(`p10-99`,subp3) VALUES (1, \"subp3\"), (10, \"p10-99\")");
this.stmt.executeUpdate("INSERT INTO testExplicitPartitions PARTITION(subp3) VALUES (3, \"subp3\")");
this.stmt.executeUpdate("INSERT INTO testExplicitPartitions PARTITION(`p0-9`) VALUES (5, \"p0-9:subp3\")");
this.stmt.executeUpdate("FLUSH STATUS");
this.stmt.execute("SELECT * FROM testExplicitPartitions PARTITION (subp2)");
this.pstmt = this.conn.prepareStatement("SELECT * FROM testExplicitPartitions PARTITION (subp2,pNeg) AS TableAlias");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = c.prepareStatement("SELECT * FROM testExplicitPartitions PARTITION (subp2,pNeg) AS TableAlias");
assertTrue(this.pstmt instanceof com.mysql.jdbc.ServerPreparedStatement);
this.pstmt = this.conn.prepareStatement("LOCK TABLE testExplicitPartitions READ, testExplicitPartitions as TableAlias READ");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = c.prepareStatement("LOCK TABLE testExplicitPartitions READ, testExplicitPartitions as TableAlias READ");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = this.conn.prepareStatement("SELECT * FROM testExplicitPartitions PARTITION (subp3) AS TableAlias");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt.execute();
this.pstmt = c.prepareStatement("SELECT COUNT(*) FROM testExplicitPartitions PARTITION (`p10-99`)");
assertTrue(this.pstmt instanceof com.mysql.jdbc.ServerPreparedStatement);
this.pstmt.execute();
this.pstmt = this.conn.prepareStatement("SELECT * FROM testExplicitPartitions PARTITION (pNeg) WHERE a = 100");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt.execute();
this.pstmt = c.prepareStatement("SELECT * FROM testExplicitPartitions PARTITION (pNeg) WHERE a = 100");
assertTrue(this.pstmt instanceof com.mysql.jdbc.ServerPreparedStatement);
this.pstmt.execute();
this.stmt.executeUpdate("UNLOCK TABLES");
// Test LOAD
this.rs = this.stmt.executeQuery("SHOW VARIABLES WHERE Variable_name='datadir'");
this.rs.next();
datadir = this.rs.getString(2);
if (dbname == null) {
fail("No database selected");
} else {
File f = new File(datadir + dbname + File.separator + "loadtestExplicitPartitions.txt");
if (f.exists()) {
f.delete();
}
}
this.pstmt = this.conn
.prepareStatement("SELECT * FROM testExplicitPartitions PARTITION (pNeg, `p10-99`) INTO OUTFILE 'loadtestExplicitPartitions.txt'");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = c
.prepareStatement("SELECT * FROM testExplicitPartitions PARTITION (pNeg, `p10-99`) INTO OUTFILE 'loadtestExplicitPartitions.txt'");
assertTrue(this.pstmt instanceof com.mysql.jdbc.ServerPreparedStatement);
this.stmt.execute("SELECT * FROM testExplicitPartitions PARTITION (pNeg, `p10-99`) INTO OUTFILE 'loadtestExplicitPartitions.txt'");
this.pstmt = this.conn.prepareStatement("ALTER TABLE testExplicitPartitions TRUNCATE PARTITION pNeg, `p10-99`");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = c.prepareStatement("ALTER TABLE testExplicitPartitions TRUNCATE PARTITION pNeg, `p10-99`");
assertTrue(this.pstmt instanceof com.mysql.jdbc.ServerPreparedStatement);
this.stmt.executeUpdate("ALTER TABLE testExplicitPartitions TRUNCATE PARTITION pNeg, `p10-99`");
this.stmt.executeUpdate("FLUSH STATUS");
this.pstmt = this.conn
.prepareStatement("LOAD DATA INFILE 'loadtestExplicitPartitions.txt' INTO TABLE testExplicitPartitions PARTITION (pNeg, subp4, subp5)");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = c
.prepareStatement("LOAD DATA INFILE 'loadtestExplicitPartitions.txt' INTO TABLE testExplicitPartitions PARTITION (pNeg, subp4, subp5)");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.stmt.executeUpdate("LOAD DATA INFILE 'loadtestExplicitPartitions.txt' INTO TABLE testExplicitPartitions PARTITION (pNeg, subp4, subp5)");
this.stmt.executeUpdate("ALTER TABLE testExplicitPartitions TRUNCATE PARTITION pNeg, `p10-99`");
this.stmt.executeUpdate("FLUSH STATUS");
this.pstmt = this.conn
.prepareStatement("LOAD DATA INFILE 'loadtestExplicitPartitions.txt' INTO TABLE testExplicitPartitions PARTITION (pNeg, `p10-99`)");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = c
.prepareStatement("LOAD DATA INFILE 'loadtestExplicitPartitions.txt' INTO TABLE testExplicitPartitions PARTITION (pNeg, `p10-99`)");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.stmt.executeUpdate("LOCK TABLE testExplicitPartitions WRITE");
this.stmt.executeUpdate("LOAD DATA INFILE 'loadtestExplicitPartitions.txt' INTO TABLE testExplicitPartitions PARTITION (pNeg, `p10-99`)");
this.stmt.executeUpdate("UNLOCK TABLES");
// Test UPDATE
this.stmt.executeUpdate("UPDATE testExplicitPartitions PARTITION(subp0) SET b = concat(b, ', Updated')");
this.pstmt = this.conn.prepareStatement("UPDATE testExplicitPartitions PARTITION(subp0) SET b = concat(b, ', Updated2') WHERE a = -2");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt.execute();
this.pstmt = c
.prepareStatement("UPDATE testExplicitPartitions PARTITION(subp0) SET a = -4, b = concat(b, ', Updated from a = -2') WHERE a = -2");
assertTrue(this.pstmt instanceof com.mysql.jdbc.ServerPreparedStatement);
this.pstmt.execute();
this.stmt.executeUpdate("UPDATE testExplicitPartitions PARTITION(subp0) SET b = concat(b, ', Updated2') WHERE a = 100");
this.stmt.executeUpdate("UPDATE testExplicitPartitions PARTITION(subp0) SET a = -2, b = concat(b, ', Updated from a = 100') WHERE a = 100");
this.pstmt = this.conn.prepareStatement(
"UPDATE testExplicitPartitions PARTITION(`p100-99999`, pNeg) SET a = -222, b = concat(b, ', Updated from a = 100') WHERE a = 100");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt.execute();
this.pstmt = c.prepareStatement("UPDATE testExplicitPartitions SET b = concat(b, ', Updated2') WHERE a = 1000000");
assertTrue(this.pstmt instanceof com.mysql.jdbc.ServerPreparedStatement);
this.pstmt.execute();
// Test DELETE
this.stmt.executeUpdate("DELETE FROM testExplicitPartitions PARTITION (pNeg) WHERE a = -1");
this.pstmt = this.conn.prepareStatement("DELETE FROM testExplicitPartitions PARTITION (pNeg) WHERE a = -1");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt.execute();
this.pstmt = c.prepareStatement("DELETE FROM testExplicitPartitions PARTITION (pNeg) WHERE a = -1");
assertTrue(this.pstmt instanceof com.mysql.jdbc.ServerPreparedStatement);
this.pstmt.execute();
this.stmt.executeUpdate("DELETE FROM testExplicitPartitions PARTITION (subp1) WHERE b like '%subp1%'");
this.pstmt = this.conn.prepareStatement("DELETE FROM testExplicitPartitions PARTITION (subp1) WHERE b like '%subp1%'");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt.execute();
this.pstmt = c.prepareStatement("DELETE FROM testExplicitPartitions PARTITION (subp1) WHERE b like '%subp1%'");
assertTrue(this.pstmt instanceof com.mysql.jdbc.ServerPreparedStatement);
this.pstmt.execute();
this.stmt.executeUpdate("FLUSH STATUS");
this.stmt.executeUpdate("LOCK TABLE testExplicitPartitions WRITE");
this.stmt.executeUpdate("DELETE FROM testExplicitPartitions PARTITION (subp1) WHERE b = 'p0-9:subp3'");
this.pstmt = this.conn.prepareStatement("DELETE FROM testExplicitPartitions PARTITION (subp1) WHERE b = 'p0-9:subp3'");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.stmt.executeUpdate("DELETE FROM testExplicitPartitions PARTITION (`p0-9`) WHERE b = 'p0-9:subp3'");
this.pstmt = this.conn.prepareStatement("DELETE FROM testExplicitPartitions PARTITION (`p0-9`) WHERE b = 'p0-9:subp3'");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.stmt.executeUpdate("UNLOCK TABLES");
// Test multi-table DELETE
this.stmt.executeUpdate("CREATE TABLE testExplicitPartitions2 LIKE testExplicitPartitions");
this.pstmt = this.conn.prepareStatement(
"INSERT INTO testExplicitPartitions2 PARTITION (`p10-99`, subp3, `p100-99999`) SELECT * FROM testExplicitPartitions PARTITION (subp3, `p10-99`, `p100-99999`)");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = c.prepareStatement(
"INSERT INTO testExplicitPartitions2 PARTITION (`p10-99`, subp3, `p100-99999`) SELECT * FROM testExplicitPartitions PARTITION (subp3, `p10-99`, `p100-99999`)");
assertTrue(this.pstmt instanceof com.mysql.jdbc.ServerPreparedStatement);
this.stmt.executeUpdate(
"INSERT INTO testExplicitPartitions2 PARTITION (`p10-99`, subp3, `p100-99999`) SELECT * FROM testExplicitPartitions PARTITION (subp3, `p10-99`, `p100-99999`)");
this.stmt.executeUpdate("ALTER TABLE testExplicitPartitions2 TRUNCATE PARTITION `p10-99`, `p0-9`, `p100-99999`");
this.pstmt = this.conn.prepareStatement(
"INSERT IGNORE INTO testExplicitPartitions2 PARTITION (subp3) SELECT * FROM testExplicitPartitions PARTITION (subp3, `p10-99`, `p100-99999`)");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = c.prepareStatement(
"INSERT IGNORE INTO testExplicitPartitions2 PARTITION (subp3) SELECT * FROM testExplicitPartitions PARTITION (subp3, `p10-99`, `p100-99999`)");
assertTrue(this.pstmt instanceof com.mysql.jdbc.ServerPreparedStatement);
this.stmt.executeUpdate(
"INSERT IGNORE INTO testExplicitPartitions2 PARTITION (subp3) SELECT * FROM testExplicitPartitions PARTITION (subp3, `p10-99`, `p100-99999`)");
this.stmt.executeUpdate("TRUNCATE TABLE testExplicitPartitions2");
this.stmt.executeUpdate("INSERT INTO testExplicitPartitions2 SELECT * FROM testExplicitPartitions PARTITION (subp3, `p10-99`, `p100-99999`)");
this.pstmt = this.conn
.prepareStatement("CREATE TABLE testExplicitPartitions3 SELECT * FROM testExplicitPartitions PARTITION (pNeg,subp3,`p100-99999`)");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = c
.prepareStatement("CREATE TABLE testExplicitPartitions3 SELECT * FROM testExplicitPartitions PARTITION (pNeg,subp3,`p100-99999`)");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.stmt.executeUpdate("CREATE TABLE testExplicitPartitions3 SELECT * FROM testExplicitPartitions PARTITION (pNeg,subp3,`p100-99999`)");
this.pstmt = this.conn.prepareStatement(
"DELETE testExplicitPartitions, testExplicitPartitions2 FROM testExplicitPartitions PARTITION (pNeg), testExplicitPartitions3, testExplicitPartitions2 PARTITION (subp3) WHERE testExplicitPartitions.a = testExplicitPartitions3.a AND testExplicitPartitions3.b = 'subp3' AND testExplicitPartitions3.a = testExplicitPartitions2.a");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = c.prepareStatement(
"DELETE testExplicitPartitions, testExplicitPartitions2 FROM testExplicitPartitions PARTITION (pNeg), testExplicitPartitions3, testExplicitPartitions2 PARTITION (subp3) WHERE testExplicitPartitions.a = testExplicitPartitions3.a AND testExplicitPartitions3.b = 'subp3' AND testExplicitPartitions3.a = testExplicitPartitions2.a");
assertTrue(this.pstmt instanceof com.mysql.jdbc.ServerPreparedStatement);
this.stmt.executeUpdate(
"DELETE testExplicitPartitions, testExplicitPartitions2 FROM testExplicitPartitions PARTITION (pNeg), testExplicitPartitions3, testExplicitPartitions2 PARTITION (subp3) WHERE testExplicitPartitions.a = testExplicitPartitions3.a AND testExplicitPartitions3.b = 'subp3' AND testExplicitPartitions3.a = testExplicitPartitions2.a");
this.pstmt = this.conn.prepareStatement(
"DELETE FROM testExplicitPartitions2, testExplicitPartitions3 USING testExplicitPartitions2 PARTITION (`p0-9`), testExplicitPartitions3, testExplicitPartitions PARTITION (subp3) WHERE testExplicitPartitions.a = testExplicitPartitions3.a AND testExplicitPartitions3.b = 'subp3' AND testExplicitPartitions2.a = testExplicitPartitions.a");
assertTrue(this.pstmt instanceof com.mysql.jdbc.PreparedStatement);
this.pstmt = c.prepareStatement(
"DELETE FROM testExplicitPartitions2, testExplicitPartitions3 USING testExplicitPartitions2 PARTITION (`p0-9`), testExplicitPartitions3, testExplicitPartitions PARTITION (subp3) WHERE testExplicitPartitions.a = testExplicitPartitions3.a AND testExplicitPartitions3.b = 'subp3' AND testExplicitPartitions2.a = testExplicitPartitions.a");
assertTrue(this.pstmt instanceof com.mysql.jdbc.ServerPreparedStatement);
this.stmt.executeUpdate(
"DELETE FROM testExplicitPartitions2, testExplicitPartitions3 USING testExplicitPartitions2 PARTITION (`p0-9`), testExplicitPartitions3, testExplicitPartitions PARTITION (subp3) WHERE testExplicitPartitions.a = testExplicitPartitions3.a AND testExplicitPartitions3.b = 'subp3' AND testExplicitPartitions2.a = testExplicitPartitions.a");
this.stmt.executeUpdate("SET @@default_storage_engine = @old_default_storage_engine");
} finally {
this.stmt.executeUpdate("DROP TABLE IF EXISTS testExplicitPartitions, testExplicitPartitions2, testExplicitPartitions3");
if (c != null) {
c.close();
}
if (datadir != null) {
File f = new File(datadir + dbname + File.separator + "loadtestExplicitPartitions.txt");
if (f.exists()) {
f.deleteOnExit();
} else {
fail("File " + datadir + dbname + File.separator + "loadtestExplicitPartitions.txt cannot be deleted."
+ "You should run server and tests on the same filesystem.");
}
}
}
}
}
/**
* WL#1326 - GIS: Precise spatial operations
*
* GIS functions added in 5.6GA: ST_Intersection(g1 geometry, g2 geometry); ST_Difference(g1 geometry, g2 geometry);
* ST_Union(g1 geometry, g2 geometry); ST_SymDifference(g1 geometry, g2 geometry); ST_Buffer(g1 geometry, d
* numeric).
*
* @throws SQLException
*/
public void testGISPreciseSpatialFunctions() throws Exception {
if (!versionMeetsMinimum(5, 6)) {
return;
}
String[] querySamples = new String[] {
"SELECT AsText(ST_Intersection(GeomFromText('POLYGON((0 0, 8 0, 4 6, 0 0))'), GeomFromText('POLYGON((0 3, 8 3, 4 9, 0 3))')))",
"SELECT AsText(ST_Difference(GeomFromText('POLYGON((0 0, 8 0, 4 6, 0 0))'), GeomFromText('POLYGON((0 3, 8 3, 4 9, 0 3))')))",
"SELECT AsText(ST_Union(GeomFromText('POLYGON((0 0, 8 0, 4 6, 0 0))'), GeomFromText('POLYGON((0 3, 8 3, 4 9, 0 3))')))",
"SELECT AsText(ST_SymDifference(GeomFromText('POLYGON((0 0, 8 0, 4 6, 0 0))'), GeomFromText('POLYGON((0 3, 8 3, 4 9, 0 3))')))",
"SELECT AsText(ST_Buffer(GeomFromText('POLYGON((0 0, 8 0, 4 6, 0 0))'), 0.5))",
"SELECT ST_Distance(GeomFromText('POLYGON((0 0, 8 0, 4 6, 0 0))'), GeomFromText('POLYGON((0 10, 8 10, 4 16, 0 10))'))" };
for (String query : querySamples) {
this.rs = this.stmt.executeQuery(query);
assertTrue("Query should return at least one row.", this.rs.next());
assertFalse("Query should return only one row.", this.rs.next());
this.rs.close();
}
}
/**
* WL#5787 - IPv6-capable INET_ATON and INET_NTOA functions
*
* IPv6 functions added in 5.6GA: INET6_ATON(ip) and INET6_NTOA(ip).
*
* @throws SQLException
*/
public void testIPv6Functions() throws Exception {
if (!versionMeetsMinimum(5, 6, 11)) {
// MySQL 5.6.11 includes a bug fix (Bug#68454) that is required to run this test successfully.
return;
}
String[][] dataSamples = new String[][] { { "127.0.0.1", "172.0.0.1" }, { "192.168.1.1", "::ffff:192.168.1.1" }, { "10.1", "::ffff:10.1" },
{ "172.16.260.4", "172.16.260.4" }, { "::1", "::1" }, { "10AA:10bb:10CC:10dd:10EE:10FF:10aa:10BB", "10aa:10bb:10cc:10dd:10ee:10ff:10aa:10bb" },
{ "00af:0000:0000:0000:10af:000a:000b:0001", "00af:0000:0000:0000:10af:000a:000b:0001" },
{ "48:4df1::0010:ad3:1100", "48:4df1::0010:ad3:1100" },
{ "2000:abcd:1234:0000:efgh:1000:2000:3000", "2000:abcd:1234:0000:efgh:1000:2000:3000" },
{ "2000:abcd:1234:0000:1000:2000:3000", "2000:abcd:1234:0000:1000:2000:3000" } };
String[][] dataExpected = new String[][] { { "127.0.0.1", "172.0.0.1" }, { "192.168.1.1", "::ffff:192.168.1.1" }, { "10.0.0.1", null }, { null, null },
{ null, "::1" }, { null, "10aa:10bb:10cc:10dd:10ee:10ff:10aa:10bb" }, { null, "af::10af:a:b:1" }, { null, "48:4df1::10:ad3:1100" },
{ null, null }, { null, null } };
createTable("testWL5787", "(id INT AUTO_INCREMENT PRIMARY KEY, ipv4 INT UNSIGNED, ipv6 VARBINARY(16))");
Connection testConn = this.conn;
if (versionMeetsMinimum(5, 7, 10)) {
// MySQL 5.7.10+ requires non STRICT_TRANS_TABLES to use these functions with invalid data.
Properties props = new Properties();
props.put("jdbcCompliantTruncation", "false");
String sqlMode = getMysqlVariable("sql_mode");
if (sqlMode.contains("STRICT_TRANS_TABLES")) {
sqlMode = removeSqlMode("STRICT_TRANS_TABLES", sqlMode);
props.put("sessionVariables", "sql_mode='" + sqlMode + "'");
}
testConn = getConnectionWithProps(props);
}
this.pstmt = testConn.prepareStatement("INSERT INTO testWL5787 VALUES (NULL, INET_ATON(?), INET6_ATON(?))");
for (String[] data : dataSamples) {
this.pstmt.setString(1, data[0]);
this.pstmt.setString(2, data[1]);
this.pstmt.addBatch();
}
int c = 0;
for (int r : this.pstmt.executeBatch()) {
c += r;
}
assertEquals("Failed inserting data samples: wrong number of inserts.", dataSamples.length, c);
this.rs = this.stmt.executeQuery("SELECT id, INET_NTOA(ipv4), INET6_NTOA(ipv6) FROM testWL5787");
int i = 0;
while (this.rs.next()) {
i = this.rs.getInt(1);
assertEquals("Wrong IPv4 data in row [" + i + "].", dataExpected[i - 1][0], this.rs.getString(2));
assertEquals("Wrong IPv6 data in row [" + i + "].", dataExpected[i - 1][1], this.rs.getString(3));
}
this.pstmt.close();
testConn.close();
}
/**
* WL#5538 - InnoDB Full-Text Search Support
*
* CREATE TABLE syntax changed in 5.6GA
*
* InnoDB engine accepts FULLTEXT indexes.
* CREATE TABLE ... FULLTEXT(...) ... ENGINE=InnoDB
*
* @throws SQLException
*/
public void testFULLTEXTSearchInnoDB() throws Exception {
if (!versionMeetsMinimum(5, 6)) {
return;
}
createTable("testFULLTEXTSearchInnoDB",
"(id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, " + "title VARCHAR(200), body TEXT, FULLTEXT (title , body)) ENGINE=InnoDB");
this.stmt.executeUpdate("INSERT INTO testFULLTEXTSearchInnoDB (title, body) VALUES ('MySQL Tutorial','DBMS stands for DataBase ...'), "
+ "('How To Use MySQL Well','After you went through a ...'), ('Optimizing MySQL','In this tutorial we will show ...'), "
+ "('1001 MySQL Tricks','1. Never run mysqld as root. 2. ...'), ('MySQL vs. YourSQL','In the following database comparison ...'), "
+ "('MySQL Security','When configured properly, MySQL ...')");
String[] querySamples = new String[] { "SELECT * FROM testFULLTEXTSearchInnoDB WHERE MATCH (title, body) AGAINST ('database' IN NATURAL LANGUAGE MODE)",
"SELECT * FROM testFULLTEXTSearchInnoDB WHERE MATCH (title, body) AGAINST ('database' IN NATURAL LANGUAGE MODE WITH QUERY EXPANSION)",
"SELECT * FROM testFULLTEXTSearchInnoDB WHERE MATCH (title, body) AGAINST ('<MySQL >YourSQL' IN BOOLEAN MODE)",
"SELECT * FROM testFULLTEXTSearchInnoDB WHERE MATCH (title, body) AGAINST ('+MySQL -YourSQL' IN BOOLEAN MODE)",
"SELECT MATCH (title, body) AGAINST ('database' IN NATURAL LANGUAGE MODE) FROM testFULLTEXTSearchInnoDB",
"SELECT MATCH (title, body) AGAINST ('database' IN NATURAL LANGUAGE MODE WITH QUERY EXPANSION) FROM testFULLTEXTSearchInnoDB",
"SELECT MATCH (title, body) AGAINST ('<MySQL >YourSQL' IN BOOLEAN MODE) FROM testFULLTEXTSearchInnoDB",
"SELECT MATCH (title, body) AGAINST ('+MySQL -YourSQL' IN BOOLEAN MODE) FROM testFULLTEXTSearchInnoDB" };
for (String query : querySamples) {
this.rs = this.stmt.executeQuery(query);
assertTrue("Query [" + query + "] should return some rows.", this.rs.next());
this.rs.close();
}
}
/**
* WL#6555 - Online rename index
*
* ALTER TABLE syntax changed in 5.7.1
*
* Alter table allows to rename indexes. ALTER TABLE ... RENAME INDEX x TO y
*
* @throws SQLException
*/
public void testRenameIndex() throws Exception {
if (!versionMeetsMinimum(5, 7, 1)) {
return;
}
createTable("testRenameIndex", "(col1 INT, col2 INT, INDEX (col1)) ENGINE=InnoDB");
this.stmt.execute("CREATE INDEX testIdx ON testRenameIndex (col2)");
DatabaseMetaData dbmd = this.conn.getMetaData();
this.rs = dbmd.getIndexInfo(null, null, "testRenameIndex", false, true);
assertTrue("Expected 1 (of 2) indexes.", this.rs.next());
assertEquals("Wrong index name for table 'testRenameIndex'.", "col1", this.rs.getString(6));
assertTrue("Expected 2 (of 2) indexes.", this.rs.next());
assertEquals("Wrong index name for table 'testRenameIndex'.", "testIdx", this.rs.getString(6));
assertFalse("No more indexes expected for table 'testRenameIndex'.", this.rs.next());
this.stmt.execute("ALTER TABLE testRenameIndex RENAME INDEX col1 TO col1Index");
this.stmt.execute("ALTER TABLE testRenameIndex RENAME INDEX testIdx TO testIndex");
this.rs = dbmd.getIndexInfo(null, null, "testRenameIndex", false, true);
assertTrue("Expected 1 (of 2) indexes.", this.rs.next());
assertEquals("Wrong index name for table 'testRenameIndex'.", "col1Index", this.rs.getString(6));
assertTrue("Expected 2 (of 2) indexes.", this.rs.next());
assertEquals("Wrong index name for table 'testRenameIndex'.", "testIndex", this.rs.getString(6));
assertFalse("No more indexes expected for table 'testRenameIndex'.", this.rs.next());
}
/**
* WL#6406 - Stacked diagnostic areas
*
* "STACKED" in "GET [CURRENT | STACKED] DIAGNOSTICS" syntax was added in 5.7.0. Final behavior was implemented in
* version 5.7.2, by WL#5928 - Most statements should clear the diagnostic area.
*
* @throws SQLException
*/
public void testGetStackedDiagnostics() throws Exception {
if (!versionMeetsMinimum(5, 7, 2)) {
return;
}
// test calling GET STACKED DIAGNOSTICS outside an handler
final Statement locallyScopedStmt = this.stmt;
assertThrows(SQLException.class, "GET STACKED DIAGNOSTICS when handler not active", new Callable<Void>() {
public Void call() throws Exception {
locallyScopedStmt.execute("GET STACKED DIAGNOSTICS @num = NUMBER");
return null;
}
});
// test calling GET STACKED DIAGNOSTICS inside an handler
// (stored procedure is based on documentation example)
createTable("testGetStackedDiagnosticsTbl", "(c VARCHAR(8) NOT NULL)");
createProcedure("testGetStackedDiagnosticsSP",
"() BEGIN DECLARE EXIT HANDLER FOR SQLEXCEPTION BEGIN GET CURRENT DIAGNOSTICS CONDITION 1 @errno = MYSQL_ERRNO, @msg = MESSAGE_TEXT; "
+ "SELECT 'current DA before insert in handler' AS op, @errno AS errno, @msg AS msg; " // 1st result
+ "GET STACKED DIAGNOSTICS CONDITION 1 @errno = MYSQL_ERRNO, @msg = MESSAGE_TEXT; "
+ "SELECT 'stacked DA before insert in handler' AS op, @errno AS errno, @msg AS msg; " // 2nd result
+ "INSERT INTO testGetStackedDiagnosticsTbl (c) VALUES('gnitset'); " + "GET CURRENT DIAGNOSTICS @num = NUMBER; "
+ "IF @num = 0 THEN SELECT 'INSERT succeeded, current DA is empty' AS op; " // 3rd result
+ "ELSE GET CURRENT DIAGNOSTICS CONDITION 1 @errno = MYSQL_ERRNO, @msg = MESSAGE_TEXT; "
+ "SELECT 'current DA after insert in handler' AS op, @errno AS errno, @msg AS msg; END IF; "
+ "GET STACKED DIAGNOSTICS CONDITION 1 @errno = MYSQL_ERRNO, @msg = MESSAGE_TEXT; "
+ "SELECT 'stacked DA after insert in handler' AS op, @errno AS errno, @msg AS msg; END; " // 4th result
+ "INSERT INTO testGetStackedDiagnosticsTbl (c) VALUES ('testing');INSERT INTO testGetStackedDiagnosticsTbl (c) VALUES (NULL); END");
CallableStatement cStmt = this.conn.prepareCall("CALL testGetStackedDiagnosticsSP()");
assertTrue(cStmt.execute());
// test 1st ResultSet
this.rs = cStmt.getResultSet();
assertTrue(this.rs.next());
assertEquals("current DA before insert in handler", this.rs.getString(1));
assertEquals(1048, this.rs.getInt(2));
assertEquals("Column 'c' cannot be null", this.rs.getString(3));
assertFalse(this.rs.next());
this.rs.close();
// test 2nd ResultSet
assertTrue(cStmt.getMoreResults());
this.rs = cStmt.getResultSet();
assertTrue(this.rs.next());
assertEquals("stacked DA before insert in handler", this.rs.getString(1));
assertEquals(1048, this.rs.getInt(2));
assertEquals("Column 'c' cannot be null", this.rs.getString(3));
assertFalse(this.rs.next());
this.rs.close();
// test 3rd ResultSet
assertTrue(cStmt.getMoreResults());
this.rs = cStmt.getResultSet();
assertTrue(this.rs.next());
assertEquals("INSERT succeeded, current DA is empty", this.rs.getString(1));
assertFalse(this.rs.next());
this.rs.close();
// test 4th ResultSet
assertTrue(cStmt.getMoreResults());
this.rs = cStmt.getResultSet();
assertTrue(this.rs.next());
assertEquals("stacked DA after insert in handler", this.rs.getString(1));
assertEquals(1048, this.rs.getInt(2));
assertEquals("Column 'c' cannot be null", this.rs.getString(3));
assertFalse(this.rs.next());
this.rs.close();
// no more ResultSets
assertFalse(cStmt.getMoreResults());
cStmt.close();
// test table contents
this.rs = this.stmt.executeQuery("SELECT * FROM testGetStackedDiagnosticsTbl");
assertTrue(this.rs.next());
assertEquals("testing", this.rs.getString(1));
assertTrue(this.rs.next());
assertEquals("gnitset", this.rs.getString(1));
assertFalse(this.rs.next());
this.rs.close();
}
/**
* WL#6868 - Support transportable tablespaces for single innodb partition.
*
* New syntax introduced in MySQL 5.7.4.
* ALTER TABLE t DISCARD PARTITION {p[[,p1]..]|ALL} TABLESPACE;
* ALTER TABLE t IMPORT PARTITION {p[[,p1]..]|ALL} TABLESPACE;
*/
public void testDiscardImportPartitions() throws Exception {
if (!versionMeetsMinimum(5, 7, 4)) {
return;
}
createTable("testDiscardImportPartitions",
"(id INT) ENGINE = InnoDB PARTITION BY RANGE (id) (PARTITION p1 VALUES LESS THAN (0), PARTITION p2 VALUES LESS THAN MAXVALUE)");
this.stmt.executeUpdate("INSERT INTO testDiscardImportPartitions VALUES (-3), (-2), (-1), (0), (1), (2), (3)");
this.rs = this.stmt.executeQuery("CHECK TABLE testDiscardImportPartitions");
assertTrue(this.rs.next());
assertEquals("status", this.rs.getString(3));
assertEquals("OK", this.rs.getString(4));
this.rs.close();
this.stmt.executeUpdate("ALTER TABLE testDiscardImportPartitions DISCARD PARTITION p1 TABLESPACE");
this.rs = this.stmt.executeQuery("CHECK TABLE testDiscardImportPartitions");
assertTrue(this.rs.next());
assertEquals("error", this.rs.getString(3));
assertEquals("Partition p1 returned error", this.rs.getString(4));
this.rs.close();
assertThrows(SQLException.class, "Tablespace is missing for table .*", new Callable<Void>() {
@SuppressWarnings("synthetic-access")
public Void call() throws Exception {
SyntaxRegressionTest.this.stmt.executeUpdate("ALTER TABLE testDiscardImportPartitions IMPORT PARTITION p1 TABLESPACE");
return null;
}
});
}
/**
* WL#7909 - Server side JSON functions
*
* Test support for data type JSON.
*
* New JSON functions added in MySQL 5.7.8:
* - JSON_APPEND(), Append data to JSON document (only in 5.7.8)
* - JSON_ARRAY_APPEND(), Append data to JSON document (added in 5.7.9+)
* - JSON_ARRAY_INSERT(), Insert into JSON array
* - JSON_ARRAY(), Create JSON array
* - JSON_CONTAINS_PATH(), Whether JSON document contains any data at path
* - JSON_CONTAINS(), Whether JSON document contains specific object at path
* - JSON_DEPTH(), Maximum depth of JSON document
* - JSON_EXTRACT(), Return data from JSON document
* - JSON_INSERT(), Insert data into JSON document
* - JSON_KEYS(), Array of keys from JSON document
* - JSON_LENGTH(), Number of elements in JSON document
* - JSON_MERGE(), Merge JSON documents
* - JSON_OBJECT(), Create JSON object
* - JSON_QUOTE(), Quote JSON document
* - JSON_REMOVE(), Remove data from JSON document
* - JSON_REPLACE(), Replace values in JSON document
* - JSON_SEARCH(), Path to value within JSON document
* - JSON_SET(), Insert data into JSON document
* - JSON_TYPE(), Type of JSON value
* - JSON_UNQUOTE(), Unquote JSON value
* - JSON_VALID(), Whether JSON value is valid
*/
public void testJsonType() throws Exception {
if (!versionMeetsMinimum(5, 7, 8)) {
return;
}
createTable("testJsonType", "(id INT PRIMARY KEY, jsonDoc JSON)");
assertEquals(1, this.stmt.executeUpdate("INSERT INTO testJsonType VALUES (1, '{\"key1\": \"value1\"}')"));
// Plain statement.
this.rs = this.stmt.executeQuery("SELECT * FROM testJsonType");
assertEquals("JSON", this.rs.getMetaData().getColumnTypeName(2));
assertTrue(this.rs.next());
assertEquals("{\"key1\": \"value1\"}", this.rs.getString(2));
assertEquals("{\"key1\": \"value1\"}", this.rs.getObject(2));
assertFalse(this.rs.next());
// Updatable ResultSet.
Statement testStmt = this.conn.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE);
this.rs = testStmt.executeQuery("SELECT * FROM testJsonType");
assertTrue(this.rs.next());
this.rs.updateString(2, "{\"key1\": \"value1\", \"key2\": \"value2\"}");
this.rs.updateRow();
this.rs = testStmt.executeQuery("SELECT * FROM testJsonType");
assertEquals("JSON", this.rs.getMetaData().getColumnTypeName(2));
assertTrue(this.rs.next());
assertEquals("{\"key1\": \"value1\", \"key2\": \"value2\"}", this.rs.getString(2));
assertEquals("{\"key1\": \"value1\", \"key2\": \"value2\"}", this.rs.getObject(2));
assertFalse(this.rs.next());
// PreparedStatement.
this.pstmt = this.conn.prepareStatement("SELECT * FROM testJsonType");
this.rs = this.pstmt.executeQuery();
assertEquals("JSON", this.rs.getMetaData().getColumnTypeName(2));
assertTrue(this.rs.next());
assertEquals("{\"key1\": \"value1\", \"key2\": \"value2\"}", this.rs.getString(2));
assertEquals("{\"key1\": \"value1\", \"key2\": \"value2\"}", this.rs.getObject(2));
assertFalse(this.rs.next());
// ServerPreparedStatement.
Connection testConn = getConnectionWithProps("useServerPrepStmts=true");
this.pstmt = testConn.prepareStatement("SELECT * FROM testJsonType");
this.rs = this.pstmt.executeQuery();
assertEquals("JSON", this.rs.getMetaData().getColumnTypeName(2));
assertTrue(this.rs.next());
assertEquals("{\"key1\": \"value1\", \"key2\": \"value2\"}", this.rs.getString(2));
assertEquals("{\"key1\": \"value1\", \"key2\": \"value2\"}", this.rs.getObject(2));
assertFalse(this.rs.next());
testConn.close();
// CallableStatement.
createProcedure("testJsonTypeProc", "(OUT jsonDoc JSON) SELECT t.jsonDoc INTO jsonDoc FROM testJsonType t");
CallableStatement testCstmt = this.conn.prepareCall("{CALL testJsonTypeProc(?)}");
testCstmt.registerOutParameter(1, Types.CHAR);
testCstmt.execute();
assertEquals("{\"key1\": \"value1\", \"key2\": \"value2\"}", testCstmt.getString(1));
assertEquals("{\"key1\": \"value1\", \"key2\": \"value2\"}", testCstmt.getObject(1));
// JSON functions.
testJsonTypeCheckFunction(versionMeetsMinimum(5, 7, 9) ? "SELECT JSON_ARRAY_APPEND('[1]', '$', 2)" : "SELECT JSON_APPEND('[1]', '$', 2)", "[1, 2]");
testJsonTypeCheckFunction("SELECT JSON_ARRAY_INSERT('[2]', '$[0]', 1)", "[1, 2]");
testJsonTypeCheckFunction("SELECT JSON_ARRAY(1, 2)", "[1, 2]");
testJsonTypeCheckFunction("SELECT JSON_CONTAINS_PATH('{\"a\": 1}', 'one', '$.a')", "1");
testJsonTypeCheckFunction("SELECT JSON_CONTAINS('{\"a\": 1}', '1', '$.a')", "1");
testJsonTypeCheckFunction("SELECT JSON_DEPTH('{\"a\": 1}')", "2");
testJsonTypeCheckFunction("SELECT JSON_EXTRACT('[1, 2]', '$[0]')", "1");
testJsonTypeCheckFunction("SELECT JSON_INSERT('[1]', '$[1]', 2)", "[1, 2]");
testJsonTypeCheckFunction("SELECT JSON_KEYS('{\"a\": 1}')", "[\"a\"]");
testJsonTypeCheckFunction("SELECT JSON_LENGTH('{\"a\": 1}')", "1");
testJsonTypeCheckFunction("SELECT JSON_MERGE('[1]', '[2]')", "[1, 2]");
testJsonTypeCheckFunction("SELECT JSON_OBJECT('a', 1)", "{\"a\": 1}");
testJsonTypeCheckFunction("SELECT JSON_QUOTE('[1]')", "\"[1]\"");
testJsonTypeCheckFunction("SELECT JSON_REMOVE('[1, 2]', '$[1]')", "[1]");
testJsonTypeCheckFunction("SELECT JSON_REPLACE('[0]', '$[0]', 1)", "[1]");
testJsonTypeCheckFunction("SELECT JSON_SEARCH('{\"a\": \"1\"}', 'one', '1')", "\"$.a\"");
testJsonTypeCheckFunction("SELECT JSON_SET('[1, 1]', '$[1]', 2)", "[1, 2]");
testJsonTypeCheckFunction("SELECT JSON_TYPE('[]')", "ARRAY");
testJsonTypeCheckFunction("SELECT JSON_UNQUOTE('\"[1]\"')", "[1]");
testJsonTypeCheckFunction("SELECT JSON_VALID('{\"a\": 1}')", "1");
}
private void testJsonTypeCheckFunction(String sql, String expectedResult) throws Exception {
this.rs = this.stmt.executeQuery(sql);
assertTrue(this.rs.next());
assertEquals(expectedResult, this.rs.getString(1));
}
/**
* WL#8016 - Parser for optimizer hints.
*
* Test syntax for optimizer hints.
*
* New optimizer hints feature added in MySQL 5.7.7. Hints are permitted in these contexts:
* At the beginning of DML statements
* - SELECT /*+ ... */ ...
* - INSERT /*+ ... */ ...
* - REPLACE /*+ ... */ ...
* - UPDATE /*+ ... */ ...
* - DELETE /*+ ... */ ...
* At the beginning of query blocks:
* - (SELECT /*+ ... */ ... )
* - (SELECT ... ) UNION (SELECT /*+ ... */ ... )
* - (SELECT /*+ ... */ ... ) UNION (SELECT /*+ ... */ ... )
* - UPDATE ... WHERE x IN (SELECT /*+ ... */ ...)
* - INSERT ... SELECT /*+ ... */ ...
* In hintable statements prefaced by EXPLAIN. For example:
* - EXPLAIN SELECT /*+ ... */ ...
* - EXPLAIN UPDATE ... WHERE x IN (SELECT /*+ ... */ ...)
*/
public void testHints() throws Exception {
if (!versionMeetsMinimum(5, 7, 7)) {
return;
}
/*
* Test hints syntax variations.
*/
// Valid hints.
testHintsSyntax("SELECT /*+ max_execution_time(100) */ SLEEP(5)", true, false);
testHintsSyntax("SELECT/*+ max_execution_time(100) */SLEEP(5)", true, false);
testHintsSyntax("SELECT /*+ max_execution_time(100) */ SLEEP(5) /*+ wrong location, just comments */", true, false);
testHintsSyntax("SELECT /*+ max_execution_time(100) *//* comment */ SLEEP(5)", true, false);
// Invalid hints.
testHintsSyntax("SELECT /*+ max_execution_time *//*+ (100) */ SLEEP(0.5)", false, true);
testHintsSyntax("SELECT /*+! max_execution_time (100) */ SLEEP(0.5)", false, true);
// Valid and invalid hints.
testHintsSyntax("SELECT /*+ max_execution_time (100) bad_hint */ SLEEP(5)", true, true);
// No hints.
testHintsSyntax("/*+ max_execution_time(100) */SELECT SLEEP(0.5)", false, false);
testHintsSyntax("SELECT SLEEP(0.5) /*+ max_execution_time(100) */", false, false);
testHintsSyntax("SELECT /* + max_execution_time(100) */ SLEEP(0.5)", false, false);
testHintsSyntax("SELECT /* comment *//*+ max_execution_time(100) */ SLEEP(0.5)", false, false);
testHintsSyntax("SELECT /*!+1-1, */ 1", false, false);
/*
* Test hints in different query types using Statements.
*/
createTable("testHints", "(id INT PRIMARY KEY, txt CHAR(2))");
// Hints in single query.
assertEquals(1, this.stmt.executeUpdate("INSERT /*+ mrr(testHints) */ INTO testHints VALUES (1, 'a')"));
assertNull(this.stmt.getWarnings());
assertEquals(2, this.stmt.executeUpdate("REPLACE /*+ mrr(testHints) */ INTO testHints VALUES (1, 'A')"));
assertNull(this.stmt.getWarnings());
assertEquals(1, this.stmt.executeUpdate("UPDATE /*+ mrr(testHints) */ testHints SET txt = 'Aa'"));
assertNull(this.stmt.getWarnings());
this.rs = this.stmt.executeQuery("SELECT /*+ max_execution_time(100) */ * FROM testHints");
assertNull(this.stmt.getWarnings());
assertTrue(this.rs.next());
assertEquals(1, this.rs.getInt(1));
assertEquals("Aa", this.rs.getString(2));
assertFalse(this.rs.next());
assertEquals(1, this.stmt.executeUpdate("DELETE /*+ mrr(testHints) */ FROM testHints"));
assertNull(this.stmt.getWarnings());
// Hints in sub-query block.
assertEquals(1, this.stmt.executeUpdate("INSERT INTO testHints (SELECT /*+ qb_name(dummy) */ 2, 'b')"));
assertNull(this.stmt.getWarnings());
assertEquals(2, this.stmt.executeUpdate("REPLACE INTO testHints (SELECT /*+ qb_name(dummy) */ 2, 'B')"));
assertNull(this.stmt.getWarnings());
assertEquals(1, this.stmt.executeUpdate("UPDATE testHints SET txt = 'Bb' WHERE id IN (SELECT /*+ qb_name(dummy) */ 2)"));
assertNull(this.stmt.getWarnings());
this.rs = this.stmt.executeQuery("SELECT /*+ max_execution_time(100) */ 1, 'Aa' UNION SELECT /*+ qb_name(dummy) */ * FROM testHints");
assertNull(this.stmt.getWarnings());
assertTrue(this.rs.next());
assertEquals(1, this.rs.getInt(1));
assertEquals("Aa", this.rs.getString(2));
assertTrue(this.rs.next());
assertEquals(2, this.rs.getInt(1));
assertEquals("Bb", this.rs.getString(2));
assertFalse(this.rs.next());
assertEquals(1, this.stmt.executeUpdate("DELETE FROM testHints WHERE id IN (SELECT /*+ qb_name(dummy) */ 2)"));
assertNull(this.stmt.getWarnings());
/*
* Test hints in different query types using PreparedStatements.
*/
for (String connProps : new String[] { "useServerPrepStmts=false", "useServerPrepStmts=true" }) {
Connection testConn = null;
testConn = getConnectionWithProps(connProps);
// Hints in single query.
this.pstmt = testConn.prepareStatement("INSERT /*+ mrr(testHints) */ INTO testHints VALUES (?, ?)");
this.pstmt.setInt(1, 1);
this.pstmt.setString(2, "a");
assertEquals(1, this.pstmt.executeUpdate());
assertNull(this.pstmt.getWarnings());
this.pstmt = testConn.prepareStatement("REPLACE /*+ mrr(testHints) */ INTO testHints VALUES (?, ?)");
this.pstmt.setInt(1, 1);
this.pstmt.setString(2, "A");
assertEquals(2, this.pstmt.executeUpdate());
assertNull(this.pstmt.getWarnings());
this.pstmt = testConn.prepareStatement("UPDATE /*+ mrr(testHints) */ testHints SET txt = ?");
this.pstmt.setString(1, "Aa");
assertEquals(1, this.pstmt.executeUpdate());
assertNull(this.pstmt.getWarnings());
this.pstmt = testConn.prepareStatement("SELECT /*+ max_execution_time(100) */ * FROM testHints WHERE id = ?");
this.pstmt.setInt(1, 1);
this.rs = this.pstmt.executeQuery();
assertNull(this.pstmt.getWarnings());
assertTrue(this.rs.next());
assertEquals(1, this.rs.getInt(1));
assertEquals("Aa", this.rs.getString(2));
assertFalse(this.rs.next());
this.pstmt = testConn.prepareStatement("DELETE /*+ mrr(testHints) */ FROM testHints WHERE id = ?");
this.pstmt.setInt(1, 1);
assertEquals(1, this.pstmt.executeUpdate());
assertNull(this.pstmt.getWarnings());
// Hints in sub-query block.
this.pstmt = testConn.prepareStatement("INSERT INTO testHints (SELECT /*+ qb_name(dummy) */ ?, ?)");
this.pstmt.setInt(1, 2);
this.pstmt.setString(2, "b");
assertEquals(1, this.pstmt.executeUpdate());
assertNull(this.pstmt.getWarnings());
this.pstmt = testConn.prepareStatement("REPLACE INTO testHints (SELECT /*+ qb_name(dummy) */ ?, ?)");
this.pstmt.setInt(1, 2);
this.pstmt.setString(2, "B");
assertEquals(2, this.pstmt.executeUpdate());
assertNull(this.pstmt.getWarnings());
this.pstmt = testConn.prepareStatement("UPDATE testHints SET txt = 'Bb' WHERE id IN (SELECT /*+ qb_name(dummy) */ ?)");
this.pstmt.setInt(1, 2);
assertEquals(1, this.pstmt.executeUpdate());
assertNull(this.pstmt.getWarnings());
this.pstmt = testConn.prepareStatement("SELECT /*+ max_execution_time(100) */ ?, ? UNION SELECT /*+ qb_name(dummy) */ * FROM testHints");
this.pstmt.setInt(1, 1);
this.pstmt.setString(2, "Aa");
this.rs = this.pstmt.executeQuery();
assertNull(this.pstmt.getWarnings());
assertTrue(this.rs.next());
assertEquals(1, this.rs.getInt(1));
assertEquals("Aa", this.rs.getString(2));
assertTrue(this.rs.next());
assertEquals(2, this.rs.getInt(1));
assertEquals("Bb", this.rs.getString(2));
assertFalse(this.rs.next());
this.pstmt = testConn.prepareStatement("DELETE FROM testHints WHERE id IN (SELECT /*+ qb_name(dummy) */ ?)");
this.pstmt.setInt(1, 2);
assertEquals(1, this.pstmt.executeUpdate());
assertNull(this.pstmt.getWarnings());
testConn.close();
}
}
private void testHintsSyntax(String query, boolean processesHint, boolean warningExpected) throws Exception {
this.stmt.clearWarnings();
this.rs = this.stmt.executeQuery(query);
if (warningExpected) {
assertNotNull(this.stmt.getWarnings());
assertTrue(this.stmt.getWarnings().getMessage().startsWith("Optimizer hint syntax error"));
} else {
assertNull(this.stmt.getWarnings());
}
assertTrue(this.rs.next());
assertEquals(processesHint ? 1 : 0, this.rs.getInt(1));
assertFalse(this.rs.next());
}
}