aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/tests/mysql/testdb.sql
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/tests/mysql/testdb.sql')
-rw-r--r--nixpkgs/nixos/tests/mysql/testdb.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/nixpkgs/nixos/tests/mysql/testdb.sql b/nixpkgs/nixos/tests/mysql/testdb.sql
new file mode 100644
index 00000000000..3c68c49ae82
--- /dev/null
+++ b/nixpkgs/nixos/tests/mysql/testdb.sql
@@ -0,0 +1,11 @@
+create table tests
+( Id INTEGER NOT NULL,
+ Name VARCHAR(255) NOT NULL,
+ primary key(Id)
+);
+
+insert into tests values (1, 'a');
+insert into tests values (2, 'b');
+insert into tests values (3, 'c');
+insert into tests values (4, 'd');
+insert into tests values (5, 'hello');