Commit eca1b560 authored by cmiller@zippy.(none)'s avatar cmiller@zippy.(none)

Porting fix of Bug#19564 from 5.0/5.1 trees.

parent 72a47d06
......@@ -2338,8 +2338,7 @@ print_table_data(MYSQL_RES *result)
uint visible_length;
uint extra_padding;
/* If this column may have a null value, use "NULL" for empty. */
if (! not_null_flag[off] && (lengths[off] == 0))
if (! not_null_flag[off] && (cur[off] == NULL))
{
buffer= "NULL";
data_length= 4;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment