summaryrefslogtreecommitdiff
path: root/mysql-test/r/mysql.result
diff options
context:
space:
mode:
authorgluh@mysql.com/eagle.(none) <>2007-09-20 13:54:46 +0500
committergluh@mysql.com/eagle.(none) <>2007-09-20 13:54:46 +0500
commit6b81174cdec5ef444fadd1726f71412a3a0d9fb1 (patch)
tree2d2b37a24b870584b73222819553ad3805d7cff3 /mysql-test/r/mysql.result
parent56c927e69622f24ddd04b9fcd76c4f02a3bb7674 (diff)
downloadmariadb-git-6b81174cdec5ef444fadd1726f71412a3a0d9fb1.tar.gz
Bug#27747 database metadata doesn't return sufficient column default info
added get_field_default_value() function which obtains default value from the field (used in store_create_info() & get_schema_column_record() functions)
Diffstat (limited to 'mysql-test/r/mysql.result')
-rw-r--r--mysql-test/r/mysql.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/mysql.result b/mysql-test/r/mysql.result
index 74b5c42e59b..c6e589a5fb7 100644
--- a/mysql-test/r/mysql.result
+++ b/mysql-test/r/mysql.result
@@ -91,7 +91,7 @@ i j k
NULL 1 NULL
Field Type Null Key Default Extra
i int(11) YES NULL
-j int(11) NO
+j int(11) NO NULL
k int(11) YES NULL
+------+---+------+
| i | j | k |
@@ -102,7 +102,7 @@ k int(11) YES NULL
| Field | Type | Null | Key | Default | Extra |
+-------+---------+------+-----+---------+-------+
| i | int(11) | YES | | NULL | |
-| j | int(11) | NO | | | |
+| j | int(11) | NO | | NULL | |
| k | int(11) | YES | | NULL | |
+-------+---------+------+-----+---------+-------+
i s1