~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Stewart Smith
  • Date: 2011-01-21 01:09:12 UTC
  • mfrom: (2099 staging)
  • mto: (2099.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2100.
  • Revision ID: stewart@flamingspork.com-20110121010912-x5ogi8rm08nortxp
merge 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
18
16
EXECUTE @insert_var;
19
17
ROLLBACK;
20
18
SELECT a FROM t1;
22
20
1
23
21
2
24
22
START TRANSACTION;
25
 
Warnings:
26
 
Warning 1746    There is already a transaction in progress
27
23
SET @insert_var= "INSERT INTO t1 VALUES(); SELECT WILL_ERROR;";
28
24
EXECUTE @insert_var;
29
25
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
32
28
a
33
29
1
34
30
2
35
 
SET AUTOCOMMIT= 1;
36
31
DROP TABLE t1;