summaryrefslogtreecommitdiff
path: root/mysql-test/r/strict.result
diff options
context:
space:
mode:
authorunknown <gluh@gluh.mysql.r18.ru>2004-11-02 17:45:26 +0300
committerunknown <gluh@gluh.mysql.r18.ru>2004-11-02 17:45:26 +0300
commitefa50b5c03f703191fc4df6f5f083232350ed5bf (patch)
tree9028a53d5a17350d315c3bba47daa49454e964fb /mysql-test/r/strict.result
parent81ef1a41d7a3fe073831d6265e9d5491f9702f29 (diff)
downloadmariadb-git-efa50b5c03f703191fc4df6f5f083232350ed5bf.tar.gz
WL#1437 :don't create new users with GRANT
Diffstat (limited to 'mysql-test/r/strict.result')
-rw-r--r--mysql-test/r/strict.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/strict.result b/mysql-test/r/strict.result
index 31e3d82d52e..19c4def9b32 100644
--- a/mysql-test/r/strict.result
+++ b/mysql-test/r/strict.result
@@ -1,7 +1,7 @@
set @@sql_mode='ansi,traditional';
select @@sql_mode;
@@sql_mode
-REAL_AS_FLOAT,PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE,ONLY_FULL_GROUP_BY,ANSI,STRICT_TRANS_TABLES,STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,TRADITIONAL
+REAL_AS_FLOAT,PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE,ONLY_FULL_GROUP_BY,ANSI,STRICT_TRANS_TABLES,STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,TRADITIONAL,NO_AUTO_CREATE_USER
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (col1 date);
INSERT INTO t1 VALUES('2004-01-01'),('0000-10-31'),('2004-02-29');