ResultSetRegressionTest.java
193 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
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
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
/*
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.Reader;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.math.BigDecimal;
import java.sql.CallableStatement;
import java.sql.Clob;
import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.Date;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Timestamp;
import java.sql.Types;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.GregorianCalendar;
import java.util.List;
import java.util.Locale;
import java.util.Properties;
import java.util.TimeZone;
import java.util.concurrent.Callable;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;
import javax.sql.rowset.CachedRowSet;
import com.mysql.jdbc.CommunicationsException;
import com.mysql.jdbc.ConnectionImpl.ExceptionInterceptorChain;
import com.mysql.jdbc.ExceptionInterceptor;
import com.mysql.jdbc.Extension;
import com.mysql.jdbc.Messages;
import com.mysql.jdbc.MySQLConnection;
import com.mysql.jdbc.MysqlDataTruncation;
import com.mysql.jdbc.NotUpdatable;
import com.mysql.jdbc.SQLError;
import com.mysql.jdbc.StatementImpl;
import com.mysql.jdbc.Util;
import com.mysql.jdbc.log.StandardLogger;
import testsuite.BaseTestCase;
/**
* Regression test cases for the ResultSet class.
*/
public class ResultSetRegressionTest extends BaseTestCase {
/**
* Creates a new ResultSetRegressionTest
*
* @param name
* the name of the test to run
*/
public ResultSetRegressionTest(String name) {
super(name);
}
/**
* Runs all test cases in this test suite
*
* @param args
*/
public static void main(String[] args) {
junit.textui.TestRunner.run(ResultSetRegressionTest.class);
}
/**
* Tests fix for BUG#???? -- Numeric types and server-side prepared
* statements incorrectly detect nulls.
*
* @throws Exception
* if the test fails
*/
public void testBug2359() throws Exception {
/*
* this.stmt.executeUpdate("DROP TABLE IF EXISTS testBug2359");
* this.stmt.executeUpdate("CREATE TABLE testBug2359 (field1 INT)
* TYPE=InnoDB"); this.stmt.executeUpdate("INSERT INTO testBug2359
* VALUES (null), (1)");
*
* this.pstmt = this.conn.prepareStatement("SELECT field1 FROM
* testBug2359 WHERE field1 IS NULL"); this.rs =
* this.pstmt.executeQuery();
*
* assertTrue(this.rs.next());
*
* assertTrue(this.rs.getByte(1) == 0); assertTrue(this.rs.wasNull());
*
* assertTrue(this.rs.getShort(1) == 0); assertTrue(this.rs.wasNull());
*
* assertTrue(this.rs.getInt(1) == 0); assertTrue(this.rs.wasNull());
*
* assertTrue(this.rs.getLong(1) == 0); assertTrue(this.rs.wasNull());
*
* assertTrue(this.rs.getFloat(1) == 0); assertTrue(this.rs.wasNull());
*
* assertTrue(this.rs.getDouble(1) == 0); assertTrue(this.rs.wasNull());
*
* assertTrue(this.rs.getBigDecimal(1) == null);
* assertTrue(this.rs.wasNull());
*
* this.rs.close();
*
* this.pstmt = this.conn.prepareStatement("SELECT max(field1) FROM
* testBug2359 WHERE field1 IS NOT NULL"); this.rs =
* this.pstmt.executeQuery(); assertTrue(this.rs.next());
*
* assertTrue(this.rs.getByte(1) == 1); assertTrue(!this.rs.wasNull());
*
* assertTrue(this.rs.getShort(1) == 1); assertTrue(!this.rs.wasNull());
*
* assertTrue(this.rs.getInt(1) == 1); assertTrue(!this.rs.wasNull());
*
* assertTrue(this.rs.getLong(1) == 1); assertTrue(!this.rs.wasNull());
*
* assertTrue(this.rs.getFloat(1) == 1); assertTrue(!this.rs.wasNull());
*
* assertTrue(this.rs.getDouble(1) == 1);
* assertTrue(!this.rs.wasNull());
*
* assertTrue(this.rs.getBigDecimal(1) != null);
* assertTrue(!this.rs.wasNull());
*/
createTable("testBug2359_1", "(id INT)", "InnoDB");
this.stmt.executeUpdate("INSERT INTO testBug2359_1 VALUES (1)");
this.pstmt = this.conn.prepareStatement("SELECT max(id) FROM testBug2359_1");
this.rs = this.pstmt.executeQuery();
if (this.rs.next()) {
assertTrue(this.rs.getInt(1) != 0);
this.rs.close();
}
this.rs.close();
}
/**
* Tests fix for BUG#2643, ClassCastException when using this.rs.absolute()
* and server-side prepared statements.
*
* @throws Exception
*/
public void testBug2623() throws Exception {
PreparedStatement pStmt = null;
try {
pStmt = this.conn.prepareStatement("SELECT NOW()", ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);
this.rs = pStmt.executeQuery();
this.rs.absolute(1);
} finally {
if (this.rs != null) {
this.rs.close();
}
this.rs = null;
if (pStmt != null) {
pStmt.close();
}
}
}
/**
* Tests fix for BUG#2654, "Column 'column.table' not found" when "order by"
* in query"
*
* @throws Exception
* if the test fails
*/
public void testBug2654() throws Exception {
if (!this.DISABLED_testBug2654) { // this is currently a server-level bug
createTable("foo", "(id tinyint(3) default NULL, data varchar(255) default NULL) DEFAULT CHARSET=latin1", "MyISAM ");
this.stmt.executeUpdate("INSERT INTO foo VALUES (1,'male'),(2,'female')");
createTable("bar", "(id tinyint(3) unsigned default NULL, data char(3) default '0') DEFAULT CHARSET=latin1", "MyISAM ");
this.stmt.executeUpdate("INSERT INTO bar VALUES (1,'yes'),(2,'no')");
String statement = "select foo.id, foo.data, bar.data from foo, bar where foo.id = bar.id order by foo.id";
String column = "foo.data";
this.rs = this.stmt.executeQuery(statement);
ResultSetMetaData rsmd = this.rs.getMetaData();
System.out.println(rsmd.getTableName(1));
System.out.println(rsmd.getColumnName(1));
this.rs.next();
String fooData = this.rs.getString(column);
assertNotNull(fooData);
}
}
/**
* Tests for fix to BUG#1130
*
* @throws Exception
* if the test fails
*/
public void testClobTruncate() throws Exception {
createTable("testClobTruncate", "(field1 TEXT)");
this.stmt.executeUpdate("INSERT INTO testClobTruncate VALUES ('abcdefg')");
this.rs = this.stmt.executeQuery("SELECT * FROM testClobTruncate");
this.rs.next();
Clob clob = this.rs.getClob(1);
clob.truncate(3);
Reader reader = clob.getCharacterStream();
char[] buf = new char[8];
int charsRead = reader.read(buf);
String clobAsString = new String(buf, 0, charsRead);
assertTrue(clobAsString.equals("abc"));
}
/**
* Tests that streaming result sets are registered correctly.
*
* @throws Exception
* if any errors occur
*/
public void testClobberStreamingRS() throws Exception {
try {
Properties props = new Properties();
props.setProperty("clobberStreamingResults", "true");
Connection clobberConn = getConnectionWithProps(props);
Statement clobberStmt = clobberConn.createStatement();
clobberStmt.executeUpdate("DROP TABLE IF EXISTS StreamingClobber");
clobberStmt.executeUpdate("CREATE TABLE StreamingClobber ( DUMMYID INTEGER NOT NULL, DUMMYNAME VARCHAR(32),PRIMARY KEY (DUMMYID) )");
clobberStmt.executeUpdate("INSERT INTO StreamingClobber (DUMMYID, DUMMYNAME) VALUES (0, NULL)");
clobberStmt.executeUpdate("INSERT INTO StreamingClobber (DUMMYID, DUMMYNAME) VALUES (1, 'nro 1')");
clobberStmt.executeUpdate("INSERT INTO StreamingClobber (DUMMYID, DUMMYNAME) VALUES (2, 'nro 2')");
clobberStmt.executeUpdate("INSERT INTO StreamingClobber (DUMMYID, DUMMYNAME) VALUES (3, 'nro 3')");
Statement streamStmt = null;
try {
streamStmt = clobberConn.createStatement(java.sql.ResultSet.TYPE_FORWARD_ONLY, java.sql.ResultSet.CONCUR_READ_ONLY);
streamStmt.setFetchSize(Integer.MIN_VALUE);
this.rs = streamStmt.executeQuery("SELECT DUMMYID, DUMMYNAME FROM StreamingClobber ORDER BY DUMMYID");
this.rs.next();
// This should proceed normally, after the driver clears the input stream
ResultSet rs2 = clobberStmt.executeQuery("SHOW VARIABLES");
rs2.next();
this.rs.close();
} finally {
if (streamStmt != null) {
streamStmt.close();
}
}
} finally {
this.stmt.executeUpdate("DROP TABLE IF EXISTS StreamingClobber");
}
}
public void testEmptyResultSetGet() throws Exception {
try {
this.rs = this.stmt.executeQuery("SHOW VARIABLES LIKE 'foo'");
System.out.println(this.rs.getInt(1));
} catch (SQLException sqlEx) {
assertTrue("Correct exception not thrown", SQLError.SQL_STATE_GENERAL_ERROR.equals(sqlEx.getSQLState()));
}
}
/**
* Checks fix for BUG#1592 -- cross-database updatable result sets are not
* checked for updatability correctly.
*
* @throws Exception
* if the test fails.
*/
public void testFixForBug1592() throws Exception {
if (versionMeetsMinimum(4, 1)) {
Statement updatableStmt = this.conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
try {
updatableStmt.execute("SELECT * FROM mysql.user");
this.rs = updatableStmt.getResultSet();
} catch (SQLException sqlEx) {
String message = sqlEx.getMessage();
if ((message != null) && (message.indexOf("denied") != -1)) {
System.err.println("WARN: Can't complete testFixForBug1592(), access to 'mysql' database not allowed");
} else {
throw sqlEx;
}
}
}
}
/**
* Tests fix for BUG#2006, where 2 columns with same name in a result set
* are returned via findColumn() in the wrong order...The JDBC spec states,
* that the _first_ matching column should be returned.
*
* @throws Exception
* if the test fails
*/
public void testFixForBug2006() throws Exception {
createTable("testFixForBug2006_1", "(key_field INT NOT NULL)");
createTable("testFixForBug2006_2", "(key_field INT NULL)");
this.stmt.executeUpdate("INSERT INTO testFixForBug2006_1 VALUES (1)");
this.rs = this.stmt.executeQuery(
"SELECT testFixForBug2006_1.key_field, testFixForBug2006_2.key_field FROM testFixForBug2006_1 LEFT JOIN testFixForBug2006_2 USING(key_field)");
ResultSetMetaData rsmd = this.rs.getMetaData();
assertTrue(rsmd.getColumnName(1).equals(rsmd.getColumnName(2)));
assertTrue(rsmd.isNullable(this.rs.findColumn("key_field")) == ResultSetMetaData.columnNoNulls);
assertTrue(rsmd.isNullable(2) == ResultSetMetaData.columnNullable);
assertTrue(this.rs.next());
assertTrue(this.rs.getObject(1) != null);
assertTrue(this.rs.getObject(2) == null);
}
/**
* Tests that ResultSet.getLong() does not truncate values.
*
* @throws Exception
* if any errors occur
*/
public void testGetLongBug() throws Exception {
createTable("getLongBug", "(int_col int, bigint_col bigint)");
int intVal = 123456;
long longVal1 = 123456789012345678L;
long longVal2 = -2079305757640172711L;
this.stmt.executeUpdate("INSERT INTO getLongBug (int_col, bigint_col) VALUES (" + intVal + ", " + longVal1 + "), (" + intVal + ", " + longVal2 + ")");
this.rs = this.stmt.executeQuery("SELECT int_col, bigint_col FROM getLongBug ORDER BY bigint_col DESC");
this.rs.next();
assertTrue("Values not decoded correctly", ((this.rs.getInt(1) == intVal) && (this.rs.getLong(2) == longVal1)));
this.rs.next();
assertTrue("Values not decoded correctly", ((this.rs.getInt(1) == intVal) && (this.rs.getLong(2) == longVal2)));
}
public void testGetTimestampWithDate() throws Exception {
createTable("testGetTimestamp", "(d date)");
this.stmt.executeUpdate("INSERT INTO testGetTimestamp values (now())");
this.rs = this.stmt.executeQuery("SELECT * FROM testGetTimestamp");
this.rs.next();
System.out.println(this.rs.getTimestamp(1));
}
/**
* Tests a bug where ResultSet.isBefireFirst() would return true when the
* result set was empty (which is incorrect)
*
* @throws Exception
* if an error occurs.
*/
public void testIsBeforeFirstOnEmpty() throws Exception {
// Query with valid rows: isBeforeFirst() correctly returns True
this.rs = this.stmt.executeQuery("SHOW VARIABLES LIKE 'version'");
assertTrue("Non-empty search should return true", this.rs.isBeforeFirst());
// Query with empty result: isBeforeFirst() falsely returns True. Sun's documentation says it should return false
this.rs = this.stmt.executeQuery("SHOW VARIABLES LIKE 'garbage'");
assertTrue("Empty search should return false ", !this.rs.isBeforeFirst());
}
/**
* Tests a bug where ResultSet.isBefireFirst() would return true when the
* result set was empty (which is incorrect)
*
* @throws Exception
* if an error occurs.
*/
public void testMetaDataIsWritable() throws Exception {
// Query with valid rows
this.rs = this.stmt.executeQuery("SHOW VARIABLES LIKE 'version'");
ResultSetMetaData rsmd = this.rs.getMetaData();
int numColumns = rsmd.getColumnCount();
for (int i = 1; i <= numColumns; i++) {
assertTrue("rsmd.isWritable() should != rsmd.isReadOnly()", rsmd.isWritable(i) != rsmd.isReadOnly(i));
}
}
/**
* Tests fix for bug # 496
*
* @throws Exception
* if an error happens.
*/
public void testNextAndPrevious() throws Exception {
createTable("testNextAndPrevious", "(field1 int)");
this.stmt.executeUpdate("INSERT INTO testNextAndPrevious VALUES (1)");
this.rs = this.stmt.executeQuery("SELECT * from testNextAndPrevious");
System.out.println("Currently at row " + this.rs.getRow());
this.rs.next();
System.out.println("Value at row " + this.rs.getRow() + " is " + this.rs.getString(1));
this.rs.previous();
try {
System.out.println("Value at row " + this.rs.getRow() + " is " + this.rs.getString(1));
fail("Should not be able to retrieve values with invalid cursor");
} catch (SQLException sqlEx) {
assertTrue(sqlEx.getMessage().startsWith("Before start"));
}
this.rs.next();
this.rs.next();
try {
System.out.println("Value at row " + this.rs.getRow() + " is " + this.rs.getString(1));
fail("Should not be able to retrieve values with invalid cursor");
} catch (SQLException sqlEx) {
assertTrue(sqlEx.getMessage().startsWith("After end"));
}
}
/**
* Tests fix for BUG#1630 (not updatable exception turning into NPE on
* second updateFoo() method call.
*
* @throws Exception
* if an unexpected exception is thrown.
*/
public void testNotUpdatable() throws Exception {
this.rs = null;
String sQuery = "SHOW VARIABLES";
this.pstmt = this.conn.prepareStatement(sQuery, ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
this.rs = this.pstmt.executeQuery();
if (this.rs.next()) {
this.rs.absolute(1);
try {
this.rs.updateInt(1, 1);
} catch (SQLException sqlEx) {
assertTrue(sqlEx instanceof NotUpdatable);
}
try {
this.rs.updateString(1, "1");
} catch (SQLException sqlEx) {
assertTrue(sqlEx instanceof NotUpdatable);
}
}
}
/**
* Tests that streaming result sets are registered correctly.
*
* @throws Exception
* if any errors occur
*/
public void testStreamingRegBug() throws Exception {
createTable("StreamingRegBug", "( DUMMYID INTEGER NOT NULL, DUMMYNAME VARCHAR(32),PRIMARY KEY (DUMMYID) )");
this.stmt.executeUpdate("INSERT INTO StreamingRegBug (DUMMYID, DUMMYNAME) VALUES (0, NULL)");
this.stmt.executeUpdate("INSERT INTO StreamingRegBug (DUMMYID, DUMMYNAME) VALUES (1, 'nro 1')");
this.stmt.executeUpdate("INSERT INTO StreamingRegBug (DUMMYID, DUMMYNAME) VALUES (2, 'nro 2')");
this.stmt.executeUpdate("INSERT INTO StreamingRegBug (DUMMYID, DUMMYNAME) VALUES (3, 'nro 3')");
PreparedStatement streamStmt = null;
try {
streamStmt = this.conn.prepareStatement("SELECT DUMMYID, DUMMYNAME FROM StreamingRegBug ORDER BY DUMMYID", java.sql.ResultSet.TYPE_FORWARD_ONLY,
java.sql.ResultSet.CONCUR_READ_ONLY);
streamStmt.setFetchSize(Integer.MIN_VALUE);
this.rs = streamStmt.executeQuery();
while (this.rs.next()) {
this.rs.getString(1);
}
this.rs.close(); // error occurs here
} catch (SQLException sqlEx) {
} finally {
if (streamStmt != null) {
try {
streamStmt.close();
} catch (SQLException exWhileClose) {
exWhileClose.printStackTrace();
}
}
}
}
/**
* Tests that result sets can be updated when all parameters are correctly
* set.
*
* @throws Exception
* if any errors occur
*/
public void testUpdatability() throws Exception {
this.rs = null;
createTable("updatabilityBug",
"(id int(10) unsigned NOT NULL auto_increment, field1 varchar(32) NOT NULL default '',"
+ " field2 varchar(128) NOT NULL default '', field3 varchar(128) default NULL, field4 varchar(128) default NULL,"
+ " field5 varchar(64) default NULL, field6 int(10) unsigned default NULL, field7 varchar(64) default NULL, PRIMARY KEY (id)) ",
"InnoDB");
this.stmt.executeUpdate("insert into updatabilityBug (id) values (1)");
String sQuery = " SELECT * FROM updatabilityBug WHERE id = ? ";
this.pstmt = this.conn.prepareStatement(sQuery, ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
this.conn.setAutoCommit(false);
this.pstmt.setInt(1, 1);
this.rs = this.pstmt.executeQuery();
if (this.rs.next()) {
this.rs.absolute(1);
this.rs.updateInt("id", 1);
this.rs.updateString("field1", "1");
this.rs.updateString("field2", "1");
this.rs.updateString("field3", "1");
this.rs.updateString("field4", "1");
this.rs.updateString("field5", "1");
this.rs.updateInt("field6", 1);
this.rs.updateString("field7", "1");
this.rs.updateRow();
}
this.conn.commit();
this.conn.setAutoCommit(true);
}
/**
* Test fixes for BUG#1071
*
* @throws Exception
* if the test fails.
*/
public void testUpdatabilityAndEscaping() throws Exception {
Properties props = new Properties();
props.setProperty("useUnicode", "true");
props.setProperty("characterEncoding", "big5");
Connection updConn = getConnectionWithProps(props);
Statement updStmt = updConn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
try {
updStmt.executeUpdate("DROP TABLE IF EXISTS testUpdatesWithEscaping");
updStmt.executeUpdate("CREATE TABLE testUpdatesWithEscaping (field1 INT PRIMARY KEY, field2 VARCHAR(64))");
updStmt.executeUpdate("INSERT INTO testUpdatesWithEscaping VALUES (1, null)");
String stringToUpdate = "\" \\ '";
this.rs = updStmt.executeQuery("SELECT * from testUpdatesWithEscaping");
this.rs.next();
this.rs.updateString(2, stringToUpdate);
this.rs.updateRow();
assertTrue(stringToUpdate.equals(this.rs.getString(2)));
} finally {
updStmt.executeUpdate("DROP TABLE IF EXISTS testUpdatesWithEscaping");
updStmt.close();
updConn.close();
}
}
/**
* Tests the fix for BUG#661 ... refreshRow() fails when primary key values
* have escaped data in them.
*
* @throws Exception
* if an error occurs
*/
public void testUpdatabilityWithQuotes() throws Exception {
Statement updStmt = null;
try {
createTable("testUpdWithQuotes", "(keyField CHAR(32) PRIMARY KEY NOT NULL, field2 int)");
PreparedStatement pStmt = this.conn.prepareStatement("INSERT INTO testUpdWithQuotes VALUES (?, ?)");
pStmt.setString(1, "Abe's");
pStmt.setInt(2, 1);
pStmt.executeUpdate();
updStmt = this.conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
this.rs = updStmt.executeQuery("SELECT * FROM testUpdWithQuotes");
this.rs.next();
this.rs.updateInt(2, 2);
this.rs.updateRow();
} finally {
if (updStmt != null) {
updStmt.close();
}
updStmt = null;
}
}
/**
* Checks whether or not ResultSet.updateClob() is implemented
*
* @throws Exception
* if the test fails
*/
public void testUpdateClob() throws Exception {
Statement updatableStmt = this.conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
createTable("testUpdateClob", "(intField INT NOT NULL PRIMARY KEY, clobField TEXT)");
this.stmt.executeUpdate("INSERT INTO testUpdateClob VALUES (1, 'foo')");
this.rs = updatableStmt.executeQuery("SELECT intField, clobField FROM testUpdateClob");
this.rs.next();
Clob clob = this.rs.getClob(2);
clob.setString(1, "bar");
this.rs.updateClob(2, clob);
this.rs.updateRow();
this.rs.moveToInsertRow();
clob.setString(1, "baz");
this.rs.updateInt(1, 2);
this.rs.updateClob(2, clob);
this.rs.insertRow();
clob.setString(1, "bat");
this.rs.updateInt(1, 3);
this.rs.updateClob(2, clob);
this.rs.insertRow();
this.rs.close();
this.rs = this.stmt.executeQuery("SELECT intField, clobField FROM testUpdateClob ORDER BY intField");
this.rs.next();
assertTrue((this.rs.getInt(1) == 1) && this.rs.getString(2).equals("bar"));
this.rs.next();
assertTrue((this.rs.getInt(1) == 2) && this.rs.getString(2).equals("baz"));
this.rs.next();
assertTrue((this.rs.getInt(1) == 3) && this.rs.getString(2).equals("bat"));
}
/**
* Tests fix for BUG#4482, ResultSet.getObject() returns wrong type for
* strings when using prepared statements.
*
* @throws Exception
* if the test fails.
*/
public void testBug4482() throws Exception {
this.rs = this.conn.prepareStatement("SELECT 'abcdef'").executeQuery();
assertTrue(this.rs.next());
assertTrue(this.rs.getObject(1) instanceof String);
}
/**
* Test fix for BUG#4689 - WasNull not getting set correctly for binary
* result sets.
*/
public void testBug4689() throws Exception {
createTable("testBug4689", "(tinyintField tinyint, tinyintFieldNull tinyint, intField int, intFieldNull int, "
+ "bigintField bigint, bigintFieldNull bigint, shortField smallint, shortFieldNull smallint, doubleField double, doubleFieldNull double)");
this.stmt.executeUpdate("INSERT INTO testBug4689 VALUES (1, null, 1, null, 1, null, 1, null, 1, null)");
PreparedStatement pStmt = this.conn.prepareStatement("SELECT tinyintField, tinyintFieldNull, intField, intFieldNull, "
+ "bigintField, bigintFieldNull, shortField, shortFieldNull, doubleField, doubleFieldNull FROM testBug4689");
this.rs = pStmt.executeQuery();
assertTrue(this.rs.next());
assertTrue(this.rs.getByte(1) == 1);
assertTrue(this.rs.wasNull() == false);
assertTrue(this.rs.getByte(2) == 0);
assertTrue(this.rs.wasNull() == true);
assertTrue(this.rs.getInt(3) == 1);
assertTrue(this.rs.wasNull() == false);
assertTrue(this.rs.getInt(4) == 0);
assertTrue(this.rs.wasNull() == true);
assertTrue(this.rs.getInt(5) == 1);
assertTrue(this.rs.wasNull() == false);
assertTrue(this.rs.getInt(6) == 0);
assertTrue(this.rs.wasNull() == true);
assertTrue(this.rs.getShort(7) == 1);
assertTrue(this.rs.wasNull() == false);
assertTrue(this.rs.getShort(8) == 0);
assertTrue(this.rs.wasNull() == true);
assertTrue(this.rs.getDouble(9) == 1);
assertTrue(this.rs.wasNull() == false);
assertTrue(this.rs.getDouble(10) == 0);
assertTrue(this.rs.wasNull() == true);
}
/**
* Tests fix for BUG#5032 -- ResultSet.getObject() doesn't return type
* Boolean for pseudo-bit types from prepared statements on 4.1.x.
*
* @throws Exception
* if the test fails.
*/
public void testBug5032() throws Exception {
if (versionMeetsMinimum(4, 1)) {
createTable("testBug5032", "(field1 BIT)");
this.stmt.executeUpdate("INSERT INTO testBug5032 VALUES (1)");
this.pstmt = this.conn.prepareStatement("SELECT field1 FROM testBug5032");
this.rs = this.pstmt.executeQuery();
assertTrue(this.rs.next());
assertTrue(this.rs.getObject(1) instanceof Boolean);
}
}
/**
* Tests fix for BUG#5069 -- ResultSet.getMetaData() should not return
* incorrectly-initialized metadata if the result set has been closed, but
* should instead throw a SQLException. Also tests fix for getRow() and
* getWarnings() and traversal methods.
*
* @throws Exception
* if the test fails.
*/
public void testBug5069() throws Exception {
this.rs = this.stmt.executeQuery("SELECT 1");
this.rs.close();
try {
@SuppressWarnings("unused")
ResultSetMetaData md = this.rs.getMetaData();
} catch (NullPointerException npEx) {
fail("Should not catch NullPointerException here");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_GENERAL_ERROR.equals(sqlEx.getSQLState()));
}
try {
this.rs.getRow();
} catch (NullPointerException npEx) {
fail("Should not catch NullPointerException here");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_GENERAL_ERROR.equals(sqlEx.getSQLState()));
}
try {
this.rs.getWarnings();
} catch (NullPointerException npEx) {
fail("Should not catch NullPointerException here");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_GENERAL_ERROR.equals(sqlEx.getSQLState()));
}
try {
this.rs.first();
} catch (NullPointerException npEx) {
fail("Should not catch NullPointerException here");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_GENERAL_ERROR.equals(sqlEx.getSQLState()));
}
try {
this.rs.beforeFirst();
} catch (NullPointerException npEx) {
fail("Should not catch NullPointerException here");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_GENERAL_ERROR.equals(sqlEx.getSQLState()));
}
try {
this.rs.last();
} catch (NullPointerException npEx) {
fail("Should not catch NullPointerException here");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_GENERAL_ERROR.equals(sqlEx.getSQLState()));
}
try {
this.rs.afterLast();
} catch (NullPointerException npEx) {
fail("Should not catch NullPointerException here");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_GENERAL_ERROR.equals(sqlEx.getSQLState()));
}
try {
this.rs.relative(0);
} catch (NullPointerException npEx) {
fail("Should not catch NullPointerException here");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_GENERAL_ERROR.equals(sqlEx.getSQLState()));
}
try {
this.rs.next();
} catch (NullPointerException npEx) {
fail("Should not catch NullPointerException here");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_GENERAL_ERROR.equals(sqlEx.getSQLState()));
}
try {
this.rs.previous();
} catch (NullPointerException npEx) {
fail("Should not catch NullPointerException here");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_GENERAL_ERROR.equals(sqlEx.getSQLState()));
}
try {
this.rs.isBeforeFirst();
} catch (NullPointerException npEx) {
fail("Should not catch NullPointerException here");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_GENERAL_ERROR.equals(sqlEx.getSQLState()));
}
try {
this.rs.isFirst();
} catch (NullPointerException npEx) {
fail("Should not catch NullPointerException here");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_GENERAL_ERROR.equals(sqlEx.getSQLState()));
}
try {
this.rs.isAfterLast();
} catch (NullPointerException npEx) {
fail("Should not catch NullPointerException here");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_GENERAL_ERROR.equals(sqlEx.getSQLState()));
}
try {
this.rs.isLast();
} catch (NullPointerException npEx) {
fail("Should not catch NullPointerException here");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_GENERAL_ERROR.equals(sqlEx.getSQLState()));
}
}
/**
* Tests for BUG#5136, GEOMETRY types getting corrupted, turns out to be a
* server bug.
*
* @throws Exception
* if the test fails.
*/
public void testBug5136() throws Exception {
if (!this.DISABLED_testBug5136) {
PreparedStatement toGeom = this.conn.prepareStatement("select GeomFromText(?)");
PreparedStatement toText = this.conn.prepareStatement("select AsText(?)");
String inText = "POINT(146.67596278 -36.54368233)";
// First assert that the problem is not at the server end
this.rs = this.stmt.executeQuery("select AsText(GeomFromText('" + inText + "'))");
this.rs.next();
String outText = this.rs.getString(1);
this.rs.close();
assertTrue("Server side only\n In: " + inText + "\nOut: " + outText, inText.equals(outText));
// Now bring a binary geometry object to the client and send it back
toGeom.setString(1, inText);
this.rs = toGeom.executeQuery();
this.rs.next();
// Return a binary geometry object from the WKT
Object geom = this.rs.getObject(1);
this.rs.close();
toText.setObject(1, geom);
this.rs = toText.executeQuery();
this.rs.next();
// Return WKT from the binary geometry
outText = this.rs.getString(1);
this.rs.close();
assertTrue("Server to client and back\n In: " + inText + "\nOut: " + outText, inText.equals(outText));
}
}
/**
* Tests fix for BUG#5664, ResultSet.updateByte() when on insert row throws
* ArrayOutOfBoundsException.
*
* @throws Exception
* if the test fails.
*/
public void testBug5664() throws Exception {
createTable("testBug5664", "(pkfield int PRIMARY KEY NOT NULL, field1 SMALLINT)");
this.stmt.executeUpdate("INSERT INTO testBug5664 VALUES (1, 1)");
Statement updatableStmt = this.conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
this.rs = updatableStmt.executeQuery("SELECT pkfield, field1 FROM testBug5664");
this.rs.next();
this.rs.moveToInsertRow();
this.rs.updateInt(1, 2);
this.rs.updateByte(2, (byte) 2);
}
public void testBogusTimestampAsString() throws Exception {
this.rs = this.stmt.executeQuery("SELECT '2004-08-13 13:21:17.'");
this.rs.next();
// We're only checking for an exception being thrown here as the bug
this.rs.getTimestamp(1);
}
/**
* Tests our ability to reject NaN and +/- INF in
* PreparedStatement.setDouble();
*/
public void testBug5717() throws Exception {
createTable("testBug5717", "(field1 DOUBLE)");
this.pstmt = this.conn.prepareStatement("INSERT INTO testBug5717 VALUES (?)");
try {
this.pstmt.setDouble(1, Double.NEGATIVE_INFINITY);
fail("Exception should've been thrown");
} catch (Exception ex) {
// expected
}
try {
this.pstmt.setDouble(1, Double.POSITIVE_INFINITY);
fail("Exception should've been thrown");
} catch (Exception ex) {
// expected
}
try {
this.pstmt.setDouble(1, Double.NaN);
fail("Exception should've been thrown");
} catch (Exception ex) {
// expected
}
}
/**
* Tests fix for server issue that drops precision on aggregate operations
* on DECIMAL types, because they come back as DOUBLEs.
*
* @throws Exception
* if the test fails.
*/
@SuppressWarnings("deprecation")
public void testBug6537() throws Exception {
if (versionMeetsMinimum(4, 1, 0)) {
String tableName = "testBug6537";
createTable(tableName, "(`id` int(11) NOT NULL default '0', `value` decimal(10,2) NOT NULL default '0.00', `stringval` varchar(10),"
+ "PRIMARY KEY (`id`)) DEFAULT CHARSET=latin1", "MyISAM");
this.stmt.executeUpdate("INSERT INTO " + tableName + "(id, value, stringval) VALUES (1, 100.00, '100.00'), (2, 200, '200')");
String sql = "SELECT SUM(value) as total FROM " + tableName + " WHERE id = ? ";
PreparedStatement pStmt = this.conn.prepareStatement(sql);
pStmt.setInt(1, 1);
this.rs = pStmt.executeQuery();
assertTrue(this.rs.next());
assertTrue("100.00".equals(this.rs.getBigDecimal("total").toString()));
sql = "SELECT stringval as total FROM " + tableName + " WHERE id = ? ";
pStmt = this.conn.prepareStatement(sql);
pStmt.setInt(1, 2);
this.rs = pStmt.executeQuery();
assertTrue(this.rs.next());
assertTrue("200.00".equals(this.rs.getBigDecimal("total", 2).toString()));
}
}
/**
* Tests fix for BUG#6231, ResultSet.getTimestamp() on a column with TIME in
* it fails.
*
* @throws Exception
* if the test fails.
*/
public void testBug6231() throws Exception {
createTable("testBug6231", "(field1 TIME)");
this.stmt.executeUpdate("INSERT INTO testBug6231 VALUES ('09:16:00')");
this.rs = this.stmt.executeQuery("SELECT field1 FROM testBug6231");
this.rs.next();
long asMillis = this.rs.getTimestamp(1).getTime();
Calendar cal = Calendar.getInstance();
cal.setTimeInMillis(asMillis);
assertEquals(9, cal.get(Calendar.HOUR));
assertEquals(16, cal.get(Calendar.MINUTE));
assertEquals(0, cal.get(Calendar.SECOND));
}
public void testBug6619() throws Exception {
createTable("testBug6619", "(field1 int)");
this.stmt.executeUpdate("INSERT INTO testBug6619 VALUES (1), (2)");
PreparedStatement pStmt = this.conn.prepareStatement("SELECT SUM(field1) FROM testBug6619");
this.rs = pStmt.executeQuery();
this.rs.next();
System.out.println(this.rs.getString(1));
}
public void testBug6743() throws Exception {
// 0x835C U+30BD # KATAKANA LETTER SO
String katakanaStr = "\u30BD";
Properties props = new Properties();
props.setProperty("useUnicode", "true");
props.setProperty("characterEncoding", "SJIS");
Connection sjisConn = null;
Statement sjisStmt = null;
try {
sjisConn = getConnectionWithProps(props);
sjisStmt = sjisConn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
sjisStmt.executeUpdate("DROP TABLE IF EXISTS testBug6743");
StringBuilder queryBuf = new StringBuilder("CREATE TABLE testBug6743 (pkField INT NOT NULL PRIMARY KEY, field1 VARCHAR(32)");
if (versionMeetsMinimum(4, 1)) {
queryBuf.append(" CHARACTER SET SJIS");
}
queryBuf.append(")");
sjisStmt.executeUpdate(queryBuf.toString());
sjisStmt.executeUpdate("INSERT INTO testBug6743 VALUES (1, 'abc')");
this.rs = sjisStmt.executeQuery("SELECT pkField, field1 FROM testBug6743");
this.rs.next();
this.rs.updateString(2, katakanaStr);
this.rs.updateRow();
String retrString = this.rs.getString(2);
assertTrue(katakanaStr.equals(retrString));
this.rs = sjisStmt.executeQuery("SELECT pkField, field1 FROM testBug6743");
this.rs.next();
retrString = this.rs.getString(2);
assertTrue(katakanaStr.equals(retrString));
} finally {
this.stmt.executeUpdate("DROP TABLE IF EXISTS testBug6743");
if (sjisStmt != null) {
sjisStmt.close();
}
if (sjisConn != null) {
sjisConn.close();
}
}
}
/**
* Tests for presence of BUG#6561, NPE thrown when dealing with 0 dates and
* non-unpacked result sets.
*
* @throws Exception
* if the test occurs.
*/
public void testBug6561() throws Exception {
Connection testConn = this.conn;
Connection zeroConn = getConnectionWithProps("zeroDateTimeBehavior=convertToNull");
try {
if (versionMeetsMinimum(5, 7, 4)) {
Properties props = new Properties();
props.put("jdbcCompliantTruncation", "false");
if (versionMeetsMinimum(5, 7, 5)) {
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.stmt = testConn.createStatement();
}
createTable("testBug6561", "(ofield int, field1 DATE, field2 integer, field3 integer)");
this.stmt.executeUpdate("INSERT INTO testBug6561 (ofield, field1,field2,field3) VALUES (1, 0,NULL,0)");
this.stmt.executeUpdate("INSERT INTO testBug6561 (ofield, field1,field2,field3) VALUES (2, '2004-11-20',NULL,0)");
PreparedStatement ps = zeroConn.prepareStatement("SELECT field1,field2,field3 FROM testBug6561 ORDER BY ofield");
this.rs = ps.executeQuery();
assertTrue(this.rs.next());
assertNull(this.rs.getObject("field1"));
assertNull(this.rs.getObject("field2"));
assertEquals(0, this.rs.getInt("field3"));
assertTrue(this.rs.next());
assertEquals("2004-11-20", this.rs.getString("field1"));
assertNull(this.rs.getObject("field2"));
assertEquals(0, this.rs.getInt("field3"));
ps.close();
} finally {
zeroConn.close();
if (testConn != this.conn) {
testConn.close();
}
}
}
public void testBug7686() throws SQLException {
String tableName = "testBug7686";
createTable(tableName, "(id1 int(10) unsigned NOT NULL, id2 DATETIME, field1 varchar(128) NOT NULL default '', PRIMARY KEY (id1, id2))", "InnoDB;");
this.stmt.executeUpdate("insert into " + tableName + " (id1, id2, field1) values (1, '2005-01-05 13:59:20', 'foo')");
String sQuery = " SELECT * FROM " + tableName + " WHERE id1 = ? AND id2 = ?";
this.pstmt = this.conn.prepareStatement(sQuery, ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
this.conn.setAutoCommit(false);
this.pstmt.setInt(1, 1);
GregorianCalendar cal = new GregorianCalendar();
cal.clear();
cal.set(2005, 00, 05, 13, 59, 20);
Timestamp jan5before2pm = null;
jan5before2pm = new java.sql.Timestamp(cal.getTimeInMillis());
this.pstmt.setTimestamp(2, jan5before2pm);
this.rs = this.pstmt.executeQuery();
assertTrue(this.rs.next());
this.rs.absolute(1);
this.rs.updateString("field1", "bar");
this.rs.updateRow();
this.conn.commit();
this.conn.setAutoCommit(true);
}
/**
* Tests fix for BUG#7715 - Timestamps converted incorrectly to strings with
* SSPS and Upd. Result Sets.
*
* @throws Exception
* if the test fails.
*/
public void testBug7715() throws Exception {
PreparedStatement pStmt = null;
createTable("testConvertedBinaryTimestamp", "(field1 VARCHAR(32), field2 VARCHAR(32), field3 VARCHAR(32), field4 TIMESTAMP)");
this.stmt.executeUpdate("INSERT INTO testConvertedBinaryTimestamp VALUES ('abc', 'def', 'ghi', NOW())");
pStmt = this.conn.prepareStatement("SELECT field1, field2, field3, field4 FROM testConvertedBinaryTimestamp", ResultSet.TYPE_SCROLL_SENSITIVE,
ResultSet.CONCUR_UPDATABLE);
this.rs = pStmt.executeQuery();
assertTrue(this.rs.next());
this.rs.getObject(4); // fails if bug exists
}
/**
* Tests fix for BUG#8428 - getString() doesn't maintain format stored on
* server.
*
* @throws Exception
* if the test fails.
*/
public void testBug8428() throws Exception {
Connection noSyncConn = null;
createTable("testBug8428", "(field1 YEAR, field2 DATETIME)");
this.stmt.executeUpdate("INSERT INTO testBug8428 VALUES ('1999', '2005-02-11 12:54:41')");
Properties props = new Properties();
props.setProperty("noDatetimeStringSync", "true");
props.setProperty("useUsageAdvisor", "true");
props.setProperty("yearIsDateType", "false"); // for 3.1.9+
noSyncConn = getConnectionWithProps(props);
this.rs = noSyncConn.createStatement().executeQuery("SELECT field1, field2 FROM testBug8428");
this.rs.next();
assertEquals("1999", this.rs.getString(1));
assertEquals("2005-02-11 12:54:41", this.rs.getString(2));
this.rs = noSyncConn.prepareStatement("SELECT field1, field2 FROM testBug8428").executeQuery();
this.rs.next();
assertEquals("1999", this.rs.getString(1));
assertEquals("2005-02-11 12:54:41", this.rs.getString(2));
}
/**
* Tests fix for Bug#8868, DATE_FORMAT() queries returned as BLOBs from
* getObject().
*
* @throws Exception
* if the test fails.
*/
public void testBug8868() throws Exception {
if (versionMeetsMinimum(4, 1)) {
createTable("testBug8868", "(field1 DATE, field2 VARCHAR(32) CHARACTER SET BINARY)");
this.stmt.executeUpdate("INSERT INTO testBug8868 VALUES (NOW(), 'abcd')");
this.rs = this.stmt.executeQuery("SELECT DATE_FORMAT(field1,'%b-%e %l:%i%p') as fmtddate, field2 FROM testBug8868");
this.rs.next();
assertEquals("java.lang.String", this.rs.getObject(1).getClass().getName());
}
}
/**
* Tests fix for BUG#9098 - Server doesn't give us info to distinguish
* between CURRENT_TIMESTAMP and 'CURRENT_TIMESTAMP' for default values.
*
* @throws Exception
* if the test fails
*/
public void testBug9098() throws Exception {
if (versionMeetsMinimum(4, 1, 10)) {
Statement updatableStmt = null;
createTable("testBug9098", "(pkfield INT PRIMARY KEY NOT NULL AUTO_INCREMENT, \n"
+ "tsfield TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, tsfield2 TIMESTAMP NOT NULL DEFAULT '2005-12-25 12:20:52', charfield VARCHAR(4) NOT NULL DEFAULT 'abcd')");
updatableStmt = this.conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
this.rs = updatableStmt.executeQuery("SELECT pkfield, tsfield, tsfield2, charfield FROM testBug9098");
this.rs.moveToInsertRow();
this.rs.insertRow();
}
}
/**
* Tests fix for BUG#9236, a continuation of BUG#8868, where functions used
* in queries that should return non-string types when resolved by temporary
* tables suddenly become opaque binary strings (work-around for server
* limitation)
*
* @throws Exception
* if the test fails.
*/
public void testBug9236() throws Exception {
if (versionMeetsMinimum(4, 1)) {
Connection testConn = this.conn;
try {
if (versionMeetsMinimum(5, 7, 4)) {
Properties props = new Properties();
props.put("jdbcCompliantTruncation", "false");
if (versionMeetsMinimum(5, 7, 5)) {
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.stmt = testConn.createStatement();
}
createTable("testBug9236",
"(field_1 int(18) NOT NULL auto_increment, field_2 varchar(50) NOT NULL default '',"
+ "field_3 varchar(12) default NULL, field_4 int(18) default NULL, field_5 int(18) default NULL,"
+ "field_6 datetime default NULL, field_7 varchar(30) default NULL, field_8 varchar(50) default NULL,"
+ "field_9 datetime default NULL, field_10 int(18) NOT NULL default '0', field_11 int(18) default NULL,"
+ "field_12 datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (field_1), KEY (field_4), KEY (field_2),"
+ "KEY (field_3), KEY (field_7,field_1), KEY (field_5), KEY (field_6,field_10,field_9), KEY (field_11,field_10),"
+ "KEY (field_12,field_10)) DEFAULT CHARSET=latin1",
"InnoDB");
this.stmt.executeUpdate("INSERT INTO testBug9236 VALUES "
+ "(1,'0',NULL,-1,0,'0000-00-00 00:00:00','123456789','-1','2004-03-13 14:21:38',0,NULL,'2004-03-13 14:21:38'),"
+ "(2,'0',NULL,1,0,'0000-00-00 00:00:00',NULL,'1',NULL,0,NULL,'2004-07-13 14:29:52'),"
+ "(3,'0',NULL,1,0,'0000-00-00 00:00:00',NULL,'2',NULL,0,NULL,'2004-07-16 13:20:51'),"
+ "(4,'0',NULL,1,0,'0000-00-00 00:00:00',NULL,'3','2004-07-16 13:43:39',0,NULL,'2004-07-16 13:22:01'),"
+ "(5,'0',NULL,1,0,'0000-00-00 00:00:00',NULL,'4','2004-07-16 13:23:48',0,NULL,'2004-07-16 13:23:01'),"
+ "(6,'0',NULL,1,0,'0000-00-00 00:00:00',NULL,'5',NULL,0,NULL,'2004-07-16 14:41:07'),"
+ "(7,'0',NULL,1,0,'0000-00-00 00:00:00',NULL,'6',NULL,0,NULL,'2004-07-16 14:41:34'),"
+ "(8,'0',NULL,1,0,'0000-00-00 00:00:00',NULL,'7',NULL,0,NULL,'2004-07-16 14:41:54'),"
+ "(9,'0',NULL,1,0,'0000-00-00 00:00:00',NULL,'8',NULL,0,NULL,'2004-07-16 14:42:42'),"
+ "(10,'0','PI',1,0,'0000-00-00 00:00:00',NULL,'9',NULL,0,NULL,'2004-07-18 10:51:30'),"
+ "(11,'0',NULL,1,0,'0000-00-00 00:00:00',NULL,'10','2004-07-23 17:23:06',0,NULL,'2004-07-23 17:18:19'),"
+ "(12,'0',NULL,1,0,'0000-00-00 00:00:00',NULL,'11','2004-07-23 17:24:45',0,NULL,'2004-07-23 17:23:57'),"
+ "(13,'0',NULL,1,0,'0000-00-00 00:00:00',NULL,'12','2004-07-23 17:30:51',0,NULL,'2004-07-23 17:30:15'),"
+ "(14,'0',NULL,1,0,'0000-00-00 00:00:00',NULL,'13','2004-07-26 17:50:19',0,NULL,'2004-07-26 17:49:38'),"
+ "(15,'0','FRL',1,0,'0000-00-00 00:00:00',NULL,'1',NULL,0,NULL,'2004-08-19 18:29:18'),"
+ "(16,'0','FRL',1,0,'0000-00-00 00:00:00',NULL,'15',NULL,0,NULL,'2005-03-16 12:08:28')");
createTable("testBug9236_1", "(field1 CHAR(2) CHARACTER SET BINARY)");
this.stmt.executeUpdate("INSERT INTO testBug9236_1 VALUES ('ab')");
this.rs = this.stmt.executeQuery("SELECT field1 FROM testBug9236_1");
ResultSetMetaData rsmd = this.rs.getMetaData();
assertEquals("[B", rsmd.getColumnClassName(1));
assertTrue(this.rs.next());
Object asObject = this.rs.getObject(1);
assertEquals("[B", asObject.getClass().getName());
this.rs = this.stmt.executeQuery(
"select DATE_FORMAT(field_12, '%Y-%m-%d') as date, count(*) as count from testBug9236 where field_10 = 0 and field_3 = 'FRL' and field_12 >= '2005-03-02 00:00:00' and field_12 <= '2005-03-17 00:00:00' group by date");
rsmd = this.rs.getMetaData();
assertEquals("java.lang.String", rsmd.getColumnClassName(1));
this.rs.next();
asObject = this.rs.getObject(1);
assertEquals("java.lang.String", asObject.getClass().getName());
this.rs.close();
createTable("testBug8868_2", "(field1 CHAR(4) CHARACTER SET BINARY)");
this.stmt.executeUpdate("INSERT INTO testBug8868_2 VALUES ('abc')");
this.rs = this.stmt.executeQuery("SELECT field1 FROM testBug8868_2");
rsmd = this.rs.getMetaData();
assertEquals("[B", rsmd.getColumnClassName(1));
this.rs.next();
asObject = this.rs.getObject(1);
assertEquals("[B", asObject.getClass().getName());
} finally {
if (testConn != this.conn) {
testConn.close();
}
}
}
}
/**
* Tests fix for BUG#9437, IF() returns type of [B or java.lang.String
* depending on platform. Fixed earlier, but in here to catch if it ever
* regresses.
*
* @throws Exception
* if the test fails.
*/
public void testBug9437() throws Exception {
String tableName = "testBug9437";
if (versionMeetsMinimum(4, 1, 0)) {
createTable(tableName,
"(languageCode char(2) NOT NULL default '', countryCode char(2) NOT NULL default '',"
+ "supported enum('no','yes') NOT NULL default 'no', ordering int(11) default NULL,"
+ "createDate datetime NOT NULL default '1000-01-01 00:00:03', modifyDate timestamp NOT NULL default CURRENT_TIMESTAMP on update"
+ " CURRENT_TIMESTAMP, PRIMARY KEY (languageCode,countryCode), KEY languageCode (languageCode),"
+ "KEY countryCode (countryCode), KEY ordering (ordering), KEY modifyDate (modifyDate)) DEFAULT CHARSET=utf8",
"InnoDB");
this.stmt.executeUpdate("INSERT INTO " + tableName + " (languageCode) VALUES ('en')");
String alias = "someLocale";
String sql = "select if ( languageCode = ?, ?, ? ) as " + alias + " from " + tableName;
this.pstmt = this.conn.prepareStatement(sql);
int count = 1;
this.pstmt.setObject(count++, "en");
this.pstmt.setObject(count++, "en_US");
this.pstmt.setObject(count++, "en_GB");
this.rs = this.pstmt.executeQuery();
assertTrue(this.rs.next());
Object object = this.rs.getObject(alias);
if (object != null) {
assertEquals("java.lang.String", object.getClass().getName());
assertEquals("en_US", object.toString());
}
}
}
public void testBug9684() throws Exception {
if (versionMeetsMinimum(4, 1, 9)) {
String tableName = "testBug9684";
createTable(tableName, "(sourceText text character set utf8 collate utf8_bin)");
this.stmt.executeUpdate("INSERT INTO " + tableName + " VALUES ('abc')");
this.rs = this.stmt.executeQuery("SELECT sourceText FROM " + tableName);
assertTrue(this.rs.next());
assertEquals("java.lang.String", this.rs.getString(1).getClass().getName());
assertEquals("abc", this.rs.getString(1));
}
}
/**
* Tests fix for BUG#10156 - Unsigned SMALLINT treated as signed
*
* @throws Exception
* if the test fails.
*/
public void testBug10156() throws Exception {
String tableName = "testBug10156";
createTable(tableName, "(field1 smallint(5) unsigned, field2 tinyint unsigned, field3 int unsigned)");
this.stmt.executeUpdate("INSERT INTO " + tableName + " VALUES (32768, 255, 4294967295)");
this.rs = this.conn.prepareStatement("SELECT field1, field2, field3 FROM " + tableName).executeQuery();
assertTrue(this.rs.next());
assertEquals(32768, this.rs.getInt(1));
assertEquals(255, this.rs.getInt(2));
assertEquals(4294967295L, this.rs.getLong(3));
assertEquals(String.valueOf(this.rs.getObject(1)), String.valueOf(this.rs.getInt(1)));
assertEquals(String.valueOf(this.rs.getObject(2)), String.valueOf(this.rs.getInt(2)));
assertEquals(String.valueOf(this.rs.getObject(3)), String.valueOf(this.rs.getLong(3)));
}
public void testBug10212() throws Exception {
String tableName = "testBug10212";
createTable(tableName, "(field1 YEAR(4))");
this.stmt.executeUpdate("INSERT INTO " + tableName + " VALUES (1974)");
this.rs = this.conn.prepareStatement("SELECT field1 FROM " + tableName).executeQuery();
ResultSetMetaData rsmd = this.rs.getMetaData();
assertTrue(this.rs.next());
assertEquals("java.sql.Date", rsmd.getColumnClassName(1));
assertEquals("java.sql.Date", this.rs.getObject(1).getClass().getName());
this.rs = this.stmt.executeQuery("SELECT field1 FROM " + tableName);
rsmd = this.rs.getMetaData();
assertTrue(this.rs.next());
assertEquals("java.sql.Date", rsmd.getColumnClassName(1));
assertEquals("java.sql.Date", this.rs.getObject(1).getClass().getName());
}
/**
* Tests fix for BUG#11190 - ResultSet.moveToCurrentRow() fails to work when
* preceeded with .moveToInsertRow().
*
* @throws Exception
* if the test fails.
*/
public void testBug11190() throws Exception {
createTable("testBug11190", "(a CHAR(4) PRIMARY KEY, b VARCHAR(20))");
this.stmt.executeUpdate("INSERT INTO testBug11190 VALUES('3000','L'),('3001','H'),('1050','B')");
Statement updStmt = null;
try {
updStmt = this.conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
this.rs = updStmt.executeQuery("select * from testBug11190");
assertTrue("must return a row", this.rs.next());
String savedValue = this.rs.getString(1);
this.rs.moveToInsertRow();
this.rs.updateString(1, "4000");
this.rs.updateString(2, "C");
this.rs.insertRow();
this.rs.moveToCurrentRow();
assertEquals(savedValue, this.rs.getString(1));
} finally {
if (updStmt != null) {
updStmt.close();
}
}
}
/**
* Tests fix for BUG#12104 - Geometry types not handled with server-side
* prepared statements.
*
* @throws Exception
* if the test fails
*/
public void testBug12104() throws Exception {
if (versionMeetsMinimum(4, 1)) {
createTable("testBug12104", "(field1 GEOMETRY)", "MyISAM");
this.stmt.executeUpdate("INSERT INTO testBug12104 VALUES (GeomFromText('POINT(1 1)'))");
this.pstmt = this.conn.prepareStatement("SELECT field1 FROM testBug12104");
this.rs = this.pstmt.executeQuery();
assertTrue(this.rs.next());
System.out.println(this.rs.getObject(1));
}
}
/**
* Tests fix for BUG#13043 - when 'gatherPerfMetrics' is enabled for servers
* < 4.1.0, a NPE is thrown from the constructor of ResultSet if the query
* doesn't use any tables.
*
* @throws Exception
* if the test fails
*/
public void testBug13043() throws Exception {
if (!versionMeetsMinimum(4, 1)) {
Connection perfConn = null;
try {
Properties props = new Properties();
props.put("gatherPerfMetrics", "true"); // this property is reported as the cause of NullPointerException
props.put("reportMetricsIntervalMillis", "30000"); // this property is reported as the cause of NullPointerException
perfConn = getConnectionWithProps(props);
this.rs = perfConn.createStatement().executeQuery("SELECT 1");
} finally {
if (perfConn != null) {
perfConn.close();
}
}
}
}
/**
* Tests fix for BUG#13374 - ResultSet.getStatement() on closed result set
* returns NULL (as per JDBC 4.0 spec, but not backwards-compatible).
*
* @throws Exception
* if the test fails
*/
public void testBug13374() throws Exception {
Statement retainStmt = null;
Connection retainConn = null;
try {
Properties props = new Properties();
props.setProperty("retainStatementAfterResultSetClose", "true");
retainConn = getConnectionWithProps(props);
retainStmt = retainConn.createStatement();
this.rs = retainStmt.executeQuery("SELECT 1");
this.rs.close();
assertNotNull(this.rs.getStatement());
this.rs = this.stmt.executeQuery("SELECT 1");
this.rs.close();
try {
this.rs.getStatement();
} catch (SQLException sqlEx) {
assertEquals(sqlEx.getSQLState(), SQLError.SQL_STATE_GENERAL_ERROR);
}
} finally {
if (retainStmt != null) {
retainStmt.close();
}
if (retainConn != null) {
retainConn.close();
}
}
}
/**
* Tests bugfix for BUG#14562 - metadata/type for MEDIUMINT UNSIGNED is
* incorrect.
*
* @throws Exception
* if the test fails.
*/
public void testBug14562() throws Exception {
createTable("testBug14562", "(row_order INT, signed_field MEDIUMINT, unsigned_field MEDIUMINT UNSIGNED)");
this.stmt.executeUpdate("INSERT INTO testBug14562 VALUES (1, -8388608, 0), (2, 8388607, 16777215)");
this.rs = this.stmt.executeQuery("SELECT signed_field, unsigned_field FROM testBug14562 ORDER BY row_order");
traverseResultSetBug14562();
this.rs = this.conn.prepareStatement("SELECT signed_field, unsigned_field FROM testBug14562 ORDER BY row_order").executeQuery();
traverseResultSetBug14562();
if (versionMeetsMinimum(5, 0)) {
CallableStatement storedProc = null;
try {
createProcedure("sp_testBug14562", "() BEGIN SELECT signed_field, unsigned_field FROM testBug14562 ORDER BY row_order; END");
storedProc = this.conn.prepareCall("{call sp_testBug14562()}");
storedProc.execute();
this.rs = storedProc.getResultSet();
traverseResultSetBug14562();
createProcedure("sp_testBug14562_1", "(OUT param_1 MEDIUMINT, OUT param_2 MEDIUMINT UNSIGNED)"
+ "BEGIN SELECT signed_field, unsigned_field INTO param_1, param_2 FROM testBug14562 WHERE row_order=1; END");
storedProc = this.conn.prepareCall("{call sp_testBug14562_1(?, ?)}");
storedProc.registerOutParameter(1, Types.INTEGER);
storedProc.registerOutParameter(2, Types.INTEGER);
storedProc.execute();
assertEquals("java.lang.Integer", storedProc.getObject(1).getClass().getName());
if (versionMeetsMinimum(5, 1) || versionMeetsMinimum(5, 0, 67)) {
assertEquals("java.lang.Long", storedProc.getObject(2).getClass().getName());
} else {
assertEquals("java.lang.Integer", storedProc.getObject(2).getClass().getName());
}
} finally {
if (storedProc != null) {
storedProc.close();
}
}
}
this.rs = this.conn.getMetaData().getColumns(this.conn.getCatalog(), null, "testBug14562", "%field");
assertTrue(this.rs.next());
assertEquals(Types.INTEGER, this.rs.getInt("DATA_TYPE"));
assertEquals("MEDIUMINT", this.rs.getString("TYPE_NAME").toUpperCase(Locale.US));
assertTrue(this.rs.next());
assertEquals(Types.INTEGER, this.rs.getInt("DATA_TYPE"));
assertEquals("MEDIUMINT UNSIGNED", this.rs.getString("TYPE_NAME").toUpperCase(Locale.US));
//
// The following test is harmless in the 3.1 driver, but is needed for the 5.0 driver, so we'll leave it here
//
if (versionMeetsMinimum(5, 0, 14)) {
Connection infoSchemConn = null;
try {
Properties props = new Properties();
props.setProperty("useInformationSchema", "true");
infoSchemConn = getConnectionWithProps(props);
this.rs = infoSchemConn.getMetaData().getColumns(infoSchemConn.getCatalog(), null, "testBug14562", "%field");
assertTrue(this.rs.next());
assertEquals(Types.INTEGER, this.rs.getInt("DATA_TYPE"));
assertEquals("MEDIUMINT", this.rs.getString("TYPE_NAME").toUpperCase(Locale.US));
assertTrue(this.rs.next());
assertEquals(Types.INTEGER, this.rs.getInt("DATA_TYPE"));
assertEquals("MEDIUMINT UNSIGNED", this.rs.getString("TYPE_NAME").toUpperCase(Locale.US));
} finally {
if (infoSchemConn != null) {
infoSchemConn.close();
}
}
}
}
public void testBug15604() throws Exception {
createTable("testBug15604_date_cal", "(field1 DATE)");
Properties props = new Properties();
props.setProperty("useLegacyDatetimeCode", "false");
props.setProperty("sessionVariables", "time_zone='America/Chicago'");
Connection nonLegacyConn = getConnectionWithProps(props);
Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
cal.set(Calendar.YEAR, 2005);
cal.set(Calendar.MONTH, 4);
cal.set(Calendar.DAY_OF_MONTH, 15);
cal.set(Calendar.HOUR_OF_DAY, 0);
cal.set(Calendar.MINUTE, 0);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);
java.sql.Date sqlDate = new java.sql.Date(cal.getTime().getTime());
Calendar cal2 = Calendar.getInstance();
cal2.setTime(sqlDate);
System.out.println(new java.sql.Date(cal2.getTime().getTime()));
this.pstmt = nonLegacyConn.prepareStatement("INSERT INTO testBug15604_date_cal VALUES (?)");
this.pstmt.setDate(1, sqlDate, cal);
this.pstmt.executeUpdate();
this.rs = nonLegacyConn.createStatement().executeQuery("SELECT field1 FROM testBug15604_date_cal");
this.rs.next();
assertEquals(sqlDate.getTime(), this.rs.getDate(1, cal).getTime());
}
public void testBug14897() throws Exception {
createTable("table1", "(id int, name_id int)");
createTable("table2", "(id int)");
createTable("lang_table", "(id int, en varchar(255) CHARACTER SET utf8, cz varchar(255) CHARACTER SET utf8)");
this.stmt.executeUpdate("insert into table1 values (0, 0)");
this.stmt.executeUpdate("insert into table2 values (0)");
this.stmt.executeUpdate("insert into lang_table values (0, 'abcdef', 'ghijkl')");
this.rs = this.stmt.executeQuery("select a.id, b.id, c.en, c.cz from table1 as a, table2 as b, lang_table as c where a.id = b.id and a.name_id = c.id");
assertTrue(this.rs.next());
this.rs.getString("c.cz");
this.rs = this.stmt.executeQuery("select table1.*, table2.* FROM table1, table2");
this.rs.findColumn("table1.id");
this.rs.findColumn("table2.id");
}
/**
* Tests fix for BUG#14609 - Exception thrown for new decimal type when
* using updatable result sets.
*
* @throws Exception
* if the test fails
*/
public void testBug14609() throws Exception {
if (versionMeetsMinimum(5, 0)) {
createTable("testBug14609", "(field1 int primary key, field2 decimal)");
this.stmt.executeUpdate("INSERT INTO testBug14609 VALUES (1, 1)");
PreparedStatement updatableStmt = this.conn.prepareStatement("SELECT field1, field2 FROM testBug14609", ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
try {
this.rs = updatableStmt.executeQuery();
} finally {
if (updatableStmt != null) {
updatableStmt.close();
}
}
}
}
/**
* Tests fix for BUG#16169 - ResultSet.getNativeShort() causes stack
* overflow error via recurisve calls.
*
* @throws Exception
* if the tests fails
*/
public void testBug16169() throws Exception {
createTable("testBug16169", "(field1 smallint)");
this.stmt.executeUpdate("INSERT INTO testBug16169 (field1) VALUES (0)");
this.pstmt = this.conn.prepareStatement("SELECT * FROM testBug16169");
this.rs = this.pstmt.executeQuery();
assertTrue(this.rs.next());
assertEquals(0, ((Integer) this.rs.getObject("field1")).intValue());
}
/**
* Tests fix for BUG#16841 - updatable result set doesn't return
* AUTO_INCREMENT values for insertRow() when multiple column primary keys
* are used.
*
* @throws Exception
* if the test fails.
*/
public void testBug16841() throws Exception {
createTable("testBug16841", "(CID int( 20 ) NOT NULL default '0', OID int( 20 ) NOT NULL AUTO_INCREMENT ,"
+ "PatientID int( 20 ) default NULL , PRIMARY KEY ( CID , OID ) , KEY OID ( OID ) , KEY Path ( CID, PatientID))", "MYISAM");
String sSQLQuery = "SELECT * FROM testBug16841 WHERE 1 = 0";
Statement updStmt = null;
try {
updStmt = this.conn.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE);
this.rs = updStmt.executeQuery(sSQLQuery);
this.rs.moveToInsertRow();
this.rs.updateInt("CID", 1);
this.rs.updateInt("PatientID", 1);
this.rs.insertRow();
this.rs.last();
assertEquals(1, this.rs.getInt("OID"));
} finally {
if (updStmt != null) {
updStmt.close();
}
}
}
/**
* Tests fix for BUG#17450 - ResultSet.wasNull() not always reset correctly
* for booleans when done via conversion for server-side prepared
* statements.
*
* @throws Exception
* if the test fails.
*/
public void testBug17450() throws Exception {
if (versionMeetsMinimum(4, 1, 0)) {
createTable("testBug17450", "(FOO VARCHAR(100), BAR CHAR NOT NULL)");
this.stmt.execute("insert into testBug17450 (foo,bar) values ('foo',true)");
this.stmt.execute("insert into testBug17450 (foo,bar) values (null,true)");
this.pstmt = this.conn.prepareStatement("select * from testBug17450 where foo=?");
this.pstmt.setString(1, "foo");
this.rs = this.pstmt.executeQuery();
checkResult17450();
this.pstmt = this.conn.prepareStatement("select * from testBug17450 where foo is null");
this.rs = this.pstmt.executeQuery();
checkResult17450();
this.rs = this.stmt.executeQuery("select * from testBug17450 where foo='foo'");
checkResult17450();
this.rs = this.stmt.executeQuery("select * from testBug17450 where foo is null");
checkResult17450();
}
}
/**
* Tests fix for BUG#19282 - ResultSet.wasNull() returns incorrect value
* when extracting native string from server-side prepared statement
* generated result set.
*
* @throws Exception
* if the test fails.
*/
public void testBug19282() throws Exception {
createTable("testBug19282", "(field1 VARCHAR(32))");
this.pstmt = this.conn.prepareStatement("SELECT field1 FROM testBug19282");
this.stmt.executeUpdate("INSERT INTO testBug19282 VALUES ('abcdefg')");
this.rs = this.pstmt.executeQuery();
this.rs.next();
assertEquals(false, this.rs.wasNull());
this.rs.getString(1);
assertEquals(false, this.rs.wasNull());
}
private void checkResult17450() throws Exception {
this.rs.next();
this.rs.getString(1);
boolean bar = this.rs.getBoolean(2);
assertEquals("field 2 should be true", true, bar);
assertFalse("wasNull should return false", this.rs.wasNull());
}
/**
* Tests fix for BUG#
*
* @throws Exception
*/
public void testBug19568() throws Exception {
if (versionMeetsMinimum(4, 1, 0)) {
createTable("testBug19568", "(field1 BOOLEAN," + (versionMeetsMinimum(5, 0, 0) ? "field2 BIT" : "field2 BOOLEAN") + ")");
this.stmt.executeUpdate("INSERT INTO testBug19568 VALUES (1,0), (0, 1)");
this.pstmt = this.conn.prepareStatement("SELECT field1, field2 FROM testBug19568 ORDER BY field1 DESC");
this.rs = this.pstmt.executeQuery();
checkResultsBug19568();
this.rs = this.stmt.executeQuery("SELECT field1, field2 FROM testBug19568 ORDER BY field1 DESC");
checkResultsBug19568();
}
}
private void checkResultsBug19568() throws SQLException {
// Test all numerical getters, and make sure to alternate true/false across rows so we can catch false-positives if off-by-one errors exist in the
// column getters.
for (int i = 0; i < 2; i++) {
assertTrue(this.rs.next());
for (int j = 0; j < 2; j++) {
assertEquals((i == 1 && j == 1) || (i == 0 && j == 0), this.rs.getBoolean(j + 1));
assertEquals(((i == 1 && j == 1) || (i == 0 && j == 0) ? 1 : 0), this.rs.getBigDecimal(j + 1).intValue());
assertEquals(((i == 1 && j == 1) || (i == 0 && j == 0) ? 1 : 0), this.rs.getByte(j + 1));
assertEquals(((i == 1 && j == 1) || (i == 0 && j == 0) ? 1 : 0), this.rs.getShort(j + 1));
assertEquals(((i == 1 && j == 1) || (i == 0 && j == 0) ? 1 : 0), this.rs.getInt(j + 1));
assertEquals(((i == 1 && j == 1) || (i == 0 && j == 0) ? 1 : 0), this.rs.getLong(j + 1));
assertEquals(((i == 1 && j == 1) || (i == 0 && j == 0) ? 1 : 0), this.rs.getFloat(j + 1), .1);
assertEquals(((i == 1 && j == 1) || (i == 0 && j == 0) ? 1 : 0), this.rs.getDouble(j + 1), .1);
}
}
}
public void testBug19724() throws Exception {
if (versionMeetsMinimum(4, 1)) {
// can't set this via session on 4.0 :(
createTable("test19724", "(col1 INTEGER NOT NULL, col2 VARCHAR(255) NULL, PRIMARY KEY (col1))");
this.stmt.execute("INSERT IGNORE INTO test19724 VALUES (0, 'Blah'),(1,'Boo')");
Connection ansiConn = null;
Statement updStmt = null;
Properties props = new Properties();
props.setProperty("sessionVariables", "sql_mode=ansi");
try {
ansiConn = getConnectionWithProps(props);
updStmt = ansiConn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
this.rs = updStmt.executeQuery("SELECT * FROM test19724");
this.rs.beforeFirst();
this.rs.next();
this.rs.updateString("col2", "blah2");
this.rs.updateRow();
} finally {
if (ansiConn != null) {
ansiConn.close();
}
}
}
}
private void traverseResultSetBug14562() throws SQLException {
assertTrue(this.rs.next());
ResultSetMetaData rsmd = this.rs.getMetaData();
assertEquals("MEDIUMINT", rsmd.getColumnTypeName(1));
assertEquals("MEDIUMINT UNSIGNED", rsmd.getColumnTypeName(2));
assertEquals(Types.INTEGER, rsmd.getColumnType(1));
assertEquals(Types.INTEGER, rsmd.getColumnType(2));
assertEquals("java.lang.Integer", rsmd.getColumnClassName(1));
assertEquals("java.lang.Integer", rsmd.getColumnClassName(2));
assertEquals(-8388608, this.rs.getInt(1));
assertEquals(0, this.rs.getInt(2));
assertEquals("java.lang.Integer", this.rs.getObject(1).getClass().getName());
assertEquals("java.lang.Integer", this.rs.getObject(2).getClass().getName());
assertTrue(this.rs.next());
assertEquals(8388607, this.rs.getInt(1));
assertEquals(16777215, this.rs.getInt(2));
assertEquals("java.lang.Integer", this.rs.getObject(1).getClass().getName());
assertEquals("java.lang.Integer", this.rs.getObject(2).getClass().getName());
}
/*
* public void testBug16458() throws Exception { createTable("a", "(id
* INTEGER NOT NULL, primary key (id)) Type=InnoDB"); createTable("b", "(id
* INTEGER NOT NULL, primary key (id)) Type=InnoDB"); createTable("c", "(id
* INTEGER NOT NULL, primary key (id)) Type=InnoDB");
*
* createTable( "problem_table", "(id int(11) NOT NULL auto_increment," +
* "a_id int(11) NOT NULL default '0'," + "b_id int(11) NOT NULL default
* '0'," + "c_id int(11) default NULL," + "order_num int(2) NOT NULL default
* '0'," + "PRIMARY KEY (id)," + "KEY idx_problem_table__b_id (b_id)," +
* "KEY idx_problem_table__a_id (a_id)," + "KEY idx_problem_table__c_id
* (c_id)," + "CONSTRAINT fk_problem_table__c FOREIGN KEY (c_id) REFERENCES
* c (id)," + "CONSTRAINT fk_problem_table__a FOREIGN KEY (a_id) REFERENCES
* a (id)," + "CONSTRAINT fk_problem_table__b FOREIGN KEY (b_id) REFERENCES
* b (id)" + ")" + "Type=InnoDB");
*
* this.stmt .executeUpdate("INSERT INTO `a` VALUES " +
* "(1),(4),(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),(45),(46),(47),(48),(49),(50)");
*
* this.stmt .executeUpdate("INSERT INTO `b` VALUES " +
* "(1),(2),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(16),(17),(18),(19"
* + "),(20)");
*
* this.stmt .executeUpdate("INSERT INTO `c` VALUES " +
* "(1),(2),(3),(13),(15),(16),(22),(30),(31),(32),(33),(34),(35),(36),(37),(148),(1"
* +
* "59),(167),(174),(176),(177),(178),(179),(180),(187),(188),(189),(190),(191),(192"
* +
* "),(193),(194),(195),(196),(197),(198),(199),(200),(201),(202),(203),(204),(205),"
* + "(206),(207),(208)");
*
* this.stmt .executeUpdate("INSERT INTO `problem_table` VALUES " +
* "(1,1,1,NULL,1),(2,1,4,NULL,1),(3,1,5,NULL,1),(4,1,8,NULL,1),(5,23,1,NULL,1),(6,2"
* +
* "3,4,NULL,1),(7,24,1,NULL,1),(8,24,2,NULL,1),(9,24,4,NULL,1),(10,25,1,NULL,1),(11"
* +
* ",25,2,NULL,1),(12,25,4,NULL,1),(13,27,1,NULL,1),(14,28,1,NULL,1),(15,29,1,NULL,1"
* +
* "),(16,15,2,NULL,1),(17,15,5,NULL,1),(18,15,8,NULL,1),(19,30,1,NULL,1),(20,31,1,N"
* +
* "ULL,1),(21,31,4,NULL,1),(22,32,2,NULL,1),(23,32,4,NULL,1),(24,32,6,NULL,1),(25,3"
* +
* "2,8,NULL,1),(26,32,10,NULL,1),(27,32,11,NULL,1),(28,32,13,NULL,1),(29,32,16,NULL"
* +
* ",1),(30,32,17,NULL,1),(31,32,18,NULL,1),(32,32,19,NULL,1),(33,32,20,NULL,1),(34,"
* +
* "33,15,NULL,1),(35,33,15,NULL,1),(36,32,20,206,1),(96,32,9,NULL,1),(100,47,6,NULL"
* + ",1),(101,47,10,NULL,1),(102,47,5,NULL,1),(105,47,19,NULL,1)");
* PreparedStatement ps = null;
*
* try { ps = conn.prepareStatement("SELECT DISTINCT id,order_num FROM
* problem_table WHERE a_id=? FOR UPDATE", ResultSet.TYPE_FORWARD_ONLY,
* ResultSet.CONCUR_UPDATABLE);
*
* ps.setInt(1, 32);
*
* this.rs = ps.executeQuery();
*
* while(this.rs.next()) { this.rs.updateInt(3, 51);
*
* this.rs.updateRow(); } } finally { if (this.rs != null) { ResultSet
* toCloseRs = this.rs; this.rs = null; toCloseRs.close(); }
*
* if (ps != null) { PreparedStatement toClosePs = ps; ps = null;
* toClosePs.close(); } } }
*/
public void testNPEWithUsageAdvisor() throws Exception {
Connection advisorConn = null;
Properties props = new Properties();
props.setProperty("useUsageAdvisor", "true");
advisorConn = getConnectionWithProps(props);
this.pstmt = advisorConn.prepareStatement("SELECT 1");
this.rs = this.pstmt.executeQuery();
this.rs.close();
this.rs = this.pstmt.executeQuery();
}
public void testAllTypesForNull() throws Exception {
Properties props = new Properties();
props.setProperty("jdbcCompliantTruncation", "false");
props.setProperty("zeroDateTimeBehavior", "round");
Connection conn2 = getConnectionWithProps(props);
Statement stmt2 = conn2.createStatement();
DatabaseMetaData dbmd = this.conn.getMetaData();
this.rs = dbmd.getTypeInfo();
boolean firstColumn = true;
int numCols = 1;
StringBuilder createStatement = new StringBuilder("CREATE TABLE testAllTypes (");
List<Boolean> wasDatetimeTypeList = new ArrayList<Boolean>();
while (this.rs.next()) {
String dataType = this.rs.getString("TYPE_NAME").toUpperCase();
boolean wasDateTime = false;
if (dataType.indexOf("DATE") != -1 || dataType.indexOf("TIME") != -1) {
wasDateTime = true;
}
if (!"BOOL".equalsIgnoreCase(dataType) && !"LONG VARCHAR".equalsIgnoreCase(dataType) && !"LONG VARBINARY".equalsIgnoreCase(dataType)
&& !"ENUM".equalsIgnoreCase(dataType) && !"SET".equalsIgnoreCase(dataType)) {
wasDatetimeTypeList.add(new Boolean(wasDateTime));
createStatement.append("\n\t");
if (!firstColumn) {
createStatement.append(",");
} else {
firstColumn = false;
}
createStatement.append("field_");
createStatement.append(numCols++);
createStatement.append(" ");
createStatement.append(dataType);
if ("VARCHAR".equalsIgnoreCase(dataType) || "VARBINARY".equalsIgnoreCase(dataType)) {
// we can't use max varchar precision because it is equal to max row length
createStatement.append("(255)");
} else if (dataType.indexOf("CHAR") != -1
|| dataType.indexOf("BINARY") != -1 && dataType.indexOf("BLOB") == -1 && dataType.indexOf("TEXT") == -1) {
createStatement.append("(");
createStatement.append(this.rs.getString("PRECISION"));
createStatement.append(")");
}
createStatement.append(" NULL DEFAULT NULL");
}
}
createStatement.append("\n)");
stmt2.executeUpdate("DROP TABLE IF EXISTS testAllTypes");
stmt2.executeUpdate(createStatement.toString());
StringBuilder insertStatement = new StringBuilder("INSERT INTO testAllTypes VALUES (NULL");
for (int i = 1; i < numCols - 1; i++) {
insertStatement.append(", NULL");
}
insertStatement.append(")");
stmt2.executeUpdate(insertStatement.toString());
this.rs = stmt2.executeQuery("SELECT * FROM testAllTypes");
testAllFieldsForNull(this.rs);
this.rs.close();
this.rs = this.conn.prepareStatement("SELECT * FROM testAllTypes").executeQuery();
testAllFieldsForNull(this.rs);
stmt2.executeUpdate("DELETE FROM testAllTypes");
insertStatement = new StringBuilder("INSERT INTO testAllTypes VALUES (");
boolean needsNow = wasDatetimeTypeList.get(0).booleanValue();
if (needsNow) {
insertStatement.append("NOW()");
} else {
insertStatement.append("0");
}
for (int i = 1; i < numCols - 1; i++) {
needsNow = wasDatetimeTypeList.get(i).booleanValue();
insertStatement.append(",");
if (needsNow) {
insertStatement.append("NOW()");
} else {
insertStatement.append("0");
}
}
insertStatement.append(")");
stmt2.executeUpdate(insertStatement.toString());
this.rs = stmt2.executeQuery("SELECT * FROM testAllTypes");
testAllFieldsForNotNull(this.rs, wasDatetimeTypeList);
this.rs.close();
this.rs = conn2.prepareStatement("SELECT * FROM testAllTypes").executeQuery();
testAllFieldsForNotNull(this.rs, wasDatetimeTypeList);
stmt2.executeUpdate("DROP TABLE IF EXISTS testAllTypes");
}
@SuppressWarnings("deprecation")
private void testAllFieldsForNull(ResultSet rsToTest) throws Exception {
ResultSetMetaData rsmd = this.rs.getMetaData();
int numCols = rsmd.getColumnCount();
while (rsToTest.next()) {
for (int i = 0; i < numCols - 1; i++) {
String typeName = rsmd.getColumnTypeName(i + 1);
if ("VARBINARY".equalsIgnoreCase(typeName)) {
System.out.println();
}
if (!"BIT".equalsIgnoreCase(typeName)) {
assertEquals(false, rsToTest.getBoolean(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(0, rsToTest.getDouble(i + 1), 0 /* delta */);
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(0, rsToTest.getFloat(i + 1), 0 /* delta */);
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(0, rsToTest.getInt(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(0, rsToTest.getLong(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(null, rsToTest.getObject(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(null, rsToTest.getString(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(null, rsToTest.getAsciiStream(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(null, rsToTest.getBigDecimal(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(null, rsToTest.getBinaryStream(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(null, rsToTest.getBlob(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(0, rsToTest.getByte(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(null, rsToTest.getBytes(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(null, rsToTest.getCharacterStream(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(null, rsToTest.getClob(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(null, rsToTest.getDate(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(0, rsToTest.getShort(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(null, rsToTest.getTime(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(null, rsToTest.getTimestamp(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(null, rsToTest.getUnicodeStream(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
assertEquals(null, rsToTest.getURL(i + 1));
assertTrue("for type " + typeName, rsToTest.wasNull());
}
}
}
}
@SuppressWarnings("deprecation")
private void testAllFieldsForNotNull(ResultSet rsToTest, List<Boolean> wasDatetimeTypeList) throws Exception {
ResultSetMetaData rsmd = this.rs.getMetaData();
int numCols = rsmd.getColumnCount();
while (rsToTest.next()) {
for (int i = 0; i < numCols - 1; i++) {
boolean wasDatetimeType = wasDatetimeTypeList.get(i).booleanValue();
String typeName = rsmd.getColumnTypeName(i + 1);
int sqlType = rsmd.getColumnType(i + 1);
if (!"BIT".equalsIgnoreCase(typeName) && sqlType != Types.BINARY && sqlType != Types.VARBINARY && sqlType != Types.LONGVARBINARY) {
if (!wasDatetimeType) {
assertEquals(false, rsToTest.getBoolean(i + 1));
assertTrue(!rsToTest.wasNull());
assertEquals(0, rsToTest.getDouble(i + 1), 0 /* delta */);
assertTrue(!rsToTest.wasNull());
assertEquals(0, rsToTest.getFloat(i + 1), 0 /* delta */);
assertTrue(!rsToTest.wasNull());
assertEquals(0, rsToTest.getInt(i + 1));
assertTrue(!rsToTest.wasNull());
assertEquals(0, rsToTest.getLong(i + 1));
assertTrue(!rsToTest.wasNull());
assertEquals(0, rsToTest.getByte(i + 1));
assertTrue(!rsToTest.wasNull());
assertEquals(0, rsToTest.getShort(i + 1));
assertTrue(!rsToTest.wasNull());
}
assertNotNull(rsToTest.getObject(i + 1));
assertTrue(!rsToTest.wasNull());
assertNotNull(rsToTest.getString(i + 1));
assertTrue(!rsToTest.wasNull());
assertNotNull(rsToTest.getAsciiStream(i + 1));
assertTrue(!rsToTest.wasNull());
assertNotNull(rsToTest.getBinaryStream(i + 1));
assertTrue(!rsToTest.wasNull());
assertNotNull(rsToTest.getBlob(i + 1));
assertTrue(!rsToTest.wasNull());
assertNotNull(rsToTest.getBytes(i + 1));
assertTrue(!rsToTest.wasNull());
assertNotNull(rsToTest.getCharacterStream(i + 1));
assertTrue(!rsToTest.wasNull());
assertNotNull(rsToTest.getClob(i + 1));
assertTrue(!rsToTest.wasNull());
String columnClassName = rsmd.getColumnClassName(i + 1);
boolean canBeUsedAsDate = !("java.lang.Boolean".equals(columnClassName) || "java.lang.Double".equals(columnClassName)
|| "java.lang.Float".equals(columnClassName) || "java.lang.Real".equals(columnClassName)
|| "java.math.BigDecimal".equals(columnClassName));
if (canBeUsedAsDate) {
assertNotNull(rsToTest.getDate(i + 1));
assertTrue(!rsToTest.wasNull());
assertNotNull(rsToTest.getTime(i + 1));
assertTrue(!rsToTest.wasNull());
assertNotNull(rsToTest.getTimestamp(i + 1));
assertTrue(!rsToTest.wasNull());
}
assertNotNull(rsToTest.getUnicodeStream(i + 1));
assertTrue(!rsToTest.wasNull());
try {
assertNotNull(rsToTest.getURL(i + 1));
} catch (SQLException sqlEx) {
assertTrue(sqlEx.getMessage().indexOf("URL") != -1);
}
assertTrue(!rsToTest.wasNull());
}
}
}
}
public void testNPEWithStatementsAndTime() throws Exception {
createTable("testNPETime", "(field1 TIME NULL, field2 DATETIME NULL, field3 DATE NULL)");
this.stmt.executeUpdate("INSERT INTO testNPETime VALUES (null, null, null)");
this.pstmt = this.conn.prepareStatement("SELECT field1, field2, field3 FROM testNPETime");
this.rs = this.pstmt.executeQuery();
this.rs.next();
for (int i = 0; i < 3; i++) {
assertEquals(null, this.rs.getTime(i + 1));
assertEquals(true, this.rs.wasNull());
}
for (int i = 0; i < 3; i++) {
assertEquals(null, this.rs.getTimestamp(i + 1));
assertEquals(true, this.rs.wasNull());
}
for (int i = 0; i < 3; i++) {
assertEquals(null, this.rs.getDate(i + 1));
assertEquals(true, this.rs.wasNull());
}
}
public void testEmptyStringsWithNumericGetters() throws Exception {
createTable("emptyStringTable", "(field1 char(32))");
this.stmt.executeUpdate("INSERT INTO emptyStringTable VALUES ('')");
this.rs = this.stmt.executeQuery("SELECT field1 FROM emptyStringTable");
assertTrue(this.rs.next());
createTable("emptyStringTable", "(field1 char(32))");
this.stmt.executeUpdate("INSERT INTO emptyStringTable VALUES ('')");
this.rs = this.stmt.executeQuery("SELECT field1 FROM emptyStringTable");
assertTrue(this.rs.next());
checkEmptyConvertToZero();
this.rs = this.conn.prepareStatement("SELECT field1 FROM emptyStringTable").executeQuery();
assertTrue(this.rs.next());
checkEmptyConvertToZero();
Properties props = new Properties();
props.setProperty("useFastIntParsing", "false");
Connection noFastIntParseConn = getConnectionWithProps(props);
Statement noFastIntStmt = noFastIntParseConn.createStatement();
this.rs = noFastIntStmt.executeQuery("SELECT field1 FROM emptyStringTable");
assertTrue(this.rs.next());
checkEmptyConvertToZero();
this.rs = noFastIntParseConn.prepareStatement("SELECT field1 FROM emptyStringTable").executeQuery();
assertTrue(this.rs.next());
checkEmptyConvertToZero();
//
// Now, be more pedantic....
//
props = new Properties();
props.setProperty("emptyStringsConvertToZero", "false");
Connection pedanticConn = getConnectionWithProps(props);
Statement pedanticStmt = pedanticConn.createStatement();
this.rs = pedanticStmt.executeQuery("SELECT field1 FROM emptyStringTable");
assertTrue(this.rs.next());
checkEmptyConvertToZeroException();
this.rs = pedanticConn.prepareStatement("SELECT field1 FROM emptyStringTable").executeQuery();
assertTrue(this.rs.next());
checkEmptyConvertToZeroException();
props = new Properties();
props.setProperty("emptyStringsConvertToZero", "false");
props.setProperty("useFastIntParsing", "false");
pedanticConn = getConnectionWithProps(props);
pedanticStmt = pedanticConn.createStatement();
this.rs = pedanticStmt.executeQuery("SELECT field1 FROM emptyStringTable");
assertTrue(this.rs.next());
checkEmptyConvertToZeroException();
this.rs = pedanticConn.prepareStatement("SELECT field1 FROM emptyStringTable").executeQuery();
assertTrue(this.rs.next());
checkEmptyConvertToZeroException();
}
public void testNegativeOneIsTrue() throws Exception {
if (!versionMeetsMinimum(5, 0, 3)) {
String tableName = "testNegativeOneIsTrue";
Connection tinyInt1IsBitConn = null;
try {
createTable(tableName, "(field1 BIT)");
this.stmt.executeUpdate("INSERT INTO " + tableName + " VALUES (-1)");
Properties props = new Properties();
props.setProperty("tinyInt1isBit", "true");
tinyInt1IsBitConn = getConnectionWithProps(props);
this.rs = tinyInt1IsBitConn.createStatement().executeQuery("SELECT field1 FROM " + tableName);
assertTrue(this.rs.next());
assertEquals(true, this.rs.getBoolean(1));
this.rs = tinyInt1IsBitConn.prepareStatement("SELECT field1 FROM " + tableName).executeQuery();
assertTrue(this.rs.next());
assertEquals(true, this.rs.getBoolean(1));
} finally {
if (tinyInt1IsBitConn != null) {
tinyInt1IsBitConn.close();
}
}
}
}
/**
* @throws SQLException
*/
private void checkEmptyConvertToZero() throws SQLException {
assertEquals(0, this.rs.getByte(1));
assertEquals(0, this.rs.getShort(1));
assertEquals(0, this.rs.getInt(1));
assertEquals(0, this.rs.getLong(1));
assertEquals(0, this.rs.getFloat(1), 0.1);
assertEquals(0, this.rs.getDouble(1), 0.1);
assertEquals(0, this.rs.getBigDecimal(1).intValue());
}
/**
*/
private void checkEmptyConvertToZeroException() {
try {
assertEquals(0, this.rs.getByte(1));
fail("Should've thrown an exception!");
} catch (SQLException sqlEx) {
assertEquals(SQLError.SQL_STATE_INVALID_CHARACTER_VALUE_FOR_CAST, sqlEx.getSQLState());
}
try {
assertEquals(0, this.rs.getShort(1));
fail("Should've thrown an exception!");
} catch (SQLException sqlEx) {
assertEquals(SQLError.SQL_STATE_INVALID_CHARACTER_VALUE_FOR_CAST, sqlEx.getSQLState());
}
try {
assertEquals(0, this.rs.getInt(1));
fail("Should've thrown an exception!");
} catch (SQLException sqlEx) {
assertEquals(SQLError.SQL_STATE_INVALID_CHARACTER_VALUE_FOR_CAST, sqlEx.getSQLState());
}
try {
assertEquals(0, this.rs.getLong(1));
fail("Should've thrown an exception!");
} catch (SQLException sqlEx) {
assertEquals(SQLError.SQL_STATE_INVALID_CHARACTER_VALUE_FOR_CAST, sqlEx.getSQLState());
}
try {
assertEquals(0, this.rs.getFloat(1), 0.1);
fail("Should've thrown an exception!");
} catch (SQLException sqlEx) {
assertEquals(SQLError.SQL_STATE_INVALID_CHARACTER_VALUE_FOR_CAST, sqlEx.getSQLState());
}
try {
assertEquals(0, this.rs.getDouble(1), 0.1);
fail("Should've thrown an exception!");
} catch (SQLException sqlEx) {
assertEquals(SQLError.SQL_STATE_INVALID_CHARACTER_VALUE_FOR_CAST, sqlEx.getSQLState());
}
try {
assertEquals(0, this.rs.getBigDecimal(1).intValue());
fail("Should've thrown an exception!");
} catch (SQLException sqlEx) {
assertEquals(SQLError.SQL_STATE_INVALID_CHARACTER_VALUE_FOR_CAST, sqlEx.getSQLState());
}
}
/**
* Tests fix for BUG#10485, SQLException thrown when retrieving YEAR(2) with
* ResultSet.getString().
*
* @throws Exception
* if the test fails.
*/
public void testBug10485() throws Exception {
if (versionMeetsMinimum(5, 7, 5)) {
// Nothing to test, YEAR(2) is removed starting from 5.7.5
return;
}
String tableName = "testBug10485";
Calendar nydCal = null;
if (((com.mysql.jdbc.Connection) this.conn).getUseGmtMillisForDatetimes()) {
nydCal = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
} else {
nydCal = Calendar.getInstance();
}
nydCal.set(2005, 0, 1, 0, 0, 0);
Date newYears2005 = new Date(nydCal.getTime().getTime());
createTable(tableName, "(field1 YEAR(2))");
this.stmt.executeUpdate("INSERT INTO " + tableName + " VALUES ('05')");
this.rs = this.stmt.executeQuery("SELECT field1 FROM " + tableName);
assertTrue(this.rs.next());
assertEquals(newYears2005.toString(), this.rs.getString(1));
this.rs = this.conn.prepareStatement("SELECT field1 FROM " + tableName).executeQuery();
assertTrue(this.rs.next());
assertEquals(newYears2005.toString(), this.rs.getString(1));
Properties props = new Properties();
props.setProperty("yearIsDateType", "false");
Connection yearShortConn = getConnectionWithProps(props);
this.rs = yearShortConn.createStatement().executeQuery("SELECT field1 FROM " + tableName);
assertTrue(this.rs.next());
String expectedShort = versionMeetsMinimum(5, 6, 6) ? "2005" : "05";
assertEquals(expectedShort, this.rs.getString(1));
this.rs = yearShortConn.prepareStatement("SELECT field1 FROM " + tableName).executeQuery();
assertTrue(this.rs.next());
assertEquals(expectedShort, this.rs.getString(1));
if (versionMeetsMinimum(5, 0)) {
createProcedure("testBug10485", "()\nBEGIN\nSELECT field1 FROM " + tableName + ";\nEND");
this.rs = this.conn.prepareCall("{CALL testBug10485()}").executeQuery();
assertTrue(this.rs.next());
assertEquals(newYears2005.toString(), this.rs.getString(1));
this.rs = yearShortConn.prepareCall("{CALL testBug10485()}").executeQuery();
assertTrue(this.rs.next());
assertEquals(expectedShort, this.rs.getString(1));
}
}
/**
* Tests fix for BUG#11552, wrong values returned from server-side prepared
* statements if values are unsigned.
*
* @throws Exception
* if the test fails.
*/
public void testBug11552() throws Exception {
createTable("testBug11552", "(field1 INT UNSIGNED, field2 TINYINT UNSIGNED, field3 SMALLINT UNSIGNED, field4 BIGINT UNSIGNED)");
this.stmt.executeUpdate("INSERT INTO testBug11552 VALUES (2, 2, 2, 2), (4294967294, 255, 32768, 18446744073709551615 )");
this.rs = this.conn.prepareStatement("SELECT field1, field2, field3, field4 FROM testBug11552 ORDER BY field1 ASC").executeQuery();
this.rs.next();
assertEquals("2", this.rs.getString(1));
assertEquals("2", this.rs.getObject(1).toString());
assertEquals("2", String.valueOf(this.rs.getLong(1)));
assertEquals("2", this.rs.getString(2));
assertEquals("2", this.rs.getObject(2).toString());
assertEquals("2", String.valueOf(this.rs.getLong(2)));
assertEquals("2", this.rs.getString(3));
assertEquals("2", this.rs.getObject(3).toString());
assertEquals("2", String.valueOf(this.rs.getLong(3)));
assertEquals("2", this.rs.getString(4));
assertEquals("2", this.rs.getObject(4).toString());
assertEquals("2", String.valueOf(this.rs.getLong(4)));
this.rs.next();
assertEquals("4294967294", this.rs.getString(1));
assertEquals("4294967294", this.rs.getObject(1).toString());
assertEquals("4294967294", String.valueOf(this.rs.getLong(1)));
assertEquals("255", this.rs.getString(2));
assertEquals("255", this.rs.getObject(2).toString());
assertEquals("255", String.valueOf(this.rs.getLong(2)));
assertEquals("32768", this.rs.getString(3));
assertEquals("32768", this.rs.getObject(3).toString());
assertEquals("32768", String.valueOf(this.rs.getLong(3)));
assertEquals("18446744073709551615", this.rs.getString(4));
assertEquals("18446744073709551615", this.rs.getObject(4).toString());
}
/**
* Tests correct detection of truncation of non-sig digits.
*
* @throws Exception
* if the test fails.
*/
public void testTruncationOfNonSigDigits() throws Exception {
if (versionMeetsMinimum(4, 1, 0)) {
createTable("testTruncationOfNonSigDigits", "(field1 decimal(12,2), field2 varchar(2))", "Innodb");
this.stmt.executeUpdate("INSERT INTO testTruncationOfNonSigDigits VALUES (123456.2345, 'ab')");
try {
this.stmt.executeUpdate("INSERT INTO testTruncationOfNonSigDigits VALUES (1234561234561.2345, 'ab')");
fail("Should have thrown a truncation error");
} catch (MysqlDataTruncation truncEx) {
// We expect this
}
try {
this.stmt.executeUpdate("INSERT INTO testTruncationOfNonSigDigits VALUES (1234.2345, 'abcd')");
fail("Should have thrown a truncation error");
} catch (MysqlDataTruncation truncEx) {
// We expect this
}
}
}
/**
* Tests fix for BUG#20479 - Updatable result set throws ClassCastException
* when there is row data and moveToInsertRow() is called.
*
* @throws Exception
* if the test fails.
*/
public void testBug20479() throws Exception {
PreparedStatement updStmt = null;
createTable("testBug20479", "(field1 INT NOT NULL PRIMARY KEY)");
this.stmt.executeUpdate("INSERT INTO testBug20479 VALUES (2), (3), (4)");
try {
updStmt = this.conn.prepareStatement("SELECT * FROM testBug20479 Where field1 > ? ORDER BY field1", ResultSet.TYPE_SCROLL_SENSITIVE,
ResultSet.CONCUR_UPDATABLE);
updStmt.setInt(1, 1);
this.rs = updStmt.executeQuery();
this.rs.next();
this.rs.moveToInsertRow();
this.rs.updateInt(1, 45);
this.rs.insertRow();
this.rs.moveToCurrentRow();
assertEquals(2, this.rs.getInt(1));
this.rs.next();
this.rs.next();
this.rs.next();
assertEquals(45, this.rs.getInt(1));
} finally {
if (updStmt != null) {
updStmt.close();
}
}
}
/**
* Tests fix for BUG#20485 - Updatable result set that contains a BIT column
* fails when server-side prepared statements are used.
*
* @throws Exception
* if the test fails.
*/
public void testBug20485() throws Exception {
if (!versionMeetsMinimum(5, 0)) {
return;
}
PreparedStatement updStmt = null;
createTable("testBug20485", "(field1 INT NOT NULL PRIMARY KEY, field2 BIT)");
this.stmt.executeUpdate("INSERT INTO testBug20485 VALUES (2, 1), (3, 1), (4, 1)");
try {
updStmt = this.conn.prepareStatement("SELECT * FROM testBug20485 ORDER BY field1", ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
this.rs = updStmt.executeQuery();
} finally {
if (updStmt != null) {
updStmt.close();
}
}
}
/**
* Tests fix for BUG#20306 - ResultSet.getShort() for UNSIGNED TINYINT
* returns incorrect values when using server-side prepared statements.
*
* @throws Exception
* if the test fails.
*/
public void testBug20306() throws Exception {
createTable("testBug20306", "(field1 TINYINT UNSIGNED, field2 TINYINT UNSIGNED)");
this.stmt.executeUpdate("INSERT INTO testBug20306 VALUES (2, 133)");
this.pstmt = this.conn.prepareStatement("SELECT field1, field2 FROM testBug20306");
this.rs = this.pstmt.executeQuery();
this.rs.next();
checkBug20306();
this.rs = this.stmt.executeQuery("SELECT field1, field2 FROM testBug20306");
this.rs.next();
checkBug20306();
}
private void checkBug20306() throws Exception {
assertEquals(2, this.rs.getByte(1));
assertEquals(2, this.rs.getInt(1));
assertEquals(2, this.rs.getShort(1));
assertEquals(2, this.rs.getLong(1));
assertEquals(2.0, this.rs.getFloat(1), 0);
assertEquals(2.0, this.rs.getDouble(1), 0);
assertEquals(2, this.rs.getBigDecimal(1).intValue());
assertEquals(133, this.rs.getInt(2));
assertEquals(133, this.rs.getShort(2));
assertEquals(133, this.rs.getLong(2));
assertEquals(133.0, this.rs.getFloat(2), 0);
assertEquals(133.0, this.rs.getDouble(2), 0);
assertEquals(133, this.rs.getBigDecimal(2).intValue());
}
/**
* Tests fix for BUG#21062 - ResultSet.getSomeInteger() doesn't work for
* BIT(>1)
*
* @throws Exception
* if the test fails.
*/
public void testBug21062() throws Exception {
if (versionMeetsMinimum(5, 0, 5)) {
createTable("testBug21062", "(bit_7_field BIT(7), bit_31_field BIT(31), bit_12_field BIT(12))");
int max7Bits = 127;
long max31Bits = 2147483647L;
int max12Bits = 4095;
this.stmt.executeUpdate("INSERT INTO testBug21062 VALUES (" + max7Bits + "," + max31Bits + "," + max12Bits + ")");
this.rs = this.stmt.executeQuery("SELECT * FROM testBug21062");
this.rs.next();
assertEquals(127, this.rs.getInt(1));
assertEquals(127, this.rs.getShort(1));
assertEquals(127, this.rs.getLong(1));
assertEquals(2147483647, this.rs.getInt(2));
assertEquals(2147483647, this.rs.getLong(2));
assertEquals(4095, this.rs.getInt(3));
assertEquals(4095, this.rs.getShort(3));
assertEquals(4095, this.rs.getLong(3));
}
}
/**
* Tests fix for BUG#18880 - ResultSet.getFloatFromString() can't retrieve
* values near Float.MIN/MAX_VALUE.
*
* @throws Exception
* if the test fails.
*/
public void testBug18880() throws Exception {
this.rs = this.stmt.executeQuery("SELECT 3.4E38,1.4E-45");
this.rs.next();
this.rs.getFloat(1);
this.rs.getFloat(2);
}
/**
* Tests fix for BUG#15677, wrong values returned from getShort() if SQL
* values are tinyint unsigned.
*
* @throws Exception
* if the test fails.
*/
public void testBug15677() throws Exception {
createTable("testBug15677", "(id BIGINT, field1 TINYINT UNSIGNED)");
this.stmt.executeUpdate("INSERT INTO testBug15677 VALUES (1, 0), (2, 127), (3, 128), (4, 255)");
this.rs = this.conn.prepareStatement("SELECT field1 FROM testBug15677 ORDER BY id ASC").executeQuery();
this.rs.next();
assertEquals("0", this.rs.getString(1));
assertEquals("0", this.rs.getObject(1).toString());
assertEquals("0", String.valueOf(this.rs.getShort(1)));
this.rs.next();
assertEquals("127", this.rs.getString(1));
assertEquals("127", this.rs.getObject(1).toString());
assertEquals("127", String.valueOf(this.rs.getShort(1)));
this.rs.next();
assertEquals("128", this.rs.getString(1));
assertEquals("128", this.rs.getObject(1).toString());
assertEquals("128", String.valueOf(this.rs.getShort(1)));
this.rs.next();
assertEquals("255", this.rs.getString(1));
assertEquals("255", this.rs.getObject(1).toString());
assertEquals("255", String.valueOf(this.rs.getShort(1)));
}
public void testBooleans() throws Exception {
if (versionMeetsMinimum(5, 0)) {
createTable("testBooleans",
"(ob int, field1 BOOLEAN, field2 TINYINT, field3 SMALLINT, field4 INT, field5 MEDIUMINT, field6 BIGINT, field7 FLOAT, field8 DOUBLE, field9 DECIMAL, field10 VARCHAR(32), field11 BINARY(3), field12 VARBINARY(3), field13 BLOB)");
this.pstmt = this.conn.prepareStatement("INSERT INTO testBooleans VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
this.pstmt.setInt(1, 1);
this.pstmt.setBoolean(2, false);
this.pstmt.setByte(3, (byte) 0);
this.pstmt.setInt(4, 0);
this.pstmt.setInt(5, 0);
this.pstmt.setInt(6, 0);
this.pstmt.setLong(7, 0);
this.pstmt.setFloat(8, 0);
this.pstmt.setDouble(9, 0);
this.pstmt.setBigDecimal(10, new BigDecimal("0"));
this.pstmt.setString(11, "false");
this.pstmt.setBytes(12, new byte[] { 0 });
this.pstmt.setBytes(13, new byte[] { 0 });
this.pstmt.setBytes(14, new byte[] { 0 });
this.pstmt.executeUpdate();
this.pstmt.setInt(1, 2);
this.pstmt.setBoolean(2, true);
this.pstmt.setByte(3, (byte) 1);
this.pstmt.setInt(4, 1);
this.pstmt.setInt(5, 1);
this.pstmt.setInt(6, 1);
this.pstmt.setLong(7, 1);
this.pstmt.setFloat(8, 1);
this.pstmt.setDouble(9, 1);
this.pstmt.setBigDecimal(10, new BigDecimal("1"));
this.pstmt.setString(11, "true");
this.pstmt.setBytes(12, new byte[] { 1 });
this.pstmt.setBytes(13, new byte[] { 1 });
this.pstmt.setBytes(14, new byte[] { 1 });
this.pstmt.executeUpdate();
this.pstmt.setInt(1, 3);
this.pstmt.setBoolean(2, true);
this.pstmt.setByte(3, (byte) 1);
this.pstmt.setInt(4, 1);
this.pstmt.setInt(5, 1);
this.pstmt.setInt(6, 1);
this.pstmt.setLong(7, 1);
this.pstmt.setFloat(8, 1);
this.pstmt.setDouble(9, 1);
this.pstmt.setBigDecimal(10, new BigDecimal("1"));
this.pstmt.setString(11, "true");
this.pstmt.setBytes(12, new byte[] { 2 });
this.pstmt.setBytes(13, new byte[] { 2 });
this.pstmt.setBytes(14, new byte[] { 2 });
this.pstmt.executeUpdate();
this.pstmt.setInt(1, 4);
this.pstmt.setBoolean(2, true);
this.pstmt.setByte(3, (byte) 1);
this.pstmt.setInt(4, 1);
this.pstmt.setInt(5, 1);
this.pstmt.setInt(6, 1);
this.pstmt.setLong(7, 1);
this.pstmt.setFloat(8, 1);
this.pstmt.setDouble(9, 1);
this.pstmt.setBigDecimal(10, new BigDecimal("1"));
this.pstmt.setString(11, "true");
this.pstmt.setBytes(12, new byte[] { -1 });
this.pstmt.setBytes(13, new byte[] { -1 });
this.pstmt.setBytes(14, new byte[] { -1 });
this.pstmt.executeUpdate();
this.pstmt.setInt(1, 5);
this.pstmt.setBoolean(2, false);
this.pstmt.setByte(3, (byte) 0);
this.pstmt.setInt(4, 0);
this.pstmt.setInt(5, 0);
this.pstmt.setInt(6, 0);
this.pstmt.setLong(7, 0);
this.pstmt.setFloat(8, 0);
this.pstmt.setDouble(9, 0);
this.pstmt.setBigDecimal(10, new BigDecimal("0"));
this.pstmt.setString(11, "false");
this.pstmt.setBytes(12, new byte[] { 0, 0 });
this.pstmt.setBytes(13, new byte[] { 0, 0 });
this.pstmt.setBytes(14, new byte[] { 0, 0 });
this.pstmt.executeUpdate();
this.pstmt.setInt(1, 6);
this.pstmt.setBoolean(2, true);
this.pstmt.setByte(3, (byte) 1);
this.pstmt.setInt(4, 1);
this.pstmt.setInt(5, 1);
this.pstmt.setInt(6, 1);
this.pstmt.setLong(7, 1);
this.pstmt.setFloat(8, 1);
this.pstmt.setDouble(9, 1);
this.pstmt.setBigDecimal(10, new BigDecimal("1"));
this.pstmt.setString(11, "true");
this.pstmt.setBytes(12, new byte[] { 1, 0 });
this.pstmt.setBytes(13, new byte[] { 1, 0 });
this.pstmt.setBytes(14, new byte[] { 1, 0 });
this.pstmt.executeUpdate();
this.pstmt.setInt(1, 7);
this.pstmt.setBoolean(2, false);
this.pstmt.setByte(3, (byte) 0);
this.pstmt.setInt(4, 0);
this.pstmt.setInt(5, 0);
this.pstmt.setInt(6, 0);
this.pstmt.setLong(7, 0);
this.pstmt.setFloat(8, 0);
this.pstmt.setDouble(9, 0);
this.pstmt.setBigDecimal(10, new BigDecimal("0"));
this.pstmt.setString(11, "");
this.pstmt.setBytes(12, new byte[] {});
this.pstmt.setBytes(13, new byte[] {});
this.pstmt.setBytes(14, new byte[] {});
this.pstmt.executeUpdate();
this.rs = this.stmt.executeQuery(
"SELECT field1, field2, field3, field4, field5, field6, field7, field8, field9, field10, field11, field12, field13 FROM testBooleans ORDER BY ob");
boolean[] testVals = new boolean[] { false, true, true, true, false, true, false };
int i = 0;
while (this.rs.next()) {
for (int j = 0; j > 13; j++) {
assertEquals("For field_" + (j + 1) + ", row " + (i + 1), testVals[i], this.rs.getBoolean(j + 1));
}
i++;
}
this.rs = this.conn.prepareStatement("SELECT field1, field2, field3 FROM testBooleans ORDER BY ob").executeQuery();
i = 0;
while (this.rs.next()) {
for (int j = 0; j > 13; j++) {
assertEquals("For field_" + (j + 1) + ", row " + (i + 1), testVals[i], this.rs.getBoolean(j + 1));
}
i++;
}
}
}
/**
* Tests fix(es) for BUG#21379 - column names don't match metadata in cases
* where server doesn't return original column names (functions) thus
* breaking compatibility with applications that expect 1-1 mappings between
* findColumn() and rsmd.getColumnName().
*
* @throws Exception
* if the test fails.
*/
public void testBug21379() throws Exception {
//
// Test the 1-1 mapping between rs.findColumn() and rsmd.getColumnName() in the case where original column names are not returned, thus preserving
// pre-C/J 5.0 behavior for these cases
//
this.rs = this.stmt.executeQuery("SELECT LAST_INSERT_ID() AS id");
this.rs.next();
assertEquals("id", this.rs.getMetaData().getColumnName(1));
assertEquals(1, this.rs.findColumn("id"));
if (versionMeetsMinimum(4, 1)) {
//
// test complete emulation of C/J 3.1 and earlier behavior through configuration option
//
createTable("testBug21379", "(field1 int)");
Connection legacyConn = null;
Statement legacyStmt = null;
try {
Properties props = new Properties();
props.setProperty("useOldAliasMetadataBehavior", "true");
legacyConn = getConnectionWithProps(props);
legacyStmt = legacyConn.createStatement();
this.rs = legacyStmt.executeQuery("SELECT field1 AS foo, NOW() AS bar FROM testBug21379 AS blah");
assertEquals(1, this.rs.findColumn("foo"));
assertEquals(2, this.rs.findColumn("bar"));
assertEquals("blah", this.rs.getMetaData().getTableName(1));
} finally {
if (legacyConn != null) {
legacyConn.close();
}
}
}
}
/**
* Tests fix for BUG#21814 - time values outside valid range silently wrap
*
* @throws Exception
* if the test fails.
*/
public void testBug21814() throws Exception {
try {
this.rs = this.stmt.executeQuery("SELECT '25:01'");
this.rs.next();
this.rs.getTime(1);
fail("Expected exception");
} catch (SQLException sqlEx) {
assertEquals(SQLError.SQL_STATE_ILLEGAL_ARGUMENT, sqlEx.getSQLState());
}
try {
this.rs = this.stmt.executeQuery("SELECT '23:92'");
this.rs.next();
this.rs.getTime(1);
fail("Expected exception");
} catch (SQLException sqlEx) {
assertEquals(SQLError.SQL_STATE_ILLEGAL_ARGUMENT, sqlEx.getSQLState());
}
}
/**
* Tests for a server bug - needs to be revisited when the server is fixed.
*
* @throws Exception
* if the test fails.
*/
public void testBug24710() throws Exception {
if (!versionMeetsMinimum(6, 0)) {
return;
}
createTable("testBug24710", "(x varbinary(256))");
this.stmt.executeUpdate("insert into testBug24710(x) values(0x0000000000), (0x1111111111), (0x2222222222), (0x3333333333),"
+ "(0x4444444444), (0x5555555555), (0x6666666666), (0x7777777777), (0x8888888888), (0x9999999999), (0xaaaaaaaaaa),"
+ "(0xbbbbbbbbbb), (0xcccccccccc), (0xdddddddddd), (0xeeeeeeeeee), (0xffffffffff)");
this.rs = this.stmt.executeQuery("select t1.x t1x,(select x from testBug24710 t2 where t2.x=t1.x) t2x from testBug24710 t1");
assertEquals(Types.VARBINARY, this.rs.getMetaData().getColumnType(1));
assertEquals(Types.VARBINARY, this.rs.getMetaData().getColumnType(2));
this.rs = ((com.mysql.jdbc.Connection) this.conn)
.serverPrepareStatement("select t1.x t1x,(select x from testBug24710 t2 where t2.x=t1.x) t2x from testBug24710 t1").executeQuery();
assertEquals(Types.VARBINARY, this.rs.getMetaData().getColumnType(1));
assertEquals(Types.VARBINARY, this.rs.getMetaData().getColumnType(2));
}
/**
* Tests fix for BUG#25328 - BIT(> 1) is returned as java.lang.String from
* ResultSet.getObject() rather than byte[].
*
* @throws Exception
* if the test fails.
*/
public void testbug25328() throws Exception {
if (!versionMeetsMinimum(5, 0)) {
return;
}
createTable("testBug25382", "(BINARY_VAL BIT(64) NULL)");
byte[] bytearr = new byte[8];
this.pstmt = this.conn.prepareStatement("INSERT INTO testBug25382 VALUES(?)");
this.pstmt.setObject(1, bytearr, java.sql.Types.BINARY);
assertEquals(1, this.pstmt.executeUpdate());
this.pstmt.clearParameters();
this.rs = this.stmt.executeQuery("Select BINARY_VAL from testBug25382");
this.rs.next();
assertEquals(this.rs.getObject(1).getClass(), bytearr.getClass());
}
/**
* Tests fix for BUG#25517 - Statement.setMaxRows() is not effective on
* result sets materialized from cursors.
*
* @throws Exception
* if the test fails
*/
public void testBug25517() throws Exception {
Connection fetchConn = null;
Statement fetchStmt = null;
createTable("testBug25517", "(field1 int)");
StringBuilder insertBuf = new StringBuilder("INSERT INTO testBug25517 VALUES (1)");
for (int i = 0; i < 100; i++) {
insertBuf.append(",(" + i + ")");
}
this.stmt.executeUpdate(insertBuf.toString());
try {
Properties props = new Properties();
props.setProperty("useServerPrepStmts", "true");
props.setProperty("useCursorFetch", "true");
fetchConn = getConnectionWithProps(props);
fetchStmt = fetchConn.createStatement();
// int[] maxRows = new int[] {1, 4, 5, 11, 12, 13, 16, 50, 51, 52, 100};
int[] fetchSizes = new int[] { 1, 4, 10, 25, 100 };
List<Integer> maxRows = new ArrayList<Integer>();
maxRows.add(new Integer(1));
for (int i = 0; i < fetchSizes.length; i++) {
if (fetchSizes[i] != 1) {
maxRows.add(new Integer(fetchSizes[i] - 1));
}
maxRows.add(new Integer(fetchSizes[i]));
if (i != fetchSizes.length - 1) {
maxRows.add(new Integer(fetchSizes[i] + 1));
}
}
for (int fetchIndex = 0; fetchIndex < fetchSizes.length; fetchIndex++) {
fetchStmt.setFetchSize(fetchSizes[fetchIndex]);
for (int maxRowIndex = 0; maxRowIndex < maxRows.size(); maxRowIndex++) {
int maxRowsToExpect = maxRows.get(maxRowIndex).intValue();
fetchStmt.setMaxRows(maxRowsToExpect);
int rowCount = 0;
this.rs = fetchStmt.executeQuery("SELECT * FROM testBug25517");
while (this.rs.next()) {
rowCount++;
}
assertEquals(maxRowsToExpect, rowCount);
}
}
this.pstmt = fetchConn.prepareStatement("SELECT * FROM testBug25517");
for (int fetchIndex = 0; fetchIndex < fetchSizes.length; fetchIndex++) {
this.pstmt.setFetchSize(fetchSizes[fetchIndex]);
for (int maxRowIndex = 0; maxRowIndex < maxRows.size(); maxRowIndex++) {
int maxRowsToExpect = maxRows.get(maxRowIndex).intValue();
this.pstmt.setMaxRows(maxRowsToExpect);
int rowCount = 0;
this.rs = this.pstmt.executeQuery();
while (this.rs.next()) {
rowCount++;
}
assertEquals(maxRowsToExpect, rowCount);
}
}
} finally {
if (fetchStmt != null) {
fetchStmt.close();
}
if (fetchConn != null) {
fetchConn.close();
}
}
}
/**
* Tests fix for BUG#25787 - java.util.Date should be serialized for
* PreparedStatement.setObject().
*
* We add a new configuration option "treatUtilDateAsTimestamp", which is
* false by default, as (1) We already had specific behavior to treat
* java.util.Date as a java.sql.Timestamp because it's useful to many folks,
* and (2) that behavior will very likely be in JDBC-post-4.0 as a
* requirement.
*
* @throws Exception
* if the test fails.
*/
public void testBug25787() throws Exception {
createTable("testBug25787", "(MY_OBJECT_FIELD BLOB)");
Connection deserializeConn = null;
Properties props = new Properties();
props.setProperty("autoDeserialize", "true");
props.setProperty("treatUtilDateAsTimestamp", "false");
deserializeConn = getConnectionWithProps(props);
this.pstmt = deserializeConn.prepareStatement("INSERT INTO testBug25787 (MY_OBJECT_FIELD) VALUES (?)");
java.util.Date dt = new java.util.Date();
this.pstmt.setObject(1, dt);
this.pstmt.execute();
this.rs = deserializeConn.createStatement().executeQuery("SELECT MY_OBJECT_FIELD FROM testBug25787");
this.rs.next();
assertEquals("java.util.Date", this.rs.getObject(1).getClass().getName());
assertEquals(dt, this.rs.getObject(1));
}
public void testTruncationDisable() throws Exception {
Properties props = new Properties();
props.setProperty("jdbcCompliantTruncation", "false");
Connection truncConn = null;
truncConn = getConnectionWithProps(props);
this.rs = truncConn.createStatement().executeQuery("SELECT " + Long.MAX_VALUE);
this.rs.next();
this.rs.getInt(1);
}
public void testUsageAdvisorOnZeroRowResultSet() throws Exception {
Connection advisorConn = null;
Statement advisorStmt = null;
try {
Properties props = new Properties();
props.setProperty("useUsageAdvisor", "true");
advisorConn = getConnectionWithProps(props);
advisorStmt = advisorConn.createStatement();
StandardLogger.startLoggingToBuffer();
this.rs = advisorStmt.executeQuery("SELECT 1, 2 LIMIT 0");
this.rs.next();
this.rs.close();
advisorStmt.close();
advisorStmt = advisorConn.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY);
advisorStmt.setFetchSize(Integer.MIN_VALUE);
this.rs = advisorStmt.executeQuery("SELECT 1, 2 LIMIT 0");
this.rs.next();
this.rs.close();
if (versionMeetsMinimum(5, 0, 2)) {
advisorConn.close();
props.setProperty("useCursorFetch", "true");
props.setProperty("useServerPrepStmts", "true");
advisorConn = getConnectionWithProps(props);
advisorStmt = advisorConn.createStatement();
advisorStmt.setFetchSize(1);
this.rs = advisorStmt.executeQuery("SELECT 1, 2 LIMIT 0");
StandardLogger.startLoggingToBuffer();
this.rs.next();
this.rs.close();
}
assertEquals(-1, StandardLogger.getBuffer().toString()
.indexOf(Messages.getString("ResultSet.Possible_incomplete_traversal_of_result_set").substring(0, 10)));
} finally {
StandardLogger.dropBuffer();
if (advisorStmt != null) {
advisorStmt.close();
}
if (advisorConn != null) {
advisorConn.close();
}
}
}
public void testBug25894() throws Exception {
createTable("bug25894",
"(tinyInt_type TINYINT DEFAULT 1, tinyIntU_type TINYINT UNSIGNED DEFAULT 1, smallInt_type SMALLINT DEFAULT 1,"
+ "smallIntU_type SMALLINT UNSIGNED DEFAULT 1, mediumInt_type MEDIUMINT DEFAULT 1, mediumIntU_type MEDIUMINT UNSIGNED DEFAULT 1,"
+ "int_type INT DEFAULT 1, intU_type INT UNSIGNED DEFAULT 1, bigInt_type BIGINT DEFAULT 1, bigIntU_type BIGINT UNSIGNED DEFAULT 1);");
this.stmt.executeUpdate("INSERT INTO bug25894 VALUES (-1,1,-1,1,-1,1,-1,1,-1,1)");
this.rs = this.stmt.executeQuery("SELECT * FROM bug25894");
java.sql.ResultSetMetaData tblMD = this.rs.getMetaData();
this.rs.first();
for (int i = 1; i < tblMD.getColumnCount() + 1; i++) {
String typesName = "";
switch (tblMD.getColumnType(i)) {
case Types.INTEGER:
typesName = "Types.INTEGER";
break;
case Types.TINYINT:
typesName = "Types.TINYINT";
break;
case Types.BIGINT:
typesName = "Types.BIGINT";
break;
case Types.SMALLINT:
typesName = "Types.SMALLINT";
break;
}
System.out.println(i + " .fld: " + tblMD.getColumnName(i) + "T: " + typesName + ", MDC: " + tblMD.getColumnClassName(i) + " "
+ tblMD.getColumnTypeName(i) + " , getObj: " + this.rs.getObject(i).getClass());
}
}
/**
* Tests fix for BUG#26173 - fetching rows via cursor retrieves corrupted
* data.
*
* @throws Exception
* if the test fails.
*/
public void testBug26173() throws Exception {
if (!versionMeetsMinimum(5, 0)) {
return;
}
createTable("testBug26173", "(fkey int, fdate date, fprice decimal(15, 2), fdiscount decimal(5,3))", "InnoDB");
this.stmt.executeUpdate("insert into testBug26173 values (1, '2007-02-23', 99.9, 0.02)");
Connection fetchConn = null;
Statement stmtRead = null;
Properties props = new Properties();
props.setProperty("useServerPrepStmts", "true");
props.setProperty("useCursorFetch", "true");
try {
fetchConn = getConnectionWithProps(props);
stmtRead = fetchConn.createStatement();
stmtRead.setFetchSize(1000);
this.rs = stmtRead.executeQuery("select extract(year from fdate) as fyear, fprice * (1 - fdiscount) as fvalue from testBug26173");
assertTrue(this.rs.next());
assertEquals(2007, this.rs.getInt(1));
assertEquals("97.90200", this.rs.getString(2));
} finally {
if (stmtRead != null) {
stmtRead.close();
}
if (fetchConn != null) {
fetchConn.close();
}
}
}
/**
* Tests fix for BUG#26789 - fast date/time parsing doesn't take into
* account 00:00:00 as a legal value.
*
* @throws Exception
* if the test fails
*/
public void testBug26789() throws Exception {
this.rs = this.stmt.executeQuery("SELECT '00:00:00'");
this.rs.next();
this.rs.getTime(1);
assertEquals("00:00:00", this.rs.getTime(1).toString());
assertEquals("1970-01-01 00:00:00.0", this.rs.getTimestamp(1).toString());
assertEquals("1970-01-01", this.rs.getDate(1).toString());
this.rs.close();
this.rs = this.stmt.executeQuery("SELECT '00/00/0000 00:00:00'");
this.rs.next();
try {
this.rs.getTime(1);
} catch (SQLException sqlEx) {
assertEquals(SQLError.SQL_STATE_ILLEGAL_ARGUMENT, sqlEx.getSQLState());
}
try {
this.rs.getTimestamp(1);
} catch (SQLException sqlEx) {
assertEquals(SQLError.SQL_STATE_ILLEGAL_ARGUMENT, sqlEx.getSQLState());
}
try {
this.rs.getDate(1);
} catch (SQLException sqlEx) {
assertEquals(SQLError.SQL_STATE_ILLEGAL_ARGUMENT, sqlEx.getSQLState());
}
}
/**
* Tests fix for BUG#27317 - column index < 1 returns misleading error
* message.
*
* @throws Exception
* if the test fails.
*/
public void testBug27317() throws Exception {
this.rs = this.stmt.executeQuery("SELECT NULL");
this.rs.next();
String messageLowBound = null;
Method[] getterMethods = ResultSet.class.getMethods();
Integer zeroIndex = new Integer(0);
Integer twoIndex = new Integer(2);
for (int i = 0; i < getterMethods.length; i++) {
Class<?>[] parameterTypes = getterMethods[i].getParameterTypes();
if (getterMethods[i].getName().startsWith("get") && parameterTypes.length == 1
&& (parameterTypes[0].equals(Integer.TYPE) || parameterTypes[0].equals(Integer.class))) {
if (getterMethods[i].getName().equals("getRowId")) {
continue; // we don't support this yet, ever?
}
try {
getterMethods[i].invoke(this.rs, new Object[] { zeroIndex });
} catch (InvocationTargetException invokeEx) {
Throwable ex = invokeEx.getTargetException();
if (ex != null && ex instanceof SQLException) {
SQLException sqlEx = (SQLException) ex;
assertEquals(SQLError.SQL_STATE_ILLEGAL_ARGUMENT, sqlEx.getSQLState());
messageLowBound = sqlEx.getMessage();
} else {
throw new RuntimeException(Util.stackTraceToString(ex), ex);
}
}
String messageHighBound = null;
try {
getterMethods[i].invoke(this.rs, new Object[] { twoIndex });
} catch (InvocationTargetException invokeEx) {
Throwable ex = invokeEx.getTargetException();
if (ex != null && ex instanceof SQLException) {
SQLException sqlEx = (SQLException) ex;
assertEquals(SQLError.SQL_STATE_ILLEGAL_ARGUMENT, sqlEx.getSQLState());
messageHighBound = sqlEx.getMessage();
} else {
throw new RuntimeException(ex);
}
}
assertNotNull("Exception message null for method " + getterMethods[i], messageHighBound);
assertNotNull("Exception message null for method " + getterMethods[i], messageLowBound);
assertTrue(!messageHighBound.equals(messageLowBound));
}
}
}
/**
* Tests fix for BUG#28085 - Need more useful error messages for diagnostics
* when the driver thinks a result set isn't updatable.
*
* @throws Exception
* if the tests fail.
*/
public void testBug28085() throws Exception {
Statement updStmt = null;
try {
createTable("testBug28085_oneKey", "(pk int primary key not null, field2 varchar(3))");
this.stmt.executeUpdate("INSERT INTO testBug28085_oneKey (pk, field2) VALUES (1, 'abc')");
createTable("testBug28085_multiKey", "(pk1 int not null, pk2 int not null, field2 varchar(3), primary key (pk1, pk2))");
this.stmt.executeUpdate("INSERT INTO testBug28085_multiKey VALUES (1,2,'abc')");
createTable("testBug28085_noKey", "(field1 varchar(3) not null)");
this.stmt.executeUpdate("INSERT INTO testBug28085_noKey VALUES ('abc')");
updStmt = this.conn.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE);
this.rs = updStmt.executeQuery("SELECT field2 FROM testBug28085_oneKey");
exerciseUpdatableResultSet(1, "NotUpdatableReason.4");
this.rs = updStmt.executeQuery("SELECT pk1, field2 FROM testBug28085_multiKey");
this.rs.next();
exerciseUpdatableResultSet(1, "NotUpdatableReason.7");
this.rs = updStmt.executeQuery("SELECT t1.field2, t1.pk, t2.pk1 FROM testBug28085_oneKey t1 INNER JOIN testBug28085_multiKey t2 ON t1.pk = t2.pk1");
exerciseUpdatableResultSet(1, "NotUpdatableReason.0");
this.rs = updStmt.executeQuery("SELECT field1 FROM testBug28085_noKey");
exerciseUpdatableResultSet(1, "NotUpdatableReason.5");
this.rs = updStmt.executeQuery("SELECT 1");
exerciseUpdatableResultSet(1, "NotUpdatableReason.3");
this.rs = updStmt.executeQuery("SELECT pk1, pk2, LEFT(field2, 2) FROM testBug28085_multiKey");
this.rs.next();
exerciseUpdatableResultSet(1, "NotUpdatableReason.3");
} finally {
if (updStmt != null) {
updStmt.close();
}
}
}
private void exerciseUpdatableResultSet(int columnUpdateIndex, String messageToCheck) throws Exception {
this.rs.next();
try {
this.rs.updateString(columnUpdateIndex, "def");
} catch (SQLException sqlEx) {
checkUpdatabilityMessage(sqlEx, messageToCheck);
}
try {
this.rs.moveToInsertRow();
} catch (SQLException sqlEx) {
checkUpdatabilityMessage(sqlEx, messageToCheck);
}
try {
this.rs.deleteRow();
} catch (SQLException sqlEx) {
checkUpdatabilityMessage(sqlEx, messageToCheck);
}
this.rs.close();
}
private void checkUpdatabilityMessage(SQLException sqlEx, String messageToCheck) throws Exception {
String message = sqlEx.getMessage();
assertNotNull(message);
String localizedMessage = Messages.getString(messageToCheck);
assertTrue("Didn't find required message component '" + localizedMessage + "', instead found:\n\n" + message, message.indexOf(localizedMessage) != -1);
}
public void testBug24886() throws Exception {
Properties props = new Properties();
props.setProperty("blobsAreStrings", "true");
Connection noBlobConn = getConnectionWithProps(props);
createTable("testBug24886", "(sepallength double, sepalwidth double, petallength double, petalwidth double, Class mediumtext, fy TIMESTAMP)");
noBlobConn.createStatement().executeUpdate("INSERT INTO testBug24886 VALUES (1,2,3,4,'1234', now()),(5,6,7,8,'12345678', now())");
this.rs = noBlobConn.createStatement()
.executeQuery("SELECT concat(Class,petallength), COUNT(*) FROM `testBug24886` GROUP BY `concat(Class,petallength)`");
this.rs.next();
assertEquals("java.lang.String", this.rs.getObject(1).getClass().getName());
props.clear();
props.setProperty("functionsNeverReturnBlobs", "true");
noBlobConn = getConnectionWithProps(props);
this.rs = noBlobConn.createStatement()
.executeQuery("SELECT concat(Class,petallength), COUNT(*) FROM `testBug24886` GROUP BY `concat(Class,petallength)`");
this.rs.next();
if (versionMeetsMinimum(4, 1)) {
assertEquals("java.lang.String", this.rs.getObject(1).getClass().getName());
}
}
/**
* Tests fix for BUG#30664. Note that this fix only works for MySQL server
* 5.0.25 and newer, since earlier versions didn't consistently return
* correct metadata for functions, and thus results from subqueries and
* functions were indistinguishable from each other, leading to type-related
* bugs.
*
* @throws Exception
*/
public void testBug30664() throws Exception {
if (!versionMeetsMinimum(5, 0, 25)) {
return;
}
createTable("testBug30664_1", "(id int)");
createTable("testBug30664_2", "(id int, binaryvalue varbinary(255))");
this.stmt.executeUpdate("insert into testBug30664_1 values (1),(2),(3)");
this.stmt.executeUpdate("insert into testBug30664_2 values (1,'๏ฟฝ๏ฟฝ๏ฟฝ'),(2,'๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ'),(3,' ๏ฟฝ๏ฟฝ๏ฟฝ')");
this.rs = this.stmt.executeQuery("select testBug30664_1.id, (select testBug30664_2.binaryvalue from testBug30664_2 "
+ "where testBug30664_2.id=testBug30664_1.id) as value from testBug30664_1");
ResultSetMetaData tblMD = this.rs.getMetaData();
for (int i = 1; i < tblMD.getColumnCount() + 1; i++) {
switch (i) {
case 1:
assertEquals("INT", tblMD.getColumnTypeName(i).toUpperCase());
break;
case 2:
assertEquals("VARBINARY", tblMD.getColumnTypeName(i).toUpperCase());
break;
}
}
}
/**
* Tests fix for BUG#30851, NPE with null column values when
* "padCharsWithSpace" is set to "true".
*
* @throws Exception
*/
public void testbug30851() throws Exception {
Connection padConn = getConnectionWithProps("padCharsWithSpace=true");
try {
createTable("bug30851", "(CharCol CHAR(10) DEFAULT NULL)");
this.stmt.execute("INSERT INTO bug30851 VALUES (NULL)");
this.rs = padConn.createStatement().executeQuery("SELECT * FROM bug30851");
this.rs.first();
String strvar = this.rs.getString(1);
assertNull("Should be null", strvar);
} finally {
if (padConn != null) {
padConn.close();
}
}
}
/**
* Tests fix for Bug#33678 - Multiple result sets not supported in
* "streaming" mode. This fix covers both normal statements, and stored
* procedures, with the exception of stored procedures with registered
* OUTPUT parameters, which can't be used at all with "streaming" result
* sets.
*
* @throws Exception
*/
public void testBug33678() throws Exception {
if (!versionMeetsMinimum(4, 1)) {
return;
}
createTable("testBug33678", "(field1 INT)");
Connection multiConn = getConnectionWithProps("allowMultiQueries=true");
Statement multiStmt = multiConn.createStatement();
try {
multiStmt.setFetchSize(Integer.MIN_VALUE);
multiStmt.execute("SELECT 1 UNION SELECT 2; INSERT INTO testBug33678 VALUES (1); UPDATE testBug33678 set field1=2; "
+ "INSERT INTO testBug33678 VALUES(3); UPDATE testBug33678 set field1=2 WHERE field1=3; UPDATE testBug33678 set field1=2; SELECT 1");
this.rs = multiStmt.getResultSet();
this.rs.next();
assertEquals("1", this.rs.getString(1));
assertFalse(multiStmt.getMoreResults());
assertEquals(1, multiStmt.getUpdateCount());
assertFalse(multiStmt.getMoreResults());
assertEquals(1, multiStmt.getUpdateCount());
assertFalse(multiStmt.getMoreResults());
assertEquals(1, multiStmt.getUpdateCount());
assertFalse(multiStmt.getMoreResults());
assertEquals(1, multiStmt.getUpdateCount());
assertFalse(multiStmt.getMoreResults());
assertEquals(2, multiStmt.getUpdateCount());
assertTrue(multiStmt.getMoreResults());
this.rs = multiStmt.getResultSet();
this.rs.next();
assertEquals("1", this.rs.getString(1));
this.rs.close();
multiStmt.execute("INSERT INTO testBug33678 VALUES (1); INSERT INTO testBug33678 VALUES (1), (2); INSERT INTO testBug33678 VALUES (1), (2), (3)");
assertEquals(1, multiStmt.getUpdateCount());
assertFalse(multiStmt.getMoreResults());
assertEquals(2, multiStmt.getUpdateCount());
assertFalse(multiStmt.getMoreResults());
assertEquals(3, multiStmt.getUpdateCount());
assertFalse(multiStmt.getMoreResults() && multiStmt.getUpdateCount() == -1);
this.rs.close();
if (versionMeetsMinimum(5, 0)) {
createProcedure("spBug33678", "() BEGIN SELECT 1; SELECT 2; SELECT 3; END");
CallableStatement cStmt = multiConn.prepareCall("{CALL spBug33678()}");
cStmt.setFetchSize(Integer.MIN_VALUE);
cStmt.execute();
for (int i = 0; i < 2; i++) {
if (i != 0) {
assertTrue(cStmt.getMoreResults());
}
this.rs = cStmt.getResultSet();
assertTrue(this.rs.next());
assertEquals(i + 1, this.rs.getInt(1));
}
}
} finally {
multiStmt.close();
multiConn.close();
}
}
public void testBug33162() throws Exception {
if (!versionMeetsMinimum(5, 0)) {
return;
}
this.rs = this.stmt.executeQuery("select now() from dual where 1=0");
this.rs.next();
try {
this.rs.getTimestamp(1); // fails
} catch (SQLException sqlEx) {
assertEquals(SQLError.SQL_STATE_GENERAL_ERROR, sqlEx.getSQLState());
}
}
public void testBug34762() throws Exception {
createTable("testBug34762", "(field1 TIMESTAMP)");
int numRows = 10;
for (int i = 0; i < numRows; i++) {
this.stmt.executeUpdate("INSERT INTO testBug34762 VALUES (NOW())");
}
this.rs = this.stmt.executeQuery("SELECT field1 FROM testBug34762");
while (this.rs.next()) {
this.rs.getTimestamp(1);
}
this.rs = this.stmt.executeQuery("SELECT field1 FROM testBug34762");
for (int i = 1; i <= numRows; i++) {
this.rs.absolute(i);
this.rs.getTimestamp(1);
}
this.rs = this.stmt.executeQuery("SELECT field1 FROM testBug34762");
this.rs.last();
this.rs.getTimestamp(1);
while (this.rs.previous()) {
this.rs.getTimestamp(1);
}
this.rs = this.stmt.executeQuery("SELECT field1 FROM testBug34762");
this.rs.last();
while (this.rs.relative(-1)) {
this.rs.getTimestamp(1);
}
this.rs = this.stmt.executeQuery("SELECT field1 FROM testBug34762");
this.rs.beforeFirst();
while (this.rs.relative(1)) {
this.rs.getTimestamp(1);
}
}
/**
* @deprecated because we use deprecated methods
*/
@Deprecated
public void testBug34913() throws Exception {
Timestamp ts = new Timestamp(new Date(109, 5, 1).getTime());
this.pstmt = ((com.mysql.jdbc.Connection) this.conn).serverPrepareStatement("SELECT 'abcdefghij', ?");
this.pstmt.setTimestamp(1, ts);
this.rs = this.pstmt.executeQuery();
this.rs.next();
assertTrue(this.rs.getTimestamp(2).getMonth() == 5);
assertTrue(this.rs.getTimestamp(2).getDate() == 1);
}
public void testBug36051() throws Exception {
this.rs = this.stmt.executeQuery("SELECT '24:00:00'");
this.rs.next();
this.rs.getTime(1);
}
/**
* Tests fix for BUG#35610, BUG#35150. We follow the JDBC Spec here, in that
* the 4.0 behavior is correct, the JDBC-3.0 (and earlier) spec has a bug,
* but you can get the buggy behavior (allowing column names *and* labels to
* be used) by setting "useColumnNamesInFindColumn" to "true".
*
* @throws Exception
*/
public void testBug35610() throws Exception {
createTable("testBug35610", "(field1 int, field2 int, field3 int)");
this.stmt.executeUpdate("INSERT INTO testBug35610 VALUES (1, 2, 3)");
exercise35610(this.stmt, false);
exercise35610(getConnectionWithProps("useColumnNamesInFindColumn=true").createStatement(), true);
}
private void exercise35610(Statement configuredStmt, boolean force30Behavior) throws Exception {
this.rs = configuredStmt.executeQuery("SELECT field1 AS f1, field2 AS f2, field3 FROM testBug35610");
ResultSetMetaData rsmd = this.rs.getMetaData();
assertEquals("field1", rsmd.getColumnName(1));
assertEquals("field2", rsmd.getColumnName(2));
assertEquals("f1", rsmd.getColumnLabel(1));
assertEquals("f2", rsmd.getColumnLabel(2));
assertEquals("field3", rsmd.getColumnName(3));
assertEquals("field3", rsmd.getColumnLabel(3));
this.rs.next();
// From ResultSet.html#getInt(java.lang.String) in JDBC-4.0
//
// Retrieves the value of the designated column in the current row of
// this ResultSet
// object as an int in the Java programming language.
//
// Parameters:
// columnLabel - the label for the column specified with the SQL AS
// clause. If the
// SQL AS clause was not specified, then the label is the name of the
// column
//
assertEquals(1, this.rs.getInt("f1"));
assertEquals(2, this.rs.getInt("f2"));
assertEquals(3, this.rs.getInt("field3"));
// Pre-JDBC 4.0, some versions of the spec say "column name *or* label"
// for the column name argument...
if (force30Behavior) {
assertEquals(1, this.rs.getInt("field1"));
assertEquals(2, this.rs.getInt("field2"));
}
if (!force30Behavior) {
try {
this.rs.findColumn("field1");
fail("findColumn(\"field1\" should have failed with an exception");
} catch (SQLException sqlEx) {
// expected
}
try {
this.rs.findColumn("field2");
fail("findColumn(\"field2\" should have failed with an exception");
} catch (SQLException sqlEx) {
// expected
}
}
}
/**
* Tests fix for BUG#39911 - We don't retrieve nanos correctly when
* -parsing- a string for a TIMESTAMP.
*/
public void testBug39911() throws Exception {
this.rs = this.stmt.executeQuery("SELECT '2008-09-26 15:47:20.797283'");
this.rs.next();
checkTimestampNanos();
this.rs = ((com.mysql.jdbc.Connection) this.conn).serverPrepareStatement("SELECT '2008-09-26 15:47:20.797283'").executeQuery();
this.rs.next();
checkTimestampNanos();
this.rs.close();
}
private void checkTimestampNanos() throws SQLException {
Timestamp ts = this.rs.getTimestamp(1);
assertEquals(797283000, ts.getNanos());
Calendar cal = Calendar.getInstance();
cal.setTime(ts);
assertEquals(797, cal.get(Calendar.MILLISECOND));
}
public void testBug38387() throws Exception {
Connection noBlobConn = null;
Properties props = new Properties();
props.put("functionsNeverReturnBlobs", "true");// toggle, no change
noBlobConn = getConnectionWithProps(props);
try {
Statement noBlobStmt = noBlobConn.createStatement();
this.rs = noBlobStmt.executeQuery("SELECT TRIM(1) AS Rslt");
while (this.rs.next()) {
assertEquals("1", this.rs.getString("Rslt"));
assertEquals("java.lang.String", this.rs.getObject(1).getClass().getName());
}
} finally {
noBlobConn.close();
}
}
public void testRanges() throws Exception {
createTable("testRanges", "(int_field INT, long_field BIGINT, double_field DOUBLE, string_field VARCHAR(32))");
this.pstmt = this.conn.prepareStatement("INSERT INTO testRanges VALUES (?,?,?, ?)");
this.pstmt.setInt(1, Integer.MIN_VALUE);
this.pstmt.setLong(2, Long.MIN_VALUE);
this.pstmt.setDouble(3, Long.MAX_VALUE + 1D);
this.pstmt.setString(4, "1E4");
this.pstmt.executeUpdate();
checkRangeMatrix(this.conn);
checkRangeMatrix(getConnectionWithProps("useFastIntParsing=false"));
}
private void checkRangeMatrix(Connection c) throws Exception {
this.rs = c.createStatement().executeQuery("SELECT int_field, long_field, double_field, string_field FROM testRanges");
this.rs.next();
checkRanges();
this.rs.close();
this.pstmt = ((com.mysql.jdbc.Connection) c).serverPrepareStatement("SELECT int_field, long_field, double_field, string_field FROM testRanges");
this.rs = this.pstmt.executeQuery();
this.rs.next();
checkRanges();
this.rs.close();
this.pstmt.setFetchSize(Integer.MIN_VALUE);
this.rs = this.pstmt.executeQuery();
this.rs.next();
checkRanges();
this.rs.close();
this.pstmt = ((com.mysql.jdbc.Connection) c).clientPrepareStatement("SELECT int_field, long_field, double_field, string_field FROM testRanges");
this.rs = this.pstmt.executeQuery();
this.rs.next();
checkRanges();
this.rs.close();
this.pstmt.setFetchSize(Integer.MIN_VALUE);
this.rs = this.pstmt.executeQuery();
this.rs.next();
checkRanges();
this.rs.close();
}
private void checkRanges() throws SQLException {
assertEquals(Integer.MIN_VALUE, this.rs.getInt(1));
try {
this.rs.getInt(2);
} catch (SQLException sqlEx) {
assertTrue(sqlEx.getMessage().indexOf(" in column '2'") != -1);
}
assertEquals(Long.MIN_VALUE, this.rs.getLong(2));
try {
this.rs.getLong(3);
} catch (SQLException sqlEx) {
assertTrue(sqlEx.getMessage().indexOf(" in column '3'") != -1);
}
assertEquals(10000, this.rs.getInt(4));
assertEquals(10000, this.rs.getLong(4));
}
/**
* Bug #41484 Accessing fields by name after the ResultSet is closed throws
* NullPointerException.
*/
public void testBug41484() throws Exception {
try {
this.rs = this.stmt.executeQuery("select 1 as abc");
this.rs.next();
this.rs.getString("abc");
this.rs.close();
this.rs.getString("abc");
} catch (SQLException ex) {
/* expected */
assertEquals(0, ex.getErrorCode());
assertEquals("S1000", ex.getSQLState());
}
}
public void testBug41484_2() throws Exception {
Connection cachedRsmdConn = getConnectionWithProps("cacheResultSetMetadata=true");
try {
createTable("bug41484", "(id int not null primary key, day date not null) DEFAULT CHARSET=utf8");
this.pstmt = cachedRsmdConn.prepareStatement("INSERT INTO bug41484(id, day) values(1, ?)");
this.pstmt.setInt(1, 20080509);
assertEquals(1, this.pstmt.executeUpdate());
this.pstmt.close();
this.pstmt = cachedRsmdConn.prepareStatement("SELECT * FROM bug41484 WHERE id = ?");
this.pstmt.setInt(1, 1);
this.rs = this.pstmt.executeQuery();
this.rs.first();
this.rs.getString("day");
this.rs.close();
this.pstmt.close();
this.pstmt = cachedRsmdConn.prepareStatement("INSERT INTO bug41484(id, day) values(2, ?)");
this.pstmt.setInt(1, 20090212);
assertEquals(1, this.pstmt.executeUpdate());
this.pstmt.close();
this.pstmt = cachedRsmdConn.prepareStatement("SELECT * FROM bug41484 WHERE id = ?");
this.pstmt.setInt(1, 2);
this.rs = this.pstmt.executeQuery();
this.rs.first();
assertEquals(this.rs.getString(1), "2");
this.rs.getString("day");
this.rs.close();
this.pstmt.close();
} finally {
cachedRsmdConn.close();
}
}
public void testBug27431() throws Exception {
createTable("bug27431", "(`ID` int(20) NOT NULL auto_increment, `Name` varchar(255) NOT NULL default '', PRIMARY KEY (`ID`))");
this.stmt.executeUpdate("INSERT INTO bug27431 (`ID`, `Name`) VALUES (1, 'Lucho'),(2, 'Lily'),(3, 'Kiro')");
Statement updStmt = this.conn.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE);
this.rs = updStmt.executeQuery("SELECT ID, Name FROM bug27431");
while (this.rs.next()) {
this.rs.deleteRow();
}
assertEquals(0, getRowCount("bug27431"));
}
public void testBug43759() throws Exception {
createTable("testtable_bincolumn", "(bincolumn binary(8) NOT NULL, PRIMARY KEY (bincolumn))", "innodb");
String pkValue1 = "0123456789ABCD90";
String pkValue2 = "0123456789ABCD00";
// put some data in it
this.stmt.executeUpdate("INSERT INTO testtable_bincolumn (bincolumn) VALUES (unhex('" + pkValue1 + "')), (unhex('" + pkValue2 + "'))");
// cause the bug
Statement updStmt = this.conn.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE);
this.rs = updStmt.executeQuery("SELECT * FROM testtable_bincolumn WHERE bincolumn = unhex('" + pkValue1 + "')");
assertTrue(this.rs.next());
this.rs.deleteRow();
// At this point the row with pkValue1 should be deleted. We'll select
// it back to see.
// If the row comes back, the testcase has failed.
this.rs = this.stmt.executeQuery("SELECT * FROM testtable_bincolumn WHERE bincolumn = unhex('" + pkValue1 + "')");
assertFalse(this.rs.next());
// Now, show a case where it happens to work, because the binary data is
// different
updStmt = this.conn.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE);
this.rs = updStmt.executeQuery("SELECT * FROM testtable_bincolumn WHERE bincolumn = unhex('" + pkValue2 + "')");
assertTrue(this.rs.next());
this.rs.deleteRow();
this.rs = this.stmt.executeQuery("SELECT * FROM testtable_bincolumn WHERE bincolumn = unhex('" + pkValue2 + "')");
assertFalse(this.rs.next());
}
public void testBug32525() throws Exception {
Connection testConn = this.conn;
Connection noStringSyncConn = getConnectionWithProps("noDatetimeStringSync=true");
try {
if (versionMeetsMinimum(5, 7, 4)) {
Properties props = new Properties();
props.put("jdbcCompliantTruncation", "false");
if (versionMeetsMinimum(5, 7, 5)) {
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.stmt = testConn.createStatement();
}
createTable("bug32525", "(field1 date, field2 timestamp)");
this.stmt.executeUpdate("INSERT INTO bug32525 VALUES ('0000-00-00', '0000-00-00 00:00:00')");
this.rs = ((com.mysql.jdbc.Connection) noStringSyncConn).serverPrepareStatement("SELECT field1, field2 FROM bug32525").executeQuery();
this.rs.next();
assertEquals("0000-00-00", this.rs.getString(1));
assertEquals("0000-00-00 00:00:00", this.rs.getString(2));
} finally {
noStringSyncConn.close();
if (testConn != this.conn) {
testConn.close();
}
}
}
public void testBug49797() throws Exception {
createTable("testBug49797", "(`Id` int(2) not null auto_increment, `abc` char(50) , PRIMARY KEY (`Id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8");
this.stmt.executeUpdate("INSERT into testBug49797 VALUES (1,'1'),(2,'2'),(3,'3')");
assertEquals(3, getRowCount("testBug49797"));
Statement updStmt = this.conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
try {
this.rs = updStmt.executeQuery("SELECT * FROM testBug49797");
while (this.rs.next()) {
this.rs.deleteRow();
}
assertEquals(0, getRowCount("testBug49797"));
} finally {
updStmt.close();
}
}
public void testBug49516() throws Exception {
CachedRowSet crs;
createTable("bug49516", "(`testingID` INT NOT NULL AUTO_INCREMENT PRIMARY KEY, `firstName` TEXT NOT NULL) CHARACTER SET utf8;");
this.stmt.executeUpdate("insert into bug49516 set firstName ='John'");
this.rs = this.stmt.executeQuery("select firstName as 'first person' from bug49516");
this.rs.first();
assertEquals("John", this.rs.getString("first person"));
// this.rs.close();
// this.stmt.close();
this.rs = this.stmt.executeQuery("select firstName as 'first person' from bug49516");
crs = (CachedRowSet) Class.forName("com.sun.rowset.CachedRowSetImpl").newInstance();
crs.populate(this.rs);
crs.first();
assertEquals("John", crs.getString(1));
}
public void testBug48820() throws Exception {
CachedRowSet crs;
Connection noBlobsConn = getConnectionWithProps("functionsNeverReturnBlobs=true");
if (versionMeetsMinimum(5, 6, 6)) {
this.rs = noBlobsConn.createStatement().executeQuery("SHOW VARIABLES LIKE 'old_passwords'");
if (this.rs.next()) {
if (this.rs.getInt(2) == 2) {
System.out.println("Skip testBug48820 due to SHA-256 password hashing.");
return;
}
}
}
this.rs = noBlobsConn.createStatement().executeQuery("SELECT PASSWORD ('SOMETHING')");
this.rs.first();
String fromPlainResultSet = this.rs.getString(1);
this.rs = noBlobsConn.createStatement().executeQuery("SELECT PASSWORD ('SOMETHING')");
crs = (CachedRowSet) Class.forName("com.sun.rowset.CachedRowSetImpl").newInstance();
crs.populate(this.rs);
crs.first();
assertEquals(fromPlainResultSet, crs.getString(1));
}
/**
* Bug #60313 bug in com.mysql.jdbc.ResultSetRow.getTimestampFast
*/
public void testBug60313() throws Exception {
this.stmt.execute("select repeat('Z', 3000), now() + interval 1 microsecond");
this.rs = this.stmt.getResultSet();
assertTrue(this.rs.next());
assertEquals(1000, this.rs.getTimestamp(2).getNanos());
this.rs.close();
this.pstmt = this.conn.prepareStatement("select repeat('Z', 3000), now() + interval 1 microsecond");
this.rs = this.pstmt.executeQuery();
assertTrue(this.rs.next());
assertEquals(1000, this.rs.getTimestamp(2).getNanos());
this.rs.close();
Properties props = new Properties();
props.setProperty("useServerPrepStmts", "true");
Connection sspsCon = getConnectionWithProps(props);
PreparedStatement ssPStmt = sspsCon.prepareStatement("select repeat('Z', 3000), now() + interval 1 microsecond");
this.rs = ssPStmt.executeQuery();
assertTrue(this.rs.next());
assertEquals(1000, this.rs.getTimestamp(2).getNanos());
this.rs.close();
ssPStmt.close();
sspsCon.close();
}
/**
* Tests fix for BUG#65503 - ResultSets created by PreparedStatement.getGeneratedKeys() are not close()d.
*
* To get results quicker add option -Xmx10M, with this option I got an out of memory failure after about 6500 passes.
* Since it's a very long test it is disabled by default.
*
* @throws Exception
* if the test fails.
*/
public void testBug65503() throws Exception {
if (!this.DISABLED_testBug65503) {
createTable("testBug65503", "(id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, value INTEGER)");
PreparedStatement pStmt = this.conn.prepareStatement("INSERT INTO testBug65503 (value) VALUES (?)", Statement.RETURN_GENERATED_KEYS),
stmt2 = this.conn.prepareStatement("SELECT * FROM testBug65503 LIMIT 6");
for (int i = 0; i < 100000000; ++i) {
pStmt.setString(1, "48");
pStmt.executeUpdate();
ResultSet result = pStmt.getGeneratedKeys();
result.next();
result.getInt(1);
result.next();
result = stmt2.executeQuery();
while (result.next()) {
}
if (i % 500 == 0) {
System.out.printf("free-mem: %d, id: %d\n", Runtime.getRuntime().freeMemory() / 1024 / 1024, i);
this.conn.createStatement().execute("TRUNCATE TABLE testBug65503");
}
}
}
}
/**
* Tests fix for BUG#64204 - ResultSet.close hangs if streaming query is killed
*
* @throws Exception
*/
public void testBug64204() throws Exception {
final Properties props = new Properties();
props.setProperty("socketTimeout", "30000");
this.conn = getConnectionWithProps(props);
this.conn.setCatalog("information_schema");
this.conn.setAutoCommit(true);
this.stmt = this.conn.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY);
this.stmt.setFetchSize(Integer.MIN_VALUE); // turn on streaming mode
this.rs = this.stmt.executeQuery("SELECT CONNECTION_ID()");
this.rs.next();
final String connectionId = this.rs.getString(1);
this.rs.close();
System.out.println("testBug64204.main: PID is " + connectionId);
ScheduledExecutorService es = Executors.newSingleThreadScheduledExecutor();
es.schedule(new Callable<Boolean>() {
public Boolean call() throws Exception {
boolean res = false;
Connection con2 = getConnectionWithProps(props);
con2.setCatalog("information_schema");
con2.setAutoCommit(true);
Statement st2 = con2.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY);
st2.setFetchSize(Integer.MIN_VALUE); // turn on streaming mode
try {
System.out.println("testBug64204.slave: Running KILL QUERY " + connectionId);
st2.execute("KILL QUERY " + connectionId + ";");
Thread.sleep(5000);
System.out.println("testBug64204.slave: parent thread should be hung now!!!");
res = true;
} finally {
st2.close();
con2.close();
}
System.out.println("testBug64204.slave: Done.");
return res;
}
}, 10, TimeUnit.SECONDS);
try {
this.rs = this.stmt.executeQuery("SELECT sleep(5) FROM character_sets LIMIT 10");
int rows = 0;
int columnCount = this.rs.getMetaData().getColumnCount();
System.out.println("testBug64204.main: fetched result set, " + columnCount + " columns");
long totalDataCount = 0;
while (this.rs.next()) {
rows++;
//get row size
long rowSize = 0;
for (int i = 0; i < columnCount; i++) {
String s = this.rs.getString(i + 1);
if (s != null) {
rowSize += s.length();
}
}
totalDataCount += rowSize;
}
System.out.println("testBug64204.main: character_sets total rows " + rows + ", data " + totalDataCount);
} catch (SQLException se) {
assertEquals("ER_QUERY_INTERRUPTED expected.", "70100", se.getSQLState());
if (!"70100".equals(se.getSQLState())) {
throw se;
}
}
}
/**
* Bug #45757 - ResultSet.updateRow should throw SQLException when cursor is on insert row
*/
public void testBug45757() throws SQLException {
createTable("bug45757", "(id INTEGER NOT NULL PRIMARY KEY)");
this.stmt = this.conn.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE);
this.rs = this.stmt.executeQuery("select id from bug45757");
this.rs.moveToInsertRow();
try {
this.rs.updateRow();
fail("updateRow() should throw an exception, not allowed to be called on insert row");
} catch (SQLException sqlEx) {
assertTrue(sqlEx.getMessage().startsWith("Can not call updateRow() when on insert row."));
}
}
/**
* Tests fix for BUG#38252 - ResultSet.absolute(0) is not behaving according to JDBC specification.
*
* @throws Exception
* if the test fails.
*/
public void testBug38252() throws Exception {
createTable("testBug38252", "(id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY)");
this.stmt = this.conn.createStatement();
this.stmt.executeUpdate("INSERT INTO testBug38252 VALUES (NULL), (NULL)");
this.rs = this.stmt.executeQuery("SELECT * FROM testBug38252");
// test ResultSet.absolute(0) before iterating the ResultSet
assertFalse("Cursor should be moved to before the first row.", this.rs.absolute(0));
assertTrue("ResultSet's cursor should be at 'before first'.", this.rs.isBeforeFirst());
assertTrue("First row expected from ResultSet.", this.rs.next());
assertTrue("Second row expected from ResultSet.", this.rs.next());
assertFalse("No more rows expected from ResultSet.", this.rs.next());
assertTrue("ResultSet's cursor should be at 'after last'.", this.rs.isAfterLast());
// test ResultSet.absolute(0) after iterating the ResultSet
assertFalse("Cursor should be moved to before the first row.", this.rs.absolute(0));
assertTrue("ResultSet's cursor should be at 'before first'.", this.rs.isBeforeFirst());
assertTrue("First row expected from ResultSet.", this.rs.next());
assertTrue("Second row expected from ResultSet.", this.rs.next());
assertFalse("No more rows expected from ResultSet.", this.rs.next());
assertTrue("ResultSet's cursor should be at 'after last'.", this.rs.isAfterLast());
this.rs.close();
this.stmt.close();
// test ResultSet.absolute(0) with an empty ResultSet
this.stmt = this.conn.createStatement();
this.rs = this.stmt.executeQuery("SELECT * FROM testBug38252 where 0 = 1");
assertFalse("Cursor should be moved to before the first row.", this.rs.absolute(0));
}
/**
* Tests fix for Bug#67318 - SQLException thrown on already closed ResultSet
*
* @throws Exception
* if the test fails.
*/
public void testBug67318() throws Exception {
Properties props = new Properties();
props.setProperty("useServerPrepStmts", "true");
props.setProperty("exceptionInterceptors", "testsuite.regression.ResultSetRegressionTest$TestBug67318ExceptionInterceptor");
Connection c = null;
try {
c = getConnectionWithProps(props);
ExceptionInterceptorChain eic = (ExceptionInterceptorChain) ((MySQLConnection) c).getExceptionInterceptor();
TestBug67318ExceptionInterceptor ei = null;
for (Extension ext : eic.getInterceptors()) {
if (ext instanceof TestBug67318ExceptionInterceptor) {
ei = (TestBug67318ExceptionInterceptor) ext;
break;
}
}
if (ei == null) {
fail("TestBug67318ExceptionInterceptor is not found on connection");
}
Statement st1 = c.createStatement();
ResultSet rs1 = st1.executeQuery("select 1");
rs1.close();
rs1.close();
assertEquals("Operation not allowed after ResultSet closed exception shouldn't be thrown second time", 0, ei.alreadyClosedCounter);
st1.close();
st1.close();
((StatementImpl) st1).isClosed();
assertEquals("No operations allowed after statement closed exception shouldn't be thrown second time", 0, ei.alreadyClosedCounter);
PreparedStatement ps1 = c.prepareStatement("select 1");
ps1.close();
ps1.close();
assertEquals("No operations allowed after statement closed exception shouldn't be thrown second time", 0, ei.alreadyClosedCounter);
} finally {
if (c != null) {
c.close();
}
}
}
public static class TestBug67318ExceptionInterceptor implements ExceptionInterceptor {
public int alreadyClosedCounter = 0;
public void init(com.mysql.jdbc.Connection conn, Properties props) throws SQLException {
}
public void destroy() {
}
public SQLException interceptException(SQLException sqlEx, com.mysql.jdbc.Connection conn) {
sqlEx.printStackTrace();
if ("Operation not allowed after ResultSet closed".equals(sqlEx.getMessage())
|| "No operations allowed after statement closed.".equals(sqlEx.getMessage())) {
this.alreadyClosedCounter++;
}
return sqlEx;
}
}
/**
* Tests fix for BUG#72000 - java.lang.ArrayIndexOutOfBoundsException on java.sql.ResultSet.getInt(String).
*
* @throws Exception
* if the test fails.
*/
public void testBug72000() throws Exception {
final ResultSet testRS = this.stmt.executeQuery("SELECT ' '");
assertTrue(testRS.next());
assertThrows(SQLException.class, "Bad format for BigDecimal ' ' in column 1.", new Callable<Void>() {
public Void call() throws Exception {
testRS.getBigDecimal(1);
return null;
}
});
assertFalse(testRS.getBoolean(1));
assertThrows(SQLException.class, "Value '' is out of range \\[-127,127\\]", new Callable<Void>() {
public Void call() throws Exception {
testRS.getByte(1);
return null;
}
});
assertThrows(SQLException.class, "Value ' ' can not be represented as java.sql.Date", new Callable<Void>() {
public Void call() throws Exception {
testRS.getDate(1);
return null;
}
});
assertThrows(SQLException.class, "Bad format for number ' ' in column 1.", new Callable<Void>() {
public Void call() throws Exception {
testRS.getDouble(1);
return null;
}
});
assertThrows(SQLException.class, "Invalid value for getFloat\\(\\) - ' ' in column 1", new Callable<Void>() {
public Void call() throws Exception {
testRS.getFloat(1);
return null;
}
});
assertThrows(SQLException.class, "Invalid value for getInt\\(\\) - ' '", new Callable<Void>() {
public Void call() throws Exception {
testRS.getInt(1);
return null;
}
});
assertThrows(SQLException.class, "Invalid value for getLong\\(\\) - ' '", new Callable<Void>() {
public Void call() throws Exception {
testRS.getLong(1);
return null;
}
});
assertThrows(SQLException.class, "Invalid value for getShort\\(\\) - ' '", new Callable<Void>() {
public Void call() throws Exception {
testRS.getShort(1);
return null;
}
});
assertThrows(SQLException.class, "Value ' ' can not be represented as java.sql.Time", new Callable<Void>() {
public Void call() throws Exception {
testRS.getTime(1);
return null;
}
});
assertThrows(SQLException.class, "Value ' ' can not be represented as java.sql.Timestamp", new Callable<Void>() {
public Void call() throws Exception {
testRS.getTimestamp(1);
return null;
}
});
}
/**
* Tests fix for BUG#72023 - Avoid byte array creation in MysqlIO#unpackBinaryResultSetRow.
*
* @throws Exception
* if the test fails.
*/
public void testBug72023() throws Exception {
// null bitmask contains 2 reserved bits plus 1 bit per field
//
// boundary cases at 8n - 2 / 8n - 1 field count; e.g. 6/7, 14/15
String[] selectList = new String[] { "NULL", "1", "NULL,NULL,NULL,NULL,NULL,NULL", "1,NULL,NULL,1,1,NULL", "1,1,1,1,1,1",
"NULL,NULL,NULL,NULL,NULL,NULL,NULL", "1,1,1,NULL,1,NULL,NULL", "1,1,1,1,1,1,1",
"NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL", "NULL,NULL,NULL,1,NULL,1,NULL,NULL,1,NULL,1,1,NULL,NULL",
"1,1,1,1,1,1,1,1,1,1,1,1,1,1", "NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL",
"NULL,1,NULL,1,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,1,1", "1,1,1,1,1,1,1,1,1,1,1,1,1,1,1" };
Connection testConn = getConnectionWithProps("useServerPrepStmts=true");
PreparedStatement testPstmt;
ResultSet testRS;
for (int i = 0, s = selectList.length; i < s; i++) {
String sl = selectList[i];
testPstmt = testConn.prepareStatement("SELECT " + sl);
testRS = testPstmt.executeQuery();
assertTrue(testRS.next());
int j = 1;
for (String fld : sl.split(",")) {
if (fld.equals("NULL")) {
assertNull("Bad results for query " + i + ", field " + j, testRS.getObject(j));
} else {
assertEquals("Bad results for query " + i + ", field " + j, 1, testRS.getInt(j));
}
j++;
}
assertFalse(testRS.next());
testRS.close();
testPstmt.close();
}
testConn.close();
}
/**
* Tests fix for BUG#75309 - mysql connector/J driver in streaming mode will in the blocking state.
*
* @throws Exception
* if the test fails.
*/
public void testBug75309() throws Exception {
if (!versionMeetsMinimum(5, 5)) {
return;
}
Connection testConn = getConnectionWithProps("socketTimeout=1000");
Statement testStmt = testConn.createStatement();
// turn on streaming results.
testStmt.setFetchSize(Integer.MIN_VALUE);
final ResultSet testRs1 = testStmt.executeQuery("SELECT 1 + 18446744073709551615");
assertThrows(SQLException.class, "Data truncation: BIGINT UNSIGNED value is out of range in '\\(1 \\+ 18446744073709551615\\)'", new Callable<Void>() {
public Void call() throws Exception {
testRs1.next();
return null;
}
});
try {
testRs1.close();
} catch (CommunicationsException ex) {
fail("ResultSet.close() locked while trying to read remaining, nonexistent, streamed data.");
}
try {
ResultSet testRs2 = testStmt.executeQuery("SELECT 1");
assertTrue(testRs2.next());
assertEquals(1, testRs2.getInt(1));
testRs2.close();
} catch (SQLException ex) {
if (ex.getMessage().startsWith("Streaming result set")) {
fail("There is a Streaming result set still active. No other statements can be issued on this connection.");
} else {
ex.printStackTrace();
fail(ex.getMessage());
}
}
testStmt.close();
testConn.close();
}
/**
* Tests fix for BUG#19536760 - GETSTRING() CALL AFTER RS.RELATIVE() RETURNS NULLPOINTEREXCEPTION
*
* @throws Exception
* if the test fails.
*/
public void testBug19536760() throws Exception {
createTable("testBug19536760", "(id int)");
this.stmt.execute("insert into testBug19536760 values(1),(2),(3)");
this.rs = this.stmt.executeQuery("select * from testBug19536760");
// "before first" check
testBug19536760CheckStates(this.rs, true, false, false, false);
assertFalse(this.rs.previous());
assertFalse(this.rs.previous());
assertFalse(this.rs.previous());
testBug19536760CheckStates(this.rs, true, false, false, false);
assertFalse(this.rs.absolute(-7));
testBug19536760CheckStates(this.rs, true, false, false, false);
assertTrue(this.rs.next());
this.rs.beforeFirst();
testBug19536760CheckStates(this.rs, true, false, false, false);
// "first" check
this.rs.next();
testBug19536760CheckStates(this.rs, false, true, false, false);
this.rs.absolute(-3);
testBug19536760CheckStates(this.rs, false, true, false, false);
assertTrue(this.rs.relative(1));
assertTrue(this.rs.previous());
testBug19536760CheckStates(this.rs, false, true, false, false);
this.rs.absolute(2);
testBug19536760CheckStates(this.rs, false, false, false, false);
this.rs.first();
testBug19536760CheckStates(this.rs, false, true, false, false);
// "last" check
this.rs.absolute(-1);
testBug19536760CheckStates(this.rs, false, false, true, false);
assertFalse(this.rs.next());
testBug19536760CheckStates(this.rs, false, false, false, true);
assertTrue(this.rs.previous());
testBug19536760CheckStates(this.rs, false, false, true, false);
assertFalse(this.rs.relative(1));
testBug19536760CheckStates(this.rs, false, false, false, true);
assertTrue(this.rs.relative(-1));
testBug19536760CheckStates(this.rs, false, false, true, false);
assertTrue(this.rs.relative(-1));
testBug19536760CheckStates(this.rs, false, false, false, false);
this.rs.last();
testBug19536760CheckStates(this.rs, false, false, true, false);
// "after last" check
assertFalse(this.rs.next());
assertFalse(this.rs.next());
assertFalse(this.rs.next());
testBug19536760CheckStates(this.rs, false, false, false, true);
assertTrue(this.rs.relative(-1));
testBug19536760CheckStates(this.rs, false, false, true, false);
assertFalse(this.rs.relative(3));
testBug19536760CheckStates(this.rs, false, false, false, true);
assertTrue(this.rs.previous());
testBug19536760CheckStates(this.rs, false, false, true, false);
this.rs.afterLast();
testBug19536760CheckStates(this.rs, false, false, false, true);
assertFalse(this.rs.next());
testBug19536760CheckStates(this.rs, false, false, false, true);
// empty result set
this.rs = this.stmt.executeQuery("select * from testBug19536760 where id=5");
assertFalse(this.rs.first());
assertFalse(this.rs.last());
testBug19536760CheckStates(this.rs, false, false, false, false);
assertFalse(this.rs.next());
testBug19536760CheckStates(this.rs, false, false, false, false);
assertFalse(this.rs.relative(2));
testBug19536760CheckStates(this.rs, false, false, false, false);
}
private void testBug19536760CheckStates(ResultSet rset, boolean expectedIsBeforeFirst, boolean expectedIsFirst, boolean expectedIsLast,
boolean expectedIsAfterLast) throws Exception {
assertEquals(expectedIsBeforeFirst, rset.isBeforeFirst());
assertEquals(expectedIsFirst, rset.isFirst());
assertEquals(expectedIsLast, rset.isLast());
assertEquals(expectedIsAfterLast, rset.isAfterLast());
}
/**
* Tests for fix to BUG#20804635 - GETTIME() AND GETDATE() FUNCTIONS FAILS WHEN FRACTIONAL PART EXISTS
*
* @throws Exception
* if the test fails
*/
public void testBug20804635() throws Exception {
if (!versionMeetsMinimum(5, 6, 4)) {
return; // fractional seconds are not supported in previous versions
}
createTable("testBug20804635", "(c1 timestamp(2), c2 time(3), c3 datetime(4))");
this.stmt.executeUpdate("INSERT INTO testBug20804635 VALUES ('2031-01-15 03:14:07.339999','12:59:00.9889','2031-01-15 03:14:07.333399')");
Calendar cal = Calendar.getInstance();
Connection testConn;
ResultSet rset;
Properties props = new Properties();
props.setProperty("useFastDateParsing", "true");
for (int i = 0; i < 2; i++) {
System.out.println("With useFastDateParsing=" + props.getProperty("useFastDateParsing"));
testConn = getConnectionWithProps(props);
rset = testConn.createStatement().executeQuery("SELECT * FROM testBug20804635");
rset.next();
assertEquals("2031-01-15", rset.getDate(1).toString());
assertEquals("2031-01-15", rset.getDate(1, cal).toString());
assertEquals("03:14:07", rset.getTime(1).toString());
assertEquals("03:14:07", rset.getTime(1, cal).toString());
assertEquals("2031-01-15 03:14:07.34", rset.getTimestamp(1).toString());
assertEquals("2031-01-15 03:14:07.34", rset.getTimestamp(1, cal).toString());
assertEquals("1970-01-01", rset.getDate(2).toString());
assertEquals("1970-01-01", rset.getDate(2, cal).toString());
assertEquals("12:59:00", rset.getTime(2).toString());
assertEquals("12:59:00", rset.getTime(2, cal).toString());
assertEquals("1970-01-01 12:59:00.989", rset.getTimestamp(2).toString());
assertEquals("1970-01-01 12:59:00.989", rset.getTimestamp(2, cal).toString());
assertEquals("2031-01-15", rset.getDate(3).toString());
assertEquals("2031-01-15", rset.getDate(3, cal).toString());
assertEquals("03:14:07", rset.getTime(3).toString());
assertEquals("03:14:07", rset.getTime(3, cal).toString());
assertEquals("2031-01-15 03:14:07.3334", rset.getTimestamp(3).toString());
assertEquals("2031-01-15 03:14:07.3334", rset.getTimestamp(3, cal).toString());
testConn.close();
props.setProperty("useFastDateParsing", "false");
}
}
/**
* Tests fix for Bug#80522 - Using useCursorFetch leads to data corruption in Connector/J for TIME type.
*/
public void testBug80522() throws Exception {
createTable("testBug80522", "(t TIME, d DATE, s TEXT)");
Properties props = new Properties();
String sqlMode = getMysqlVariable("sql_mode");
if (sqlMode.contains("NO_ZERO_DATE")) {
sqlMode = removeSqlMode("NO_ZERO_DATE", sqlMode);
props.put("sessionVariables", "sql_mode='" + sqlMode + "'");
}
props.setProperty("traceProtocol", "false");
props.setProperty("defaultFetchSize", "5");
props.setProperty("useCursorFetch", "true");
Connection testConn = getConnectionWithProps(props);
Statement testStmt = testConn.createStatement();
testStmt.executeUpdate("INSERT INTO testBug80522 VALUES ('00:00:00', '0000-00-00', 'Zeros')");
final ResultSet testRs = testStmt.executeQuery("SELECT * FROM testBug80522");
assertTrue(testRs.next());
assertEquals(new Timestamp(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse("1970-01-01 00:00:00").getTime()), testRs.getTimestamp(1));
assertThrows(SQLException.class, "Value '0000-00-00' can not be represented as java\\.sql\\.Timestamp", new Callable<Void>() {
public Void call() throws Exception {
System.out.println(testRs.getTimestamp(2));
return null;
}
});
assertEquals("Zeros", testRs.getString(3));
testRs.close();
testStmt.close();
testConn.close();
}
/**
* Tests fix for Bug#56479 - getTimestamp throws exception.
*
* This bug occurs exclusively on UpdatableResultSets when retrieving previously set timestamp values.
*/
public void testBug56479() throws Exception {
if (!versionMeetsMinimum(5, 6)) {
return;
}
String tsStr1 = "2010-09-02 03:55:10";
String tsStr2 = "2010-09-02 03:55:10.123456";
Timestamp ts1 = Timestamp.valueOf(tsStr1);
Timestamp ts2 = Timestamp.valueOf(tsStr2);
createTable("testBug56479", "(id INT PRIMARY KEY, ts1 TIMESTAMP NULL, ts2 TIMESTAMP(6) NULL)", "InnoDB");
this.stmt.executeUpdate("INSERT INTO testBug56479 VALUES (1, '" + tsStr1 + "', '" + tsStr2 + "'), (2, '" + tsStr1 + "', '" + tsStr2 + "')");
Statement testStmt = this.conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
ResultSet testRs = testStmt.executeQuery("SELECT * FROM testBug56479");
// Initial verifications.
assertTrue(testRs.next());
assertEquals(1, testRs.getInt(1));
assertEquals(ts1, testRs.getTimestamp(2));
assertEquals(ts2, testRs.getTimestamp(3));
assertTrue(testRs.next());
assertEquals(2, testRs.getInt(1));
assertEquals(ts1, testRs.getTimestamp(2));
assertEquals(ts2, testRs.getTimestamp(3));
assertFalse(testRs.next());
// Update second row to null.
testRs.absolute(2);
testRs.updateNull(2);
testRs.updateNull(3);
testRs.updateRow();
assertEquals(2, testRs.getInt(1));
assertNull(testRs.getTimestamp(2));
assertNull(testRs.getTimestamp(3));
testRs.beforeFirst();
// Check data changes using a plain ResultSet.
this.rs = this.stmt.executeQuery("SELECT * FROM testBug56479");
assertTrue(this.rs.next());
assertEquals(1, this.rs.getInt(1));
assertEquals(ts1, this.rs.getTimestamp(2));
assertEquals(ts2, this.rs.getTimestamp(3));
assertTrue(this.rs.next());
assertEquals(2, this.rs.getInt(1));
assertNull(this.rs.getTimestamp(2));
assertNull(this.rs.getTimestamp(3));
assertFalse(this.rs.next());
// Update second row to original values.
testRs.absolute(2);
testRs.updateTimestamp(2, ts1);
testRs.updateTimestamp(3, ts2);
testRs.updateRow();
assertEquals(2, testRs.getInt(1));
assertEquals(ts1, testRs.getTimestamp(2));
assertEquals(ts2, testRs.getTimestamp(3));
testRs.beforeFirst();
// Check data changes using a plain ResultSet.
this.rs = this.stmt.executeQuery("SELECT * FROM testBug56479");
assertTrue(this.rs.next());
assertEquals(1, this.rs.getInt(1));
assertEquals(ts1, this.rs.getTimestamp(2));
assertEquals(ts2, this.rs.getTimestamp(3));
assertTrue(this.rs.next());
assertEquals(2, this.rs.getInt(1));
assertEquals(ts1, this.rs.getTimestamp(2));
assertEquals(ts2, this.rs.getTimestamp(3));
assertFalse(this.rs.next());
// Insert new row.
testRs.moveToInsertRow();
testRs.updateInt(1, 3);
testRs.updateTimestamp(2, ts1);
testRs.updateTimestamp(3, ts2);
testRs.insertRow();
assertEquals(3, testRs.getInt(1));
assertEquals(ts1, testRs.getTimestamp(2));
assertEquals(ts2, testRs.getTimestamp(3));
testRs.beforeFirst();
// Check final data using a plain ResultSet.
this.rs = this.stmt.executeQuery("SELECT * FROM testBug56479");
assertTrue(this.rs.next());
assertEquals(1, this.rs.getInt(1));
assertEquals(ts1, this.rs.getTimestamp(2));
assertEquals(ts2, this.rs.getTimestamp(3));
assertTrue(this.rs.next());
assertEquals(2, this.rs.getInt(1));
assertEquals(ts1, this.rs.getTimestamp(2));
assertEquals(ts2, this.rs.getTimestamp(3));
assertTrue(this.rs.next());
assertEquals(3, this.rs.getInt(1));
assertEquals(ts1, this.rs.getTimestamp(2));
assertEquals(ts2, this.rs.getTimestamp(3));
assertFalse(this.rs.next());
}
}