summaryrefslogtreecommitdiff
path: root/mysql-test/t/type_set.test
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2002-05-27 23:21:49 +0300
committerunknown <monty@hundin.mysql.fi>2002-05-27 23:21:49 +0300
commit940a8a4020442f0d19d0137a8a847429af3f8a05 (patch)
treeb7628f15dd6175cb82488a180b631949318cbbf9 /mysql-test/t/type_set.test
parent38fad3332171b912e5342359b1dccb75ace7fbde (diff)
downloadmariadb-git-940a8a4020442f0d19d0137a8a847429af3f8a05.tar.gz
Renamed stripp_sp -> strip_sp
Remove end space from ENUM and SET strings mysql-test/t/type_enum.test: Test of end space in enum's Docs/manual.texi: Changelog include/my_sys.h: Renamed stripp_sp -> strip_sp mysql-test/r/type_enum.result: Test of end space in enums mysys/Makefile.am: change stripp_sp -> strip_sp mysys/mf_strip.c: change stripp_sp -> strip_sp sql/sql_db.cc: change stripp_sp -> strip_sp sql/sql_parse.cc: change stripp_sp -> strip_sp Remove end space from ENUM and SET strings
Diffstat (limited to 'mysql-test/t/type_set.test')
-rw-r--r--mysql-test/t/type_set.test10
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/t/type_set.test b/mysql-test/t/type_set.test
new file mode 100644
index 00000000000..39bcbcbf75d
--- /dev/null
+++ b/mysql-test/t/type_set.test
@@ -0,0 +1,10 @@
+#
+# Test of SET with space
+#
+
+create table t1 (a set (' ','a','b') not null);
+show create table t1;
+drop table t1;
+create table t1 (a set (' ','a','b ') not null default 'b ');
+show create table t1;
+drop table t1;