~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/csv.result

  • Committer: Brian Aker
  • Date: 2009-06-13 07:06:41 UTC
  • mfrom: (1008.5.17 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 1062.
  • Revision ID: brian@gaz-20090613070641-ypyjtwk43i0po1e7
Merge Lee

Show diffs side-by-side

added added

removed removed

Lines of Context:
4975
4975
4
4976
4976
5
4977
4977
DROP TABLE bug14672;
4978
 
CREATE TABLE test_concurrent_insert ( val integer not null ) ENGINE = CSV;
4979
 
LOCK TABLES test_concurrent_insert READ LOCAL;
4980
 
INSERT INTO test_concurrent_insert VALUES (1);
4981
 
SELECT * FROM test_concurrent_insert;
4982
 
val
4983
 
1
4984
 
SELECT * FROM test_concurrent_insert;
4985
 
val
4986
 
UNLOCK TABLES;
4987
 
LOCK TABLES test_concurrent_insert WRITE;
4988
 
INSERT INTO test_concurrent_insert VALUES (2);
4989
 
SELECT * FROM test_concurrent_insert;
4990
 
val
4991
 
1
4992
 
2
4993
 
UNLOCK TABLES;
4994
 
DROP TABLE test_concurrent_insert;
4995
4978
CREATE TABLE test_repair_table ( val integer not null ) ENGINE = CSV;
4996
4979
CHECK TABLE test_repair_table;
4997
4980
Table   Op      Msg_type        Msg_text