~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Mark Atwood
  • Date: 2011-08-17 10:53:14 UTC
  • Revision ID: me@mark.atwood.name-20110817105314-6gwaf1g9gja7ms97
Update test result files, error code is now 1746 for transaction in progress

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
2
15
15
START TRANSACTION;
16
16
Warnings:
17
 
Warning 1746    There is already a transaction in progress
 
17
Warning 1747    There is already a transaction in progress
18
18
EXECUTE @insert_var;
19
19
ROLLBACK;
20
20
SELECT a FROM t1;
23
23
2
24
24
START TRANSACTION;
25
25
Warnings:
26
 
Warning 1746    There is already a transaction in progress
 
26
Warning 1747    There is already a transaction in progress
27
27
SET @insert_var= "INSERT INTO t1 VALUES(); SELECT WILL_ERROR;";
28
28
EXECUTE @insert_var;
29
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