1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Fixed indention, removed compiler varnings and fixed a bug

in FULLTEXT indexes.
This commit is contained in:
monty@donna.mysql.com
2000-09-29 00:58:16 +03:00
parent 17dec8eadd
commit 02fd65b970
21 changed files with 372 additions and 361 deletions

View File

@ -553,11 +553,11 @@ bool select_dump::send_data(List<Item> &items)
}
while ((item=li++))
{
Item_result result_type=item->result_type();
res=item->str_result(&tmp);
if (!res)
if (!res) // If NULL
{
if (my_b_write(&cache,(byte*) "",1)) goto err; // NULL
if (my_b_write(&cache,(byte*) "",1))
goto err;
}
else if (my_b_write(&cache,(byte*) res->ptr(),res->length()))
{