1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

ORDER clause printing fixed (BUG#5156)

This commit is contained in:
bell@sanja.is.com.ua
2004-08-31 11:58:45 +03:00
parent 392c306969
commit 771c2998ed
7 changed files with 36 additions and 4 deletions

View File

@@ -10066,8 +10066,10 @@ find_order_in_list(THD *thd, Item **ref_pointer_array,
thd->where);
return 1;
}
order->item= ref_pointer_array + count-1;
order->item= ref_pointer_array + count - 1;
order->in_field_list= 1;
order->counter= count;
order->counter_used= 1;
return 0;
}
uint counter;