summaryrefslogtreecommitdiff
path: root/mysql-test/r/ndb_basic.result
blob: e42485a1548993df5ed7e5547b462eb7e6646e11 (plain)
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
DROP TABLE IF EXISTS t1,t2,t3,t4,t5,t6,t7;
drop database if exists test2;
CREATE TABLE t1 (
pk1 INT NOT NULL PRIMARY KEY,
attr1 INT NOT NULL,
attr2 INT,
attr3 VARCHAR(10)
) ENGINE=ndbcluster;
INSERT INTO t1 VALUES (9410,9412, NULL, '9412'), (9411,9413, 17, '9413');
SELECT pk1 FROM t1 ORDER BY pk1;
pk1
9410
9411
SELECT * FROM t1 ORDER BY pk1;
pk1	attr1	attr2	attr3
9410	9412	NULL	9412
9411	9413	17	9413
SELECT t1.* FROM t1 ORDER BY pk1;
pk1	attr1	attr2	attr3
9410	9412	NULL	9412
9411	9413	17	9413
UPDATE t1 SET attr1=1 WHERE pk1=9410;
SELECT * FROM t1 ORDER BY pk1;
pk1	attr1	attr2	attr3
9410	1	NULL	9412
9411	9413	17	9413
UPDATE t1 SET pk1=2 WHERE attr1=1;
SELECT * FROM t1 ORDER BY pk1;
pk1	attr1	attr2	attr3
2	1	NULL	9412
9411	9413	17	9413
UPDATE t1 SET pk1=pk1 + 1;
SELECT * FROM t1 ORDER BY pk1;
pk1	attr1	attr2	attr3
3	1	NULL	9412
9412	9413	17	9413
DELETE FROM t1;
SELECT * FROM t1;
pk1	attr1	attr2	attr3
INSERT INTO t1 VALUES (9410,9412, NULL, '9412'), (9408, 8765, NULL, '8765'),
(7,8, NULL, NULL), (8,9, NULL, NULL), (9,10, NULL, NULL), (10,11, NULL, NULL), (11,12, NULL, NULL), (12,13, NULL, NULL), (13,14, NULL, NULL);
UPDATE t1 SET attr1 = 9999;
SELECT * FROM t1 ORDER BY pk1;
pk1	attr1	attr2	attr3
7	9999	NULL	NULL
8	9999	NULL	NULL
9	9999	NULL	NULL
10	9999	NULL	NULL
11	9999	NULL	NULL
12	9999	NULL	NULL
13	9999	NULL	NULL
9408	9999	NULL	8765
9410	9999	NULL	9412
UPDATE t1 SET attr1 = 9998 WHERE pk1 < 1000;
SELECT * FROM t1 ORDER BY pk1;
pk1	attr1	attr2	attr3
7	9998	NULL	NULL
8	9998	NULL	NULL
9	9998	NULL	NULL
10	9998	NULL	NULL
11	9998	NULL	NULL
12	9998	NULL	NULL
13	9998	NULL	NULL
9408	9999	NULL	8765
9410	9999	NULL	9412
UPDATE t1 SET attr1 = 9997 WHERE attr1 = 9999;
SELECT * FROM t1 ORDER BY pk1;
pk1	attr1	attr2	attr3
7	9998	NULL	NULL
8	9998	NULL	NULL
9	9998	NULL	NULL
10	9998	NULL	NULL
11	9998	NULL	NULL
12	9998	NULL	NULL
13	9998	NULL	NULL
9408	9997	NULL	8765
9410	9997	NULL	9412
DELETE FROM t1 WHERE pk1 = 9410;
SELECT * FROM t1 ORDER BY pk1;
pk1	attr1	attr2	attr3
7	9998	NULL	NULL
8	9998	NULL	NULL
9	9998	NULL	NULL
10	9998	NULL	NULL
11	9998	NULL	NULL
12	9998	NULL	NULL
13	9998	NULL	NULL
9408	9997	NULL	8765
DELETE FROM t1;
SELECT * FROM t1;
pk1	attr1	attr2	attr3
INSERT INTO t1 values (1, 4, NULL, NULL), (2, 4, NULL, NULL), (3, 5, NULL, NULL), (4, 4, NULL, NULL), (5, 5, NULL, NULL);
DELETE FROM t1 WHERE attr1=4;
SELECT * FROM t1 order by pk1;
pk1	attr1	attr2	attr3
3	5	NULL	NULL
5	5	NULL	NULL
DELETE FROM t1;
INSERT INTO t1 VALUES (9410,9412, NULL, NULL), (9411, 9413, NULL, NULL);
DELETE FROM t1 WHERE pk1 = 9410;
SELECT * FROM t1;
pk1	attr1	attr2	attr3
9411	9413	NULL	NULL
DROP TABLE t1;
CREATE TABLE t1 (id INT, id2 int) engine=ndbcluster;
INSERT INTO t1 values(3456, 7890);
SELECT * FROM t1;
id	id2
3456	7890
UPDATE t1 SET id=2 WHERE id2=12;
SELECT * FROM t1;
id	id2
3456	7890
UPDATE t1 SET id=1234 WHERE id2=7890;
SELECT * FROM t1;
id	id2
1234	7890
DELETE FROM t1;
INSERT INTO t1 values(3456, 7890), (3456, 7890), (3456, 7890), (3454, 7890);
SELECT * FROM t1 ORDER BY id;
id	id2
3454	7890
3456	7890
3456	7890
3456	7890
DELETE FROM t1 WHERE id = 3456;
SELECT * FROM t1 ORDER BY id;
id	id2
3454	7890
DROP TABLE t1;
CREATE TABLE t1 (
pk1 INT NOT NULL PRIMARY KEY,
attr1 INT NOT NULL
) ENGINE=NDBCLUSTER;
INSERT INTO t1 values(1, 9999);
DROP TABLE t1;
CREATE TABLE t1 (
pk1 INT NOT NULL PRIMARY KEY,
attr1 INT NOT NULL
) ENGINE=NDB;
INSERT INTO t1 values(1, 9999);
DROP TABLE t1;
CREATE TABLE t2 (
a bigint unsigned NOT NULL PRIMARY KEY,
b int unsigned not null,
c int unsigned
) engine=ndbcluster;
CREATE TABLE t3 (
a bigint unsigned NOT NULL,
b bigint unsigned not null,
c bigint unsigned,
PRIMARY KEY(a)
) engine=ndbcluster;
CREATE TABLE t4 (
a bigint unsigned NOT NULL,
b bigint unsigned not null,
c bigint unsigned NOT NULL,
d int unsigned,
PRIMARY KEY(a, b, c)
) engine=ndbcluster;
select * from t2 where a = 7 order by b;
a	b	c
7	16	5
select * from t2 where a = 7 order by a;
a	b	c
7	16	5
select * from t2 where a = 7 order by 2;
a	b	c
7	16	5
select * from t2 where a = 7 order by c;
a	b	c
7	16	5
select * from t2 where a = 7 and b = 16 order by b;
a	b	c
7	16	5
select * from t2 where a = 7 and b = 16 order by a;
a	b	c
7	16	5
select * from t2 where a = 7 and b = 17 order by a;
a	b	c
select * from t2 where a = 7 and b != 16 order by b;
a	b	c
select * from t2 where a = 7 and b = 16 and c = 5 order by b;
a	b	c
7	16	5
select * from t2 where a = 7 and b = 16 and c = 5 order by a;
a	b	c
7	16	5
select * from t2 where a = 7 and b = 16 and c = 6 order by a;
a	b	c
select * from t2 where a = 7 and b != 16 and c = 5 order by b;
a	b	c
select * from t3 where a = 7 order by b;
a	b	c
7	16	5
select * from t3 where a = 7 order by a;
a	b	c
7	16	5
select * from t3 where a = 7 order by 2;
a	b	c
7	16	5
select * from t3 where a = 7 order by c;
a	b	c
7	16	5
select * from t3 where a = 7 and b = 16 order by b;
a	b	c
7	16	5
select * from t3 where a = 7 and b = 16 order by a;
a	b	c
7	16	5
select * from t3 where a = 7 and b = 17 order by a;
a	b	c
select * from t3 where a = 7 and b != 16 order by b;
a	b	c
select * from t4 where a = 7 order by b;
a	b	c	d
7	16	5	26007
select * from t4 where a = 7 order by a;
a	b	c	d
7	16	5	26007
select * from t4 where a = 7 order by 2;
a	b	c	d
7	16	5	26007
select * from t4 where a = 7 order by c;
a	b	c	d
7	16	5	26007
select * from t4 where a = 7 and b = 16 order by b;
a	b	c	d
7	16	5	26007
select * from t4 where a = 7 and b = 16 order by a;
a	b	c	d
7	16	5	26007
select * from t4 where a = 7 and b = 17 order by a;
a	b	c	d
select * from t4 where a = 7 and b != 16 order by b;
a	b	c	d
select x1.a, x1.b from t2 x1, t2 x2 where x1.b = x2.b order by x1.a;
a	b
1	10
3	12
5	14
7	16
9	18
11	20
13	22
15	24
17	26
19	28
21	30
23	32
25	34
27	36
29	38
31	40
33	42
35	44
37	46
39	48
41	50
43	52
45	54
47	56
49	58
51	60
53	62
55	64
57	66
59	68
61	70
63	72
65	74
67	76
69	78
71	80
73	82
75	84
77	86
79	88
81	90
83	92
85	94
87	96
89	98
91	100
93	102
95	104
97	106
99	108
101	110
103	112
105	114
107	116
109	118
111	120
113	122
115	124
117	126
119	128
121	130
123	132
125	134
127	136
129	138
131	140
133	142
135	144
137	146
139	148
141	150
143	152
145	154
147	156
149	158
151	160
153	162
155	164
157	166
159	168
161	170
163	172
165	174
167	176
169	178
171	180
173	182
175	184
177	186
179	188
181	190
183	192
185	194
187	196
189	198
191	200
193	202
195	204
197	206
199	208
201	210
203	212
205	214
207	216
209	218
211	220
213	222
215	224
217	226
219	228
221	230
223	232
225	234
227	236
229	238
231	240
233	242
235	244
237	246
239	248
241	250
243	252
245	254
247	256
249	258
251	260
253	262
255	264
257	266
259	268
261	270
263	272
265	274
267	276
269	278
271	280
273	282
275	284
277	286
279	288
281	290
283	292
285	294
287	296
289	298
291	300
293	302
295	304
297	306
299	308
301	310
303	312
305	314
307	316
309	318
311	320
313	322
315	324
317	326
319	328
321	330
323	332
325	334
327	336
329	338
331	340
333	342
335	344
337	346
339	348
341	350
343	352
345	354
347	356
349	358
351	360
353	362
355	364
357	366
359	368
361	370
363	372
365	374
367	376
369	378
371	380
373	382
375	384
377	386
379	388
381	390
383	392
385	394
387	396
389	398
391	400
393	402
395	404
397	406
399	408
401	410
403	412
405	414
407	416
409	418
411	420
413	422
415	424
417	426
419	428
421	430
423	432
425	434
427	436
429	438
431	440
433	442
435	444
437	446
439	448
441	450
443	452
445	454
447	456
449	458
451	460
453	462
455	464
457	466
459	468
461	470
463	472
465	474
467	476
469	478
471	480
473	482
475	484
477	486
479	488
481	490
483	492
485	494
487	496
489	498
491	500
493	502
495	504
497	506
499	508
501	510
503	512
505	514
507	516
509	518
511	520
513	522
515	524
517	526
519	528
521	530
523	532
525	534
527	536
529	538
531	540
533	542
535	544
537	546
539	548
541	550
543	552
545	554
547	556
549	558
551	560
553	562
555	564
557	566
559	568
561	570
563	572
565	574
567	576
569	578
571	580
573	582
575	584
577	586
579	588
581	590
583	592
585	594
587	596
589	598
591	600
593	602
595	604
597	606
599	608
601	610
603	612
605	614
607	616
609	618
611	620
613	622
615	624
617	626
619	628
621	630
623	632
625	634
627	636
629	638
631	640
633	642
635	644
637	646
639	648
641	650
643	652
645	654
647	656
649	658
651	660
653	662
655	664
657	666
659	668
661	670
663	672
665	674
667	676
669	678
671	680
673	682
675	684
677	686
679	688
681	690
683	692
685	694
687	696
689	698
691	700
693	702
695	704
697	706
699	708
701	710
703	712
705	714
707	716
709	718
711	720
713	722
715	724
717	726
719	728
721	730
723	732
725	734
727	736
729	738
731	740
733	742
735	744
737	746
739	748
741	750
743	752
745	754
747	756
749	758
751	760
753	762
755	764
757	766
759	768
761	770
763	772
765	774
767	776
769	778
771	780
773	782
775	784
777	786
779	788
781	790
783	792
785	794
787	796
789	798
791	800
793	802
795	804
797	806
799	808
801	810
803	812
805	814
807	816
809	818
811	820
813	822
815	824
817	826
819	828
821	830
823	832
825	834
827	836
829	838
831	840
833	842
835	844
837	846
839	848
841	850
843	852
845	854
847	856
849	858
851	860
853	862
855	864
857	866
859	868
861	870
863	872
865	874
867	876
869	878
871	880
873	882
875	884
877	886
879	888
881	890
883	892
885	894
887	896
889	898
891	900
893	902
895	904
897	906
899	908
901	910
903	912
905	914
907	916
909	918
911	920
913	922
915	924
917	926
919	928
921	930
923	932
925	934
927	936
929	938
931	940
933	942
935	944
937	946
939	948
941	950
943	952
945	954
947	956
949	958
951	960
953	962
955	964
957	966
959	968
961	970
963	972
965	974
967	976
969	978
971	980
973	982
975	984
977	986
979	988
981	990
983	992
985	994
987	996
989	998
991	1000
993	1002
995	1004
997	1006
999	1008
select a, b FROM t2 outer_table where
a = (select a from t2 where b = outer_table.b ) order by a;
a	b
1	10
3	12
5	14
7	16
9	18
11	20
13	22
15	24
17	26
19	28
21	30
23	32
25	34
27	36
29	38
31	40
33	42
35	44
37	46
39	48
41	50
43	52
45	54
47	56
49	58
51	60
53	62
55	64
57	66
59	68
61	70
63	72
65	74
67	76
69	78
71	80
73	82
75	84
77	86
79	88
81	90
83	92
85	94
87	96
89	98
91	100
93	102
95	104
97	106
99	108
101	110
103	112
105	114
107	116
109	118
111	120
113	122
115	124
117	126
119	128
121	130
123	132
125	134
127	136
129	138
131	140
133	142
135	144
137	146
139	148
141	150
143	152
145	154
147	156
149	158
151	160
153	162
155	164
157	166
159	168
161	170
163	172
165	174
167	176
169	178
171	180
173	182
175	184
177	186
179	188
181	190
183	192
185	194
187	196
189	198
191	200
193	202
195	204
197	206
199	208
201	210
203	212
205	214
207	216
209	218
211	220
213	222
215	224
217	226
219	228
221	230
223	232
225	234
227	236
229	238
231	240
233	242
235	244
237	246
239	248
241	250
243	252
245	254
247	256
249	258
251	260
253	262
255	264
257	266
259	268
261	270
263	272
265	274
267	276
269	278
271	280
273	282
275	284
277	286
279	288
281	290
283	292
285	294
287	296
289	298
291	300
293	302
295	304
297	306
299	308
301	310
303	312
305	314
307	316
309	318
311	320
313	322
315	324
317	326
319	328
321	330
323	332
325	334
327	336
329	338
331	340
333	342
335	344
337	346
339	348
341	350
343	352
345	354
347	356
349	358
351	360
353	362
355	364
357	366
359	368
361	370
363	372
365	374
367	376
369	378
371	380
373	382
375	384
377	386
379	388
381	390
383	392
385	394
387	396
389	398
391	400
393	402
395	404
397	406
399	408
401	410
403	412
405	414
407	416
409	418
411	420
413	422
415	424
417	426
419	428
421	430
423	432
425	434
427	436
429	438
431	440
433	442
435	444
437	446
439	448
441	450
443	452
445	454
447	456
449	458
451	460
453	462
455	464
457	466
459	468
461	470
463	472
465	474
467	476
469	478
471	480
473	482
475	484
477	486
479	488
481	490
483	492
485	494
487	496
489	498
491	500
493	502
495	504
497	506
499	508
501	510
503	512
505	514
507	516
509	518
511	520
513	522
515	524
517	526
519	528
521	530
523	532
525	534
527	536
529	538
531	540
533	542
535	544
537	546
539	548
541	550
543	552
545	554
547	556
549	558
551	560
553	562
555	564
557	566
559	568
561	570
563	572
565	574
567	576
569	578
571	580
573	582
575	584
577	586
579	588
581	590
583	592
585	594
587	596
589	598
591	600
593	602
595	604
597	606
599	608
601	610
603	612
605	614
607	616
609	618
611	620
613	622
615	624
617	626
619	628
621	630
623	632
625	634
627	636
629	638
631	640
633	642
635	644
637	646
639	648
641	650
643	652
645	654
647	656
649	658
651	660
653	662
655	664
657	666
659	668
661	670
663	672
665	674
667	676
669	678
671	680
673	682
675	684
677	686
679	688
681	690
683	692
685	694
687	696
689	698
691	700
693	702
695	704
697	706
699	708
701	710
703	712
705	714
707	716
709	718
711	720
713	722
715	724
717	726
719	728
721	730
723	732
725	734
727	736
729	738
731	740
733	742
735	744
737	746
739	748
741	750
743	752
745	754
747	756
749	758
751	760
753	762
755	764
757	766
759	768
761	770
763	772
765	774
767	776
769	778
771	780
773	782
775	784
777	786
779	788
781	790
783	792
785	794
787	796
789	798
791	800
793	802
795	804
797	806
799	808
801	810
803	812
805	814
807	816
809	818
811	820
813	822
815	824
817	826
819	828
821	830
823	832
825	834
827	836
829	838
831	840
833	842
835	844
837	846
839	848
841	850
843	852
845	854
847	856
849	858
851	860
853	862
855	864
857	866
859	868
861	870
863	872
865	874
867	876
869	878
871	880
873	882
875	884
877	886
879	888
881	890
883	892
885	894
887	896
889	898
891	900
893	902
895	904
897	906
899	908
901	910
903	912
905	914
907	916
909	918
911	920
913	922
915	924
917	926
919	928
921	930
923	932
925	934
927	936
929	938
931	940
933	942
935	944
937	946
939	948
941	950
943	952
945	954
947	956
949	958
951	960
953	962
955	964
957	966
959	968
961	970
963	972
965	974
967	976
969	978
971	980
973	982
975	984
977	986
979	988
981	990
983	992
985	994
987	996
989	998
991	1000
993	1002
995	1004
997	1006
999	1008
delete from t2;
delete from t3;
delete from t4;
drop table t2;
drop table t3;
drop table t4;
CREATE TABLE t5 (
a bigint unsigned NOT NULL,
b bigint unsigned not null,
c bigint unsigned NOT NULL,
d int unsigned,
PRIMARY KEY(a, b, c)
) engine=ndbcluster;
insert into t5 values(10, 19, 5, 26010);
delete from t5 where a=10 and b=19 and c=5;
select * from t5;
a	b	c	d
insert into t5 values(10, 19, 5, 26010);
update t5 set d=21997 where a=10 and b=19 and c=5;
select * from t5;
a	b	c	d
10	19	5	21997
delete from t5;
drop table t5;
CREATE TABLE t6 (
adress char(255),
a int NOT NULL PRIMARY KEY,
b int
) engine = NDB;
insert into t6 values
("Nice road 3456", 1, 23),
("Street Road 78", 3, 92),
("Road street 89C", 5, 71),
(NULL, 7, NULL);
select * from t6 order by a;
adress	a	b
Nice road 3456	1	23
Street Road 78	3	92
Road street 89C	5	71
NULL	7	NULL
select a, b from t6 order by a;
a	b
1	23
3	92
5	71
7	NULL
update t6 set adress="End of road 09" where a=3;
update t6 set b=181, adress="Street 76" where a=7;
select * from t6 order by a;
adress	a	b
Nice road 3456	1	23
End of road 09	3	92
Road street 89C	5	71
Street 76	7	181
select * from t6 where a=1;
adress	a	b
Nice road 3456	1	23
delete from t6 where a=1;
select * from t6 order by a;
adress	a	b
End of road 09	3	92
Road street 89C	5	71
Street 76	7	181
delete from t6 where b=71;
select * from t6 order by a;
adress	a	b
End of road 09	3	92
Street 76	7	181
drop table t6;
CREATE TABLE t7 (
adress char(255),
a int NOT NULL,
b int,
c int NOT NULL,
PRIMARY KEY(a, c)	
) engine = NDB;
insert into t7 values
("Highway 3456", 1, 23, 2),
("Street Road 78", 3, 92, 3),
("Main street 89C", 5, 71, 4),
(NULL, 8, NULL, 12);
select * from t7 order by a;
adress	a	b	c
Highway 3456	1	23	2
Street Road 78	3	92	3
Main street 89C	5	71	4
NULL	8	NULL	12
select a, b from t7 order by a;
a	b
1	23
3	92
5	71
8	NULL
update t7 set adress="End of road 09" where a=3;
update t7 set adress="Gatuvägen 90C" where a=5 and c=4;
update t7 set adress="No adress" where adress is NULL;
select * from t7 order by a;
adress	a	b	c
Highway 3456	1	23	2
End of road 09	3	92	3
Gatuvägen 90C	5	71	4
No adress	8	NULL	12
select * from t7 where a=1 and c=2;
adress	a	b	c
Highway 3456	1	23	2
delete from t7 where a=1;
delete from t7 where a=3 and c=3;
delete from t7 where a=5 and c=4;
select * from t7;
adress	a	b	c
No adress	8	NULL	12
delete from t7 where b=23;
select * from t7;
adress	a	b	c
No adress	8	NULL	12
drop table t7;
CREATE TABLE t1 (
pk1 INT NOT NULL PRIMARY KEY,
attr1 INT NOT NULL,
attr2 INT,
attr3 VARCHAR(10)
) ENGINE=ndbcluster;
INSERT INTO t1 VALUES (9410,9412, NULL, '9412'), (9411,9413, 17, '9413');
create database test2;
use test2;
CREATE TABLE t2 (
a bigint unsigned NOT NULL PRIMARY KEY,
b int unsigned not null,
c int unsigned
) engine=ndbcluster;
insert into t2 select pk1,attr1,attr2 from test.t1;
select * from t2 order by a;
a	b	c
9410	9412	NULL
9411	9413	17
select b from test.t1, t2 where c = test.t1.attr2;
b
9413
select b,test.t1.attr1 from test.t1, t2 where test.t1.pk1 < a;
b	attr1
9413	9412
drop table test.t1, t2;
drop database test2;