diff options
author | Brian Cully <bjc@kublai.com> | 2012-02-09 23:02:24 -0500 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2012-02-09 23:02:24 -0500 |
commit | b3c35e4812356a55ab5c67164771f4cb80839e92 (patch) | |
tree | 750af11de141affbc9230131a3251b9f4eb0de92 /test/mysqlerl_SUITE_data | |
parent | 07369746fd460019822624c1a0651beaf19bf0ae (diff) | |
download | mysqlerl-b3c35e4812356a55ab5c67164771f4cb80839e92.tar.gz mysqlerl-b3c35e4812356a55ab5c67164771f4cb80839e92.zip |
Rename mysqlerl_SUITE to mysqlerl_readquery_SUITE
Diffstat (limited to 'test/mysqlerl_SUITE_data')
-rw-r--r-- | test/mysqlerl_SUITE_data/table-data.sql | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/mysqlerl_SUITE_data/table-data.sql b/test/mysqlerl_SUITE_data/table-data.sql deleted file mode 100644 index 410712f..0000000 --- a/test/mysqlerl_SUITE_data/table-data.sql +++ /dev/null @@ -1,11 +0,0 @@ -DROP TABLE IF EXISTS user; - -CREATE TABLE user ( - username VARCHAR(20) PRIMARY KEY NOT NULL, - password VARCHAR(64) -); - -INSERT INTO user (username, password) - VALUES ('bjc', MD5('test')); -INSERT INTO user (username, password) - VALUES ('siobain', MD5('test2')); |