~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Andrew Hutchings
  • Date: 2011-02-07 17:20:59 UTC
  • mfrom: (2148 staging)
  • mto: (2148.2.3 build)
  • mto: This revision was merged to the branch mainline in revision 2149.
  • Revision ID: andrew@linuxjedi.co.uk-20110207172059-dyeahrgzrlincoe3
Merge with trunk

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 1746    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 1746    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