mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
76f0b94bb0
sql/sql_insert.cc: CREATE ... IF NOT EXISTS may do nothing, but it is still not a failure. don't forget to my_ok it. ****** CREATE ... IF NOT EXISTS may do nothing, but it is still not a failure. don't forget to my_ok it. sql/sql_table.cc: small cleanup ****** small cleanup
7 lines
237 B
Text
7 lines
237 B
Text
# This is the test for bug #54044. Special handle MYSQL_TYPE_NULL type
|
|
# during create table, so it will not trigger assertion failure.
|
|
|
|
|
|
CREATE TEMPORARY TABLE table_54044 ENGINE = INNODB
|
|
AS SELECT IF(NULL IS NOT NULL, NULL, NULL);
|
|
|