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 | a6350b1d05cacde74f606fdcbdf51f7acca9e965 (patch) | |
tree | f4992f608d946f6cd3b8b1c5d5c95307488c912d /mysql-test/r/innodb.result | |
parent | 57c537c6afb7ff7a8987a6e2e47a008284e12fa5 (diff) | |
download | mariadb-git-a6350b1d05cacde74f606fdcbdf51f7acca9e965.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 |