Skip to content

Commit

Permalink
test: remove needless check
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Aug 25, 2016
1 parent ab4c74b commit b41c2d2
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,6 @@ name TEXT,
location GEOMETRY NOT NULL,
SPATIAL KEY location_index (location)
);
SHOW CREATE TABLE shops;
Table Create Table
shops CREATE TABLE `shops` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` text,
`location` geometry NOT NULL,
PRIMARY KEY (`id`),
SPATIAL KEY `location_index` (`location`)
) ENGINE=Mroonga DEFAULT CHARSET=latin1
INSERT INTO shops (name, location)
VALUES ('nezu-no-taiyaki',
ST_GeomFromText('POINT(139.762573 35.720253)'));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ CREATE TABLE shops (
location GEOMETRY NOT NULL,
SPATIAL KEY location_index (location)
);
SHOW CREATE TABLE shops;

INSERT INTO shops (name, location)
VALUES ('nezu-no-taiyaki',
Expand Down
9 changes: 0 additions & 9 deletions mysql-test/mroonga/storage/geometry/r/contains.result
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,6 @@ name TEXT,
location GEOMETRY NOT NULL,
SPATIAL KEY location_index (location)
);
SHOW CREATE TABLE shops;
Table Create Table
shops CREATE TABLE `shops` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` text,
`location` geometry NOT NULL,
PRIMARY KEY (`id`),
SPATIAL KEY `location_index` (`location`)
) ENGINE=Mroonga DEFAULT CHARSET=latin1
INSERT INTO shops (name, location)
VALUES ('nezu-no-taiyaki',
ST_GeomFromText('POINT(139.762573 35.720253)'));
Expand Down
1 change: 0 additions & 1 deletion mysql-test/mroonga/storage/geometry/t/contains.test
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ CREATE TABLE shops (
location GEOMETRY NOT NULL,
SPATIAL KEY location_index (location)
);
SHOW CREATE TABLE shops;

INSERT INTO shops (name, location)
VALUES ('nezu-no-taiyaki',
Expand Down

0 comments on commit b41c2d2

Please sign in to comment.