File: point_basic.test

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (988 lines) | stat: -rw-r--r-- 38,505 bytes parent folder | download
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
#********************************************************
# wl6942: Store certain GIS data type in the row rather
# than as BLOB.
#
#********************************************************



--echo #
--echo # Test for basic POINT operation
--echo #
CREATE TABLE gis_point(p1 POINT, p2 POINT) ENGINE=InnoDB;
INSERT INTO gis_point VALUES
(ST_PointFromText('POINT(0 0)'), ST_PointFromText('POINT(0 0)')),
(ST_PointFromText('POINT(10 -20)'), ST_PointFromText('POINT(10 -20)')),
(ST_PointFromText('POINT(3.1415926 3.535897)'), ST_PointFromText('POINT(-3.932626 -3.488272)')),
(ST_PointFromText('POINT(-111.9876 234.1357)'), ST_PointFromText('POINT(-957.1914 958.1919)'));
SELECT ST_X(p1), ST_Y(p2) FROM gis_point;
DROP TABLE gis_point;


--echo #
--echo # Test when POINT is not on any indexes
--echo #
CREATE TABLE gis_point(p1 POINT, p2 POINT) ENGINE=InnoDB;
INSERT INTO gis_point VALUES
(ST_PointFromText('POINT(100.32374832 101.23741821)'), ST_PointFromText('POINT(100.32374832 101.23741821)')),
(ST_PointFromText('POINT(105.34523342 103.18492302)'), ST_PointFromText('POINT(100.32374832 101.23741821)')),
(ST_PointFromText('POINT(100.32374832 101.23741821)'), ST_PointFromText('POINT(200.32247328 101.86728201)')),
(ST_PointFromText('POINT(100.32374832 101.23741821)'), ST_PointFromText('POINT(100.32374832 101.98527111)'));

ANALYZE TABLE gis_point;

--replace_column 10 #
EXPLAIN SELECT ST_AsText(p1), ST_AsText(p2) FROM gis_point GROUP BY p1, p2;
--sorted_result
SELECT ST_AsText(p1), ST_AsText(p2) FROM gis_point GROUP BY p1, p2;

EXPLAIN SELECT ST_AsText(p1), ST_AsText(p2) FROM gis_point GROUP BY p1, p2 ORDER by p1, p2;
SELECT ST_AsText(p1), ST_AsText(p2) FROM gis_point GROUP BY p1,p2 ORDER BY p1,p2;

EXPLAIN SELECT ST_AsText(p1), ST_AsText(p2) FROM gis_point ORDER BY p1, p2;
SELECT ST_AsText(p1), ST_AsText(p2) FROM gis_point ORDER BY p1, p2;

--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE p1 = p2;
--sorted_result
SELECT ST_AsText(p1), ST_AsText(p2) FROM gis_point WHERE p1 = ST_PointFromText('POINT(100.32374832 101.23741821)');
--sorted_result
SELECT ST_AsText(p1), ST_AsText(p2) FROM gis_point WHERE p2 = ST_PointFromText('POINT(200.32247328 101.86728201)');

DROP TABLE gis_point;


--echo #
--echo # Test some ALTER TABLE operations on POINT tables
--echo #

CREATE TABLE t1 (
  p POINT NOT NULL SRID 0,
  g GEOMETRY NOT NULL
) ENGINE=InnoDB;

INSERT INTO t1 VALUES(ST_PointFromText('POINT(0 1)'), ST_PointFromText('POINT(10 11)'));
INSERT INTO t1 VALUES(ST_PointFromText('POINT(1 1)'), ST_PointFromText('POINT(10 12)'));
INSERT INTO t1 VALUES(ST_PointFromText('POINT(1 0)'), ST_PointFromText('POINT(10 13)'));
INSERT INTO t1 VALUES(ST_PointFromText('POINT(0 0)'), ST_PointFromText('POINT(10 14)'));

SELECT ST_AsText(p), ST_AsText(g) FROM t1;

SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'p' OR name = 'g';

ALTER TABLE t1 ADD COLUMN p1 POINT SRID 0, ADD COLUMN p2 POINT, ADD KEY(p);
SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'p' OR name = 'g' OR name = 'p1' OR name = 'p2';

--echo # NOT NULL POINT will use ''
SELECT count(*) AS `Expect 4` FROM t1 WHERE p1 = '';
SELECT count(*) AS `Expect 4` FROM t1 WHERE p2 = '';

SELECT ST_AsText(p), ST_AsText(p1) FROM t1 WHERE p = p1;
SELECT ST_AsText(p), ST_AsText(p1) FROM t1 WHERE p = p2;

ALTER TABLE t1 DROP COLUMN p2;

--echo # NULLABLE POINT will use NULL
ALTER TABLE t1 ADD COLUMN p2 POINT;
SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'p' OR name = 'g' OR name = 'p1' OR name = 'p2';

