~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/drizzleslap.test

Merging stdize-code with main trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
 
61
61
--exec $DRIZZLE_SLAP --silent --concurrency=5 --iterations=1 --number-int-cols=2 --number-char-cols=3 --auto-generate-sql --auto-generate-sql-add-autoincrement --auto-generate-sql-load-type=write,read  --number-blob-cols=1:1024 --auto-generate-sql-select-columns="charcol1, blobcol1"
62
62
 
63
 
CREATE SCHEMA mysqlslap;
 
63
CREATE SCHEMA drizzleslap;
64
64
 
65
 
CREATE TABLE mysqlslap.t1 (id int, name varchar(64));
 
65
CREATE TABLE drizzleslap.t1 (id int, name varchar(64));
66
66
 
67
67
--exec $DRIZZLE_SLAP --silent --iterations=20  --query="select * from t1" --query="INSERT INTO t1 VALUES (1, 'This is a test');" --delimiter=";"
68
68
 
69
 
SELECT count(*) from mysqlslap.t1;
 
69
SELECT count(*) from drizzleslap.t1;
70
70
 
71
71
# Now we will test to make sure we can destory the data if it happens to be
72
72
# in our way.