~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to tests/r/pbxt/statement_boundaries.result

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-10-02 14:17:48 UTC
  • mfrom: (1.1.1 upstream)
  • mto: (2.1.17 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20101002141748-m6vbfbfjhrw1153e
Tags: 2010.09.1802-1
* New upstream release.
* Removed pid-file argument hack.
* Updated GPL-2 address to be new address.
* Directly copy in drizzledump.1 since debian doesn't have sphinx 1.0 yet.
* Link to jquery from libjs-jquery. Add it as a depend.
* Add drizzled.8 symlink to the install files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SET AUTOCOMMIT= 0;
 
2
SHOW STATUS LIKE 'Handler_commit%';
 
3
Variable_name   Value
 
4
Handler_commit  0
 
5
BEGIN;
 
6
SHOW STATUS LIKE 'Handler_commit%';
 
7
Variable_name   Value
 
8
Handler_commit  0
 
9
DROP SCHEMA IF EXISTS boundaries;
 
10
Warnings:
 
11
Note    1008    Can't drop database 'boundaries'; database doesn't exist
 
12
SHOW STATUS LIKE 'Handler_commit%';
 
13
Variable_name   Value
 
14
Handler_commit  2
 
15
COMMIT;
 
16
SHOW STATUS LIKE 'Handler_commit%';
 
17
Variable_name   Value
 
18
Handler_commit  2
 
19
SET AUTOCOMMIT= 1;
 
20
SHOW STATUS LIKE 'Handler_commit%';
 
21
Variable_name   Value
 
22
Handler_commit  2
 
23
BEGIN;
 
24
DROP SCHEMA IF EXISTS boundaries;
 
25
Warnings:
 
26
Note    1008    Can't drop database 'boundaries'; database doesn't exist
 
27
COMMIT;
 
28
SHOW STATUS LIKE 'Handler_commit%';
 
29
Variable_name   Value
 
30
Handler_commit  4
 
31
CREATE TABLE commit_test (a int);
 
32
SHOW STATUS LIKE 'Handler_commit%';
 
33
Variable_name   Value
 
34
Handler_commit  4
 
35
INSERT into commit_test VALUES (10);
 
36
SHOW STATUS LIKE 'Handler_commit%';
 
37
Variable_name   Value
 
38
Handler_commit  4
 
39
INSERT into commit_test VALUES (10), (20);
 
40
SHOW STATUS LIKE 'Handler_commit%';
 
41
Variable_name   Value
 
42
Handler_commit  4
 
43
INSERT into commit_test VALUES (10);
 
44
SHOW STATUS LIKE 'Handler_commit%';
 
45
Variable_name   Value
 
46
Handler_commit  4
 
47
BEGIN;
 
48
INSERT into commit_test VALUES (10);
 
49
SHOW STATUS LIKE 'Handler_commit%';
 
50
Variable_name   Value
 
51
Handler_commit  4
 
52
COMMIT;
 
53
SHOW STATUS LIKE 'Handler_commit%';
 
54
Variable_name   Value
 
55
Handler_commit  6
 
56
BEGIN;
 
57
INSERT into commit_test VALUES (10);
 
58
SHOW STATUS LIKE 'Handler_commit%';
 
59
Variable_name   Value
 
60
Handler_commit  6
 
61
ROLLBACK;
 
62
Warnings:
 
63
Warning 1196    Some non-transactional changed tables couldn't be rolled back
 
64
SHOW STATUS LIKE 'Handler_commit%';
 
65
Variable_name   Value
 
66
Handler_commit  6
 
67
BEGIN;
 
68
INSERT into commit_test VALUES (10);
 
69
SHOW STATUS LIKE 'Handler_commit%';
 
70
Variable_name   Value
 
71
Handler_commit  6
 
72
COMMIT;
 
73
SHOW STATUS LIKE 'Handler_commit%';
 
74
Variable_name   Value
 
75
Handler_commit  8
 
76
SET AUTOCOMMIT= 0;
 
77
INSERT into commit_test VALUES (10);
 
78
INSERT into commit_test VALUES (10);
 
79
SHOW STATUS LIKE 'Handler_commit%';
 
80
Variable_name   Value
 
81
Handler_commit  8
 
82
drop table commit_test;
 
83
SHOW STATUS LIKE 'Handler_commit%';
 
84
Variable_name   Value
 
85
Handler_commit  9