~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/execute/r/transaction.result

Merge in Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
1
14
14
2
15
15
START TRANSACTION;
 
16
Warnings:
 
17
Warning 1747    There is already a transaction in progress
16
18
EXECUTE @insert_var;
17
19
ROLLBACK;
18
20
SELECT a FROM t1;
20
22
1
21
23
2
22
24
START TRANSACTION;
 
25
Warnings:
 
26
Warning 1747    There is already a transaction in progress
23
27
SET @insert_var= "INSERT INTO t1 VALUES(); SELECT WILL_ERROR;";
24
28
EXECUTE @insert_var;
25
29
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near '; SELECT WILL_ERROR;' at line 1