SELECT count(*) AS `Expect 4` FROM t1 WHERE p2 IS NULL;
UPDATE t1 SET p2 = ST_PointFromText('POINT(10 20)');
UPDATE t1 SET p1 = ST_PointFromText('POINT(10 20)');

ALTER TABLE t1 DROP COLUMN p2;
SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'p' OR name = 'g' OR name = 'p1';

SELECT ST_AsText(p), ST_AsText(p1) FROM t1 WHERE p = p1;

INSERT INTO t1 VALUES (ST_PointFromText('POINT(0.5 0.5)'), ST_PointFromText('POINT(0 1)'), ST_PointFromText('POINT(10 19)'));
SELECT ST_AsText(p1) FROM t1;
DELETE FROM t1 WHERE p1 = ST_PointFromText('POINT(10 19)');
SELECT ST_AsText(p1) FROM t1;

--echo # Add spatial keys on the table
--error ER_SPATIAL_CANT_HAVE_NULL
ALTER TABLE t1 ADD SPATIAL(p), ADD SPATIAL(p1);
SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'p' OR name = 'g' OR name = 'p1';

SELECT ST_AsText(p), ST_AsText(p1) FROM t1 WHERE p1 = ST_PointFromText('POINT(10 30)');
SELECT ST_AsText(p), ST_AsText(p1) FROM t1 WHERE p1 = ST_PointFromText('POINT(10 20)');

SELECT ST_AsText(p), ST_AsText(p1) FROM t1 WHERE MBRWithin(p1, ST_GeomFromText('POLYGON((5 5, 20 5, 20 21, 5 21, 5 5))'));
SELECT ST_AsText(p), ST_AsText(p1) FROM t1 WHERE MBRWithin(p, ST_GeomFromText('POLYGON((-1 0.5, -1 -0.5, 1 -0.5, 1 0.5, -1 0.5))'));

--echo # Drop spatial keys on the table
--error ER_CANT_DROP_FIELD_OR_KEY
ALTER TABLE t1 DROP KEY p, DROP KEY p1;
SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'p' OR name = 'g' OR name = 'p1';

SELECT ST_AsText(p), ST_AsText(p1) FROM t1 WHERE p1 = ST_PointFromText('POINT(10 30)');
SELECT ST_AsText(p), ST_AsText(p1) FROM t1 WHERE p1 = ST_PointFromText('POINT(10 20)');

SELECT ST_AsText(p), ST_AsText(p1) FROM t1 WHERE MBRWithin(p1, ST_GeomFromText('POLYGON((5 5, 20 5, 20 21, 5 21, 5 5))'));
SELECT ST_AsText(p), ST_AsText(p1) FROM t1 WHERE MBRWithin(p, ST_GeomFromText('POLYGON((-1 0.5, -1 -0.5, 1 -0.5, 1 0.5, -1 0.5))'));

TRUNCATE t1;

ALTER TABLE t1 DROP COLUMN p, DROP COLUMN p1;
SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'p' OR name = 'g' OR name = 'p1';

ALTER TABLE t1 ADD COLUMN p POINT, ADD COLUMN p1 POINT;
SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'p' OR name = 'g' OR name = 'p1';

SHOW CREATE TABLE t1;

INSERT INTO t1 VALUES(ST_PointFromText('POINT(0.5 0.5)'), ST_PointFromText('POINT(0 1)'), ST_PointFromText('POINT(10 19)'));
INSERT INTO t1 VALUES(ST_PointFromText('POINT(0.6 0.6)'), ST_PointFromText('POINT(1 1)'), ST_PointFromText('POINT(10 20)'));
INSERT INTO t1 VALUES(ST_PointFromText('POINT(0.7 0.7)'), ST_PointFromText('POINT(1 0)'), ST_PointFromText('POINT(10 21)'));
INSERT INTO t1 VALUES(ST_PointFromText('POINT(0.8 0.8)'), ST_PointFromText('POINT(0 0)'), ST_PointFromText('POINT(10 22)'));

SELECT ST_AsText(p), ST_AsText(p1) FROM t1 WHERE p1 = ST_PointFromText('POINT(10 30)');
SELECT ST_AsText(p), ST_AsText(p1) FROM t1 WHERE p1 = ST_PointFromText('POINT(10 20)');

SELECT ST_AsText(p), ST_AsText(p1) FROM t1 WHERE MBRWithin(p1, ST_GeomFromText('POLYGON((5 5, 20 5, 20 21, 5 21, 5 5))'));
SELECT ST_AsText(p), ST_AsText(p1) FROM t1 WHERE MBRWithin(p, ST_GeomFromText('POLYGON((-1 0.5, -1 -0.5, 1 -0.5, 1 0.5, -1 0.5))'));

