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

« back to all changes in this revision

Viewing changes to plugin/pbxt/tests/t/basic_transaction_autocommit.test

  • 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
--source include/have_linux.inc
 
2
SET SESSION storage_engine=pbxt;
 
3
connect (con1,localhost,root,,);
 
4
connect (con2,localhost,root,,);
 
5
connection con1;
 
6
CREATE TABLE t1 (a int primary key);
 
7
INSERT INTO t1 VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10), (11),(12),(13),(14),(15),(16),(17),(18),(19),(20), (21),(22),(23),(24),(25),(26),(27),(28),(29),(30), (31),(32);
 
8
connection con2;
 
9
select count(*) from t1;
 
10
connection con1;
 
11
INSERT INTO t1 VALUES  (33),(34),(35),(36),(37),(38),(39),(40),(41),(42);
 
12
COMMIT;
 
13
SELECT count(*) from t1;
 
14
disconnect con1;
 
15
disconnect con2;
 
16
connection default;
 
17
DROP TABLE t1;
 
18