1796.4.13
by Andrew Hutchings
Add read buffer constraint test |
1 |
# Setup table for tests
|
2 |
USE test; |
|
3 |
||
4 |
--source include/setup-global-constraints.inc |
|
5 |
||
6 |
create temporary table t3 (a varchar(255), b varchar(255)) engine=myisam; |
|
7 |
insert into t3 select * from t1; |
|
2107.1.1
by Brian Aker
Add in all of the error messages, also remove all cases of --error number |
8 |
--error ER_OUT_OF_GLOBAL_READMEMORY |
2141.4.2
by Andrew Hutchings
Implicit joins of the form "SELECT * FROM t1, t2" without WHERE or ON now error. |
9 |
select SQL_BIG_RESULT * from t3, (select * from t1) as t4 where t3.a != ''; |
2215.6.1
by Brian Aker
This modifies basic auth such that: |
10 |
|
11 |
--source include/teardown-global-constraints.inc |