ALTER TABLE t1 DROP COLUMN p1, ADD COLUMN p1 POINT, CHANGE COLUMN p pp POINT AFTER p1;
SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'pp' OR name = 'g' OR name = 'p1';

UPDATE t1 SET p1 = ST_PointFromText('POINT(5 5)');

SELECT ST_AsText(pp), ST_AsText(p1) FROM t1;

--error ER_SPATIAL_CANT_HAVE_NULL
ALTER TABLE t1 ADD SPATIAL(p1), ADD SPATIAL(pp), ALGORITHM = COPY;
SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'pp' OR name = 'g' OR name = 'p1';

SELECT ST_AsText(pp), ST_AsText(p1) FROM t1 WHERE p1 = ST_PointFromText('POINT(10 30)');
SELECT ST_AsText(pp), ST_AsText(p1) FROM t1 WHERE p1 = ST_PointFromText('POINT(10 20)');

SELECT ST_AsText(pp), ST_AsText(p1) FROM t1 WHERE MBRWithin(p1, ST_GeomFromText('POLYGON((5 5, 20 5, 20 21, 5 21, 5 5))')) ORDER BY pp;
SELECT ST_AsText(pp), ST_AsText(p1) FROM t1 WHERE MBRWithin(pp, ST_GeomFromText('POLYGON((-1 0.5, -1 -0.5, 1 -0.5, 1 0.5, -1 0.5))')) ORDER BY pp;

DROP TABLE t1;


--echo #
--echo # Test when the POINT is on B-TREE
--echo #
CREATE TABLE gis_point(fid INTEGER NOT NULL PRIMARY KEY AUTO_INCREMENT, p POINT NOT NULL, KEY(p)) ENGINE=InnoDB;

INSERT INTO gis_point VALUES
(101, ST_PointFromText('POINT(10 10)')),
(102, ST_PointFromText('POINT(20 10)')),
(103, ST_PointFromText('POINT(20 20)')),
(104, ST_PointFromWKB(ST_AsWKB(ST_PointFromText('POINT(10 20)'))));

SELECT ST_AsText(p) FROM gis_point;
SELECT ST_AsText(p) FROM gis_point WHERE p = ST_PointFromText('POINT(20 20)');

INSERT INTO gis_point VALUES
(201, ST_PointFromText('POINT(100.32374832 101.23741821)')),
(202, ST_PointFromText('POINT(102.43287328 100.23489233)')),
(203, ST_PointFromText('POINT(101.43284962 100.45892392)')),
(204, ST_PointFromWKB(ST_AsWKB(ST_PointFromText('POINT(103.43718640 105.248206478)')))),
(205, ST_PointFromText('POINT(101.43284962 100.45892392)')),
(206, ST_PointFromWKB(ST_AsWKB(ST_PointFromText('POINT(103.43718640 105.248206478)'))));

ANALYZE TABLE gis_point;

-- echo 'The ORDER BY will use filesort'
--replace_column 10 #
EXPLAIN SELECT ST_AsText(p) FROM gis_point ORDER BY p;
SELECT ST_AsText(p) FROM gis_point ORDER BY p;

--sorted_result
SELECT ST_AsText(p), COUNT(*) FROM gis_point GROUP BY p;

TRUNCATE gis_point;

INSERT INTO gis_point VALUES
(101, ST_PointFromText('POINT(10 10)')),
(102, ST_PointFromText('POINT(20 10)')),
(103, ST_PointFromText('POINT(20 20)')),
(104, ST_PointFromWKB(ST_AsWKB(ST_PointFromText('POINT(10 20)'))));

ALTER TABLE gis_point ADD COLUMN g POINT;

INSERT INTO gis_point VALUES
(105, ST_PointFromText('POINT(25 15)'), ST_PointFromText('POINT(100 100)')),
(106, ST_PointFromText('POINT(25 25)'), ST_PointFromText('POINT(110 110)'));

SELECT ST_AsText(p) FROM gis_point;
SELECT ST_AsText(p), ST_AsText(g) FROM gis_point WHERE g IS NULL;

UPDATE gis_point SET g = ST_PointFromText('POINT(200 200)') WHERE g IS NULL OR g = ST_PointFromText('POINT(110 110)');
SELECT ST_AsText(g) FROM gis_point WHERE g IS NULL OR g = ST_PointFromText('POINT(200 200)');

--echo # Check the information schema tables
SELECT table_name, column_name, data_type, column_type
  FROM INFORMATION_SCHEMA.COLUMNS
  WHERE table_name='gis_point' AND (column_name = 'p' OR column_name = 'g')
  ORDER BY table_name, column_name;

SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'p' OR name = 'g';

SELECT length(p) FROM gis_point;

ALTER TABLE gis_point DROP COLUMN g, ALGORITHM = COPY;

