diff options
author | unknown <marko@hundin.mysql.fi> | 2005-07-28 12:30:52 +0300 |
---|---|---|
committer | unknown <marko@hundin.mysql.fi> | 2005-07-28 12:30:52 +0300 |
commit | 9a2e86faba445d49d84143b757e8a2c5627a45e6 (patch) | |
tree | f4992f608d946f6cd3b8b1c5d5c95307488c912d /mysql-test/r/innodb.result | |
parent | fa85fa9f7262f5b873d43f1bdb6359501a693f73 (diff) | |
download | mariadb-git-9a2e86faba445d49d84143b757e8a2c5627a45e6.tar.gz |
row_sel_store_mysql_rec(): Convert NULL true VARCHAR columns
correctly.
innobase/row/row0sel.c:
Initialize NULL true VARCHAR columns with NUL bytes, as that is
what the columns will contain in handler::write_row(). (Bug #12186)
mysql-test/r/innodb.result:
Update table checksums to reflect the new handling of
true VARCHAR columns that are NULL.
Diffstat (limited to 'mysql-test/r/innodb.result')
-rw-r--r-- | mysql-test/r/innodb.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/innodb.result b/mysql-test/r/innodb.result index 2c73cbeeea4..2bdec5125dd 100644 --- a/mysql-test/r/innodb.result +++ b/mysql-test/r/innodb.result @@ -1452,16 +1452,16 @@ Error 1146 Table 'test.t4' doesn't exist checksum table t1, t2, t3, t4; Table Checksum test.t1 2948697075 -test.t2 1157260244 -test.t3 1157260244 +test.t2 3835700799 +test.t3 3835700799 test.t4 NULL Warnings: Error 1146 Table 'test.t4' doesn't exist checksum table t1, t2, t3, t4 extended; Table Checksum test.t1 3092701434 -test.t2 1157260244 -test.t3 1157260244 +test.t2 3835700799 +test.t3 3835700799 test.t4 NULL Warnings: Error 1146 Table 'test.t4' doesn't exist |