1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-02 14:47:37 +03:00

Merge 10.2 into 10.3

This commit is contained in:
Marko Mäkelä
2020-11-02 15:48:47 +02:00
32 changed files with 1636 additions and 97 deletions

View File

@ -3137,7 +3137,8 @@ inline void mark_as_null_row(TABLE *table)
{
table->null_row=1;
table->status|=STATUS_NULL_ROW;
bfill(table->null_flags,table->s->null_bytes,255);
if (table->s->null_bytes)
bfill(table->null_flags,table->s->null_bytes,255);
}
bool is_simple_order(ORDER *order);