TRUNCATE gis_point;

INSERT INTO gis_point VALUES
(101, ST_PointFromText('POINT(10 10)')),
(102, ST_PointFromText('POINT(20 10)')),
(103, ST_PointFromText('POINT(20 20)')),
(104, ST_PointFromWKB(ST_AsWKB(ST_PointFromText('POINT(10 20)'))));

ALTER TABLE gis_point ADD COLUMN g POINT;

INSERT INTO gis_point VALUES
(105, ST_PointFromText('POINT(25 15)'), ST_PointFromText('POINT(100 100)')),
(106, ST_PointFromText('POINT(25 25)'), ST_PointFromText('POINT(110 110)'));

SELECT ST_AsText(p) FROM gis_point;
SELECT ST_AsText(p), ST_AsText(g) FROM gis_point WHERE g IS NULL;

UPDATE gis_point SET g = ST_PointFromText('POINT(200 200)') WHERE g IS NULL OR g = ST_PointFromText('POINT(110 110)');
SELECT ST_AsText(g) FROM gis_point WHERE g IS NULL OR g = ST_PointFromText('POINT(200 200)');

CHECK TABLE gis_point;

SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'p' OR name = 'g';

DROP TABLE gis_point;


--echo #
--echo # Check the mtype of other geometry data types should be 15
--echo #
CREATE TABLE g (
  geom GEOMETRY NOT NULL,
  l LINESTRING NOT NULL,
  poly POLYGON NOT NULL,
  mp MULTIPOINT NOT NULL,
  ml MULTILINESTRING NOT NULL,
  mpoly MULTIPOLYGON NOT NULL,
  gc GEOMETRYCOLLECTION NOT NULL
) ENGINE=InnoDB;
SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'p' OR name = 'g' OR name = 'geom' OR name = 'l' OR name = 'poly' OR name = 'mp' OR name = 'ml' OR name = 'mpoly' OR name = 'gc';

DROP TABLE g;

--echo #
--echo # check the mtype and len with CREATE TABLE AS
--echo #

CREATE TABLE t1 (
  p POINT NOT NULL,
  g GEOMETRY NOT NULL
) ENGINE=InnoDB;


INSERT INTO t1 VALUES(ST_PointFromText('POINT(10 10)'),ST_GeomFromText('POLYGON((30 30,40 40,50 50,30 50,30 40,30 30))'));

# Check the mtype and len of the table
SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'p' OR name = 'g' AND name='t1';

CREATE TABLE t2 AS SELECT * FROM t1;

# Cleanup
DROP TABLE t1;

# Check the mtype and len of the table, should be 14,25
SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'p' OR name = 'g' AND name='t2';

# Cleanup
DROP table t2; 


--echo #
--echo # Test when POINT is used in spatial index
--echo #
SET @ls1 = ST_GeomFromText('LINESTRING(0 20, 10 0)');
SET @ls2 = ST_GeomFromText('LINESTRING(0 0, 10 20)');
SET @ls3 = ST_GeomFromText('LINESTRING(20 -40, 21 -42)');
SET @ls4 = ST_GeomFromText('LINESTRING(20 -42, 21 -40)');
SET @poly1 = ST_GeomFromText('POLYGON((2 2, 2 10, 10 10, 10 2, 2 2))');
SET @poly2 = ST_GeomFromText('POLYGON((0 0, -5 0, -4 -1, -6 -15, -3 -15, 0 0))');
SET @poly3 = ST_GeomFromText('POLYGON((10.0 10.0, 20.5 20, 20.5 50, 32.0 64.0, 32.3 64.6, 5 60, 10 10))');
SET @poly4 = ST_GeomFromText('POLYGON((0 10, -10 10, -10 -10, 0 -10, 0 10))');
SET @p1 = ST_PointFromText('POINT(0 0)');
SET @mpoly = ST_GeomFromText('MULTIPOLYGON(((3 3, 3 16, 16 16, 16 3, 3 3)), ((10 10, 10 50, 50 50, 50 10, 10 10)))');

CREATE TABLE gis_point (p1 POINT NOT NULL SRID 0, p2 POINT NOT NULL SRID 0, SPATIAL KEY k1 (p1), SPATIAL KEY k2 (p2)) ENGINE=InnoDB;

