mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge ibabaev@bk-internal.mysql.com:/home/bk/mysql-4.1
into rurik.mysql.com:/home/igor/mysql-4.1
This commit is contained in:
@ -219,3 +219,10 @@ Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length I
|
||||
t1 MyISAM 9 Dynamic 0 0 0 4294967295 1024 0 NULL # # # latin1_swedish_ci NULL
|
||||
deallocate prepare stmt1 ;
|
||||
drop table t1;
|
||||
create table t1(a varchar(2), b varchar(3));
|
||||
prepare stmt1 from "select a, b from t1 where (not (a='aa' and b < 'zzz'))";
|
||||
execute stmt1;
|
||||
a b
|
||||
execute stmt1;
|
||||
a b
|
||||
deallocate prepare stmt1;
|
||||
|
Reference in New Issue
Block a user