mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Part of MDEV-10134 Add full support for DEFAULT
Print default values for BLOB's. This is a part commit for automatic changes to make the real commit smaller. All changes here are related to that we now print DEFAULT NULL for blob and text fields, like we do for all other fields.
This commit is contained in:
committed by
Sergei Golubchik
parent
3aadba1557
commit
6c173324ff
@ -17,7 +17,7 @@ Table Create Table
|
||||
t1 CREATE TABLE `t1` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`a` varchar(200) DEFAULT NULL,
|
||||
`b` text,
|
||||
`b` text DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
FULLTEXT KEY `idx_1` (`a`),
|
||||
FULLTEXT KEY `idx_2` (`b`)
|
||||
|
Reference in New Issue
Block a user