INSERT INTO gis_point VALUES
(ST_PointFromText('POINT(1 2)'), ST_PointFromText('POINT(-1 -3)')),
(ST_PointFromText('POINT(2 4)'), ST_PointFromText('POINT(-2 -6)')),
(ST_PointFromText('POINT(3 6)'), ST_PointFromText('POINT(-3 -9)')),
(ST_PointFromText('POINT(4 8)'), ST_PointFromText('POINT(-4 -12)')),
(ST_PointFromText('POINT(5 10)'), ST_PointFromText('POINT(-5 -15)')),
(ST_PointFromText('POINT(6 12)'), ST_PointFromText('POINT(-6 -18)')),
(ST_PointFromText('POINT(7 14)'), ST_PointFromText('POINT(-7 -21)')),
(ST_PointFromText('POINT(8 16)'), ST_PointFromText('POINT(0 0)')),
(ST_PointFromText('POINT(9 18)'), ST_PointFromText('POINT(-4 2)')),
(ST_PointFromText('POINT(10 21)'), ST_PointFromText('POINT(-6 3)')),
(ST_PointFromText('POINT(20.5 41)'), ST_PointFromText('POINT(-8 4)')),
(ST_PointFromText('POINT(26.25 57)'), ST_PointFromText('POINT(1 2)')),
(ST_PointFromText('POINT(32.1234 64.2468)'), ST_PointFromText('POINT(-1 -1)'));

CREATE TABLE gis_point1 SELECT * FROM gis_point;

SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'p1' OR name = 'p2';

