mysql-client-tests: s/value/value/g

This commit is contained in:
Andy Arthur
2020-10-30 15:07:06 -07:00
parent 1bef37e49a
commit 608b3a1b70
11 changed files with 60 additions and 60 deletions

View File

@@ -22,10 +22,10 @@ public class MySQLConnectorTest {
Statement st = conn.createStatement();
String[] queries = {
"create table test (pk int, value int, primary key(pk))",
"create table test (pk int, `value` int, primary key(pk))",
"describe test",
"select * from test",
"insert into test (pk, value) values (0,0)",
"insert into test (pk, `value`) values (0,0)",
"select * from test"
};