summaryrefslogtreecommitdiff
path: root/mysql-test/t/gis-debug.test
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.org>2016-06-10 12:10:17 +0400
committerSergei Golubchik <serg@mariadb.org>2016-06-30 11:43:02 +0200
commit6c626117e7eab8c088f3f4afaadb098a16638918 (patch)
tree5ecca16ada6b5845c2af220b32d2cec8a4981a9f /mysql-test/t/gis-debug.test
parent2654eabbe023a4bbb3637ef6f69c421478eafc08 (diff)
downloadmariadb-git-6c626117e7eab8c088f3f4afaadb098a16638918.tar.gz
More test for MDEV-10134 Add full support for DEFAULT
Miscelaneous functions: BENCHMARK(), SLEEP(), ROW_COUNT(), FOUND_ROWS(), GET_LOCK(), RELEASE_LOCK(), IS_USED_LOCK(), IS_FREE_LOCK(), MASTER_POS_WAIT(), MASTER_GTID_WAIT(), BINLOG_GTID_POS(), ST_GIS_DEBUG(), DECODE_HISTOGRAM(),
Diffstat (limited to 'mysql-test/t/gis-debug.test')
-rw-r--r--mysql-test/t/gis-debug.test16
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/t/gis-debug.test b/mysql-test/t/gis-debug.test
index a0647a2c9f4..30fcb3661c4 100644
--- a/mysql-test/t/gis-debug.test
+++ b/mysql-test/t/gis-debug.test
@@ -4,3 +4,19 @@
SET @tmp=ST_GIS_DEBUG(1);
--source include/gis_debug.inc
+
+
+--echo #
+--echo # Start of 10.2 tests
+--echo #
+
+--echo #
+--echo # MDEV-10134 Add full support for DEFAULT
+--echo #
+
+--error ER_VIRTUAL_COLUMN_FUNCTION_IS_NOT_ALLOWED
+CREATE TABLE t1 (a INT DEFAULT ST_GIS_DEBUG(1));
+
+--echo #
+--echo # End of 10.2 tests
+--echo #