--sorted_result
SELECT ST_AsText(p1), ST_AsText(p2) FROM gis_point1;
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE ST_Intersection(@ls1, @ls2) = p1;
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRWithin(p1, @poly1);
--sorted_result
SELECT ST_AsText(p2) FROM gis_point1 WHERE ST_Contains(@poly2, p2);
--sorted_result
SELECT ST_AsText(p2) FROM gis_point1 WHERE ST_Equals(p2, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE ST_Touches(@poly3, p1) AND MBRWithin(p2, @poly4);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE ST_Contains(@mpoly, p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE ST_Contains(@mpoly, p1) AND NOT MBRWithin(p1, @mpoly);

--echo # Check functions that use MBR, with line type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRIntersects(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRWithin(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE ST_Touches(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRDisjoint(p1, @ls1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBREquals(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRContains(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBROverlaps(p1, @ls3);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE ST_Crosses(p1, @ls1);

--echo # Check functions that use MBR, with polygon type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRIntersects(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRWithin(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE ST_Touches(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE ST_Crosses(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRDisjoint(p1, @poly1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBREquals(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRContains(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBROverlaps(p1, @poly1);

--echo # Check functions that use MBR, with point type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRIntersects(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRWithin(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE ST_Touches(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBREquals(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRContains(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRDisjoint(p1, @p1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBROverlaps(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE ST_Crosses(p1, @p1);

--echo # Check with MBR functions point type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRIntersects(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRWithin(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE ST_Touches(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRContains(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRDisjoint(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRequals(p1, @p1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBROverlaps(p1, @p1);

--echo # Check with MBR functions point polygon data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRIntersects(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRWithin(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE ST_Touches(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRContains(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRDisjoint(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRequals(p1, @p1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBROverlaps(p1, @p1);

--echo # Check with MBR functions polygon type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRIntersects(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRWithin(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE ST_Touches(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRDisjoint(p1, @poly1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBROverlaps(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRContains(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRequals(p1, @poly1);

--echo # Check with MBR functions line type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRIntersects(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRWithin(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE ST_Touches(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRDisjoint(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRequals(p1, @ls1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBROverlaps(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point1 WHERE MBRContains(p1, @ls1);

DROP TABLE gis_point1;

--sorted_result
SELECT ST_AsText(p1), ST_AsText(p2) FROM gis_point;
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Intersection(@ls1, @ls2) = p1;
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRWithin(p1, @poly1);
--sorted_result
SELECT ST_AsText(p2) FROM gis_point WHERE ST_Contains(@poly2, p2);
--sorted_result
SELECT ST_AsText(p2) FROM gis_point WHERE ST_Equals(p2, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Touches(@poly3, p1) AND MBRWithin(p2, @poly4);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Contains(@mpoly, p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Contains(@mpoly, p1) AND NOT MBRWithin(p1, @mpoly);

--echo # Check functions that use MBR, with line type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRIntersects(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRWithin(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Touches(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRDisjoint(p1, @ls1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBREquals(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRContains(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBROverlaps(p1, @ls3);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Crosses(p1, @ls1);

--echo # Check functions that use MBR, with polygon type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRIntersects(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRWithin(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Touches(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Crosses(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRDisjoint(p1, @poly1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBREquals(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRContains(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBROverlaps(p1, @poly1);

--echo # Check functions that use MBR, with point type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRIntersects(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRWithin(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Touches(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBREquals(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRContains(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRDisjoint(p1, @p1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBROverlaps(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Crosses(p1, @p1);

--echo # Check with MBR functions point type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRIntersects(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRWithin(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Touches(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRContains(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRDisjoint(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRequals(p1, @p1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBROverlaps(p1, @p1);

--echo # Check with MBR functions point polygon data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRIntersects(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRWithin(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Touches(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRContains(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRDisjoint(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRequals(p1, @p1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBROverlaps(p1, @p1);

--echo # Check with MBR functions polygon type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRIntersects(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRWithin(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Touches(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRDisjoint(p1, @poly1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBROverlaps(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRContains(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRequals(p1, @poly1);

--echo # Check with MBR functions line type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRIntersects(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRWithin(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Touches(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRDisjoint(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRequals(p1, @ls1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBROverlaps(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRContains(p1, @ls1);

--echo # Modify the storage engine to Myisam, Check the spatial functions
ALTER TABLE gis_point ENGINE Myisam;

--echo # Check functions that use MBR, with line type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRIntersects(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRWithin(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Touches(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRDisjoint(p1, @ls1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBREquals(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRContains(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBROverlaps(p1, @ls3);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Crosses(p1, @ls1);

--echo # Check functions that use MBR, with polygon type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRIntersects(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRWithin(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Touches(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Crosses(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRDisjoint(p1, @poly1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBREquals(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRContains(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBROverlaps(p1, @poly1);

--echo # Check functions that use MBR, with point type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRIntersects(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRWithin(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Touches(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBREquals(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRContains(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRDisjoint(p1, @p1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBROverlaps(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Crosses(p1, @p1);

--echo # Check with MBR functions point type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRIntersects(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRWithin(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Touches(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRContains(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRDisjoint(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRequals(p1, @p1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBROverlaps(p1, @p1);

--echo # Check with MBR functions point polygon data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRIntersects(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRWithin(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Touches(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRContains(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRDisjoint(p1, @p1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRequals(p1, @p1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBROverlaps(p1, @p1);

--echo # Check with MBR functions polygon type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRIntersects(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRWithin(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Touches(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRDisjoint(p1, @poly1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBROverlaps(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRContains(p1, @poly1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRequals(p1, @poly1);

--echo # Check with MBR functions line type data
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRIntersects(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRWithin(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE ST_Touches(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRDisjoint(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRequals(p1, @ls1);

--echo # No matching records
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBROverlaps(p1, @ls1);
--sorted_result
SELECT ST_AsText(p1) FROM gis_point WHERE MBRContains(p1, @ls1);

--echo # Modify the storage engine to InnoDB again, do following testing
ALTER TABLE gis_point ENGINE InnoDB;

CHECK TABLE gis_point;

ANALYZE TABLE gis_point;

-- echo The ORDER BY for spatial index will use filesort
--replace_column 10 #
EXPLAIN SELECT ST_AsText(p1), ST_AsText(p2) FROM gis_point ORDER BY p1, p2;
SELECT ST_AsText(p1), ST_AsText(p2) FROM gis_point ORDER BY p1, p2;

-- echo Try to do IDU on the table and verify the result
DELETE FROM gis_point WHERE ST_Equals(p2, ST_PointFromText('POINT(-8 4)'));

INSERT INTO gis_point VALUES(ST_PointFromText('POINT(20.5 -41)'), ST_PointFromText('POINT(8 -4)'));

SELECT ST_AsText(p1) AS 'Expect (32.1234 64.2468)' FROM gis_point WHERE ST_Touches(@poly3, p1) AND MBRWithin(p2, @poly4);

UPDATE gis_point SET p1 = ST_PointFromText('POINT(20.5 41)'), p2 = ST_PointFromText('POINT(-8 4)') WHERE ST_Intersection(@ls3, @ls4) = p1;

SELECT ST_AsText(p1) AS 'Expect (32.1234 64.2468) AND (20.5 41)' FROM gis_point WHERE ST_Touches(@poly3, p1) AND MBRWithin(p2, @poly4);

CHECK TABLE gis_point;

-- echo Use a trx to test the IDU on the table and verify the result
START TRANSACTION;

DELETE FROM gis_point WHERE ST_Equals(p2, ST_PointFromText('POINT(-8 4)'));

INSERT INTO gis_point VALUES(ST_PointFromText('POINT(20.5 -41)'), ST_PointFromText('POINT(8 -4)'));

SELECT ST_AsText(p1) AS 'Expect (32.1234 64.2468)' FROM gis_point WHERE ST_Touches(@poly3, p1) AND MBRWithin(p2, @poly4);

UPDATE gis_point SET p1 = ST_PointFromText('POINT(20.5 49)'), p2 = ST_PointFromText('POINT(-8 4)') WHERE ST_Intersection(@ls3, @ls4) = p1;

SELECT ST_AsText(p1) AS 'Expect (32.1234 64.2468) AND (20.5 49)' FROM gis_point WHERE ST_Touches(@poly3, p1) AND MBRWithin(p2, @poly4);

ROLLBACK;

SELECT ST_AsText(p1) AS 'Expect (32.1234 64.2468) AND (20.5 41)' FROM gis_point WHERE ST_Touches(@poly3, p1) AND MBRWithin(p2, @poly4);

CHECK TABLE gis_point;

DROP TABLE gis_point;



--echo #
--echo # Test inserting/updating different type data into POINT field
--echo #

CREATE TABLE gis_point (i INT, p POINT) ENGINE=InnoDB;
CREATE TABLE geom (i INT, g GEOMETRY NOT NULL SRID 0, SPATIAL KEY(g)) ENGINE=InnoDB;

INSERT INTO gis_point VALUES(0, ST_PointFromText('POINT(1 1)'));
INSERT INTO gis_point VALUES(1, ST_PointFromText('POINT(2 2)'));
INSERT INTO gis_point VALUES(2, NULL);

ALTER TABLE gis_point ADD COLUMN j INT, ALGORITHM = COPY;

SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'p';

SELECT name, mtype, prtype, len FROM INFORMATION_SCHEMA.INNODB_COLUMNS WHERE name = 'p';

SELECT i, ST_AsText(p) FROM gis_point;

UPDATE gis_point SET p = NULL WHERE p = ST_PointFromText('POINT(1 1)');
UPDATE gis_point SET p = ST_PointFromText('POINT(1 2)') WHERE p = ST_PointFromText('POINT(2 2)');
UPDATE gis_point SET p = ST_PointFromText('POINT(1 1)') WHERE p IS NULL;

SELECT i, ST_AsText(p) FROM gis_point;

INSERT INTO geom VALUES(0, ST_PointFromText('POINT(0 0)'));
INSERT INTO geom VALUES(1, ST_PointFromText('POINT(10 10)'));
INSERT INTO geom VALUES(2, ST_GeomFromText('POLYGON((7 1,6 2,6 3,10 3,10 1,7 1))'));

SELECT ST_AsText(g) FROM geom;

SELECT ST_AsText(p) FROM gis_point;

DELETE FROM geom WHERE g = ST_GeomFromText('POLYGON((7 1,6 2,6 3,10 3,10 1,7 1))');
--echo From GEOMETRY to POINT, now ALL the data are POINT
ALTER TABLE geom MODIFY g POINT NOT NULL SRID 0;
SHOW CREATE TABLE geom;
SELECT ST_AsText(g) FROM geom;

--echo From POINT to GEOMETRY, all data are POINT
ALTER TABLE geom MODIFY g GEOMETRY NOT NULL SRID 0;
SHOW CREATE TABLE geom;

TRUNCATE TABLE geom;

--echo From GEOMETRY to POINT, the table is empty
ALTER TABLE geom MODIFY g POINT NOT NULL SRID 0;
SHOW CREATE TABLE geom;
SELECT ST_AsText(g) FROM geom;

CHECK TABLE gis_point;
CHECK TABLE geom;

DROP TABLE gis_point, geom;



--echo #
--echo # Test when a geom field, such as POINT, is also a primary key
--echo #

CREATE TABLE t1 (
  a INT NOT NULL,
  p POINT NOT NULL SRID 0,
  l LINESTRING NOT NULL SRID 0,
  g GEOMETRY NOT NULL SRID 0,
  SPATIAL KEY `idx2` (p),
  SPATIAL KEY `idx3` (l),
  SPATIAL KEY `idx4` (g)
) ENGINE=InnoDB;

INSERT INTO t1 VALUES(
1, ST_GeomFromText('POINT(10 10)'),
ST_GeomFromText('LINESTRING(1 1, 5 5, 10 10)'),
ST_GeomFromText('POLYGON((30 30, 40 40, 50 50, 30 50, 30 40, 30 30))'));

INSERT INTO t1 VALUES(
2, ST_GeomFromText('POINT(20 20)'),
ST_GeomFromText('LINESTRING(2 3, 7 8, 9 10, 15 16)'),
ST_GeomFromText('POLYGON((10 30, 30 40, 40 50, 40 30, 30 20, 10 30))'));

ANALYZE TABLE t1;

SELECT a, ST_AsText(p), ST_AsText(l), ST_AsText(g) FROM t1;

--replace_column 10 #
EXPLAIN UPDATE t1 SET p = ST_GeomFromText('POINT(30 30)') WHERE p = ST_GeomFromText('POINT(20 20)');
UPDATE t1 SET p = ST_GeomFromText('POINT(30 30)') WHERE p = ST_GeomFromText('POINT(20 20)');

# Once Bug 18265942 - GIS: INNODB WOULD GET POSSIBLE WRONG FIND_FLAG FOR SELECT FROM SERVER is fixed, we can test all the following statements commented out.
#SELECT ST_AsText(p) FROM t1 WHERE MBRWithin(p, ST_GeomFromText('POLYGON((25 25, 25 35, 35 35, 35 25, 25 25))'));
#UPDATE t1 SET p = ST_GeomFromText('POINT(15 15)') WHERE MBRWithin(p, ST_GeomFromText('POLYGON((25 25, 25 35, 35 35, 35 25, 25 25))'));
#DELETE FROM t1 WHERE MBRWithin(p, ST_GeomFromText('LINESTRING(15 15, 15 25, 25 25, 35 15, 15 15)'));
#SELECT a, ST_AsText(p), ST_AsText(l), ST_AsText(g) FROM t1;
#INSERT INTO t1 VALUES(
#3, ST_GeomFromText('POINT(25 25)'),
#ST_GeomFromText('LINESTRING(2 3, 7 8, 9 10, 15 16)'),
#ST_GeomFromText('POLYGON((10 30, 30 40, 40 50, 40 30, 30 20, 10 30))'));
#UPDATE t1 SET p = ST_GeomFromText('POINT(50 50)'), l = ST_GeomFromText('LINESTRING(20 20, 21 21, 22 22, 23 23)') WHERE MBRWithin(g, ST_GeomFromText('LINESTRING(25 25, 25 50, 50 50, 50 25, 25 25)'));

SELECT a, ST_AsText(p), ST_AsText(l), ST_AsText(g) FROM t1;

ALTER TABLE t1 ADD PRIMARY KEY(a);

SELECT a, ST_AsText(p), ST_AsText(l), ST_AsText(g) FROM t1;

ALTER TABLE t1 DROP PRIMARY KEY;
--error ER_SPATIAL_UNIQUE_INDEX
ALTER TABLE t1 ADD PRIMARY KEY(p);

ANALYZE TABLE t1;

SELECT a, ST_AsText(p), ST_AsText(l), ST_AsText(g) FROM t1;

SHOW CREATE TABLE t1;

# Also waiting for Bug 18265942
#UPDATE t1 SET p = ST_PointFromText('POINT(20 20)') WHERE ST_Equals(p, ST_PointFromText('POINT(30 30)'));
#INSERT INTO t1 VALUES(
#3, ST_GeomFromText('POINT(25 25)'),
#ST_GeomFromText('LINESTRING(2 3, 7 8, 9 10, 15 16)'),
#ST_GeomFromText('POLYGON((10 30, 30 40, 40 50, 40 30, 30 20, 10 30))'));

SELECT a, ST_AsText(p), ST_AsText(l), ST_AsText(g) FROM t1;

--replace_column 10 #
EXPLAIN SELECT a, ST_AsText(p) FROM t1 WHERE a = 2 AND p = ST_GeomFromText('POINT(30 30)');
SELECT a, ST_AsText(p) FROM t1 WHERE a = 2 AND p = ST_GeomFromText('POINT(30 30)');

SELECT a, ST_AsText(p), ST_AsText(l), ST_AsText(g) FROM t1;

CHECK TABLE t1;

DROP TABLE t1;

--echo #
--echo # Test for foreign keys.
--echo #
CREATE TABLE parent(p POINT NOT NULL SRID 0) ENGINE=InnoDB;
CREATE TABLE child(p POINT NOT NULL SRID 0) ENGINE=InnoDB;
ALTER TABLE parent ADD SPATIAL INDEX idx1(p);
ALTER TABLE child ADD SPATIAL INDEX idx2(p);
SHOW CREATE TABLE parent;
SHOW CREATE TABLE child;

--error ER_FK_NO_INDEX_CHILD
ALTER TABLE child ADD FOREIGN KEY(p) REFERENCES parent(p);

ALTER TABLE parent DROP INDEX idx1;
--error ER_FK_NO_INDEX_CHILD
ALTER TABLE child ADD FOREIGN KEY(p) REFERENCES parent(p);

ALTER TABLE child DROP INDEX idx2;
--error ER_FK_NO_INDEX_CHILD
ALTER TABLE child ADD FOREIGN KEY(p) REFERENCES parent(p);

DROP TABLE child, parent;

--echo #
--echo # Bug#28763: Selecting geometry fields in UNION caused server crash.
--echo #
CREATE TABLE t1(f1 GEOMETRY, f2 POINT, f3 GEOMETRY) ENGINE=InnoDB;
SELECT f1 FROM t1 UNION SELECT f1 FROM t1;
INSERT INTO t1 (f2,f3) VALUES (ST_GeomFromText('POINT(1 1)'),
  ST_GeomFromText('POINT(2 2)'));
SELECT ST_AsText(f2),ST_AsText(f3) FROM t1;
SELECT ST_AsText(a) FROM (SELECT f2 AS a FROM t1 UNION SELECT f3 FROM t1) t;
CREATE TABLE t2 AS SELECT f2 AS a FROM t1 UNION SELECT f3 FROM t1;
DESC t2;
SELECT ST_AsText(a) FROM t2;
DROP TABLE t1, t2;