Navigation Menu

Skip to content

Commit

Permalink
test: show inserted records to confirm records are inserted
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Feb 4, 2014
1 parent 512e73e commit 1e2d084
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mysql-test/mroonga/storage/geometry/r/bulk_insert_null.result
Expand Up @@ -6,4 +6,8 @@ INSERT INTO shops VALUES (NULL), (NULL);
Warnings:
Warning 1048 Column 'location' cannot be null
Warning 1048 Column 'location' cannot be null
SELECT AsText(location) FROM shops;
AsText(location)
POINT(0 0)
POINT(0 0)
DROP TABLE shops;
2 changes: 2 additions & 0 deletions mysql-test/mroonga/storage/geometry/t/bulk_insert_null.test
Expand Up @@ -27,6 +27,8 @@ CREATE TABLE shops (

INSERT INTO shops VALUES (NULL), (NULL);

SELECT AsText(location) FROM shops;

DROP TABLE shops;

--source ../../../include/mroonga/have_mroonga_deinit.inc

0 comments on commit 1e2d084

Please sign in to comment.