mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-27 07:26:31 -05:00
mysql-client-tests: s/value/value/g
This commit is contained in:
@@ -2,12 +2,12 @@ import mysql.connector
|
||||
import sys
|
||||
|
||||
QUERY_RESPONSE = [
|
||||
{ "create table test (pk int, value int, primary key(pk))": [] },
|
||||
{ "create table test (pk int, `value` int, primary key(pk))": [] },
|
||||
{ "describe test": [
|
||||
('pk', 'int', 'NO', 'PRI', '', ''),
|
||||
('value', 'int', 'YES', '', '', '')
|
||||
] },
|
||||
{ "insert into test (pk, value) values (0,0)": [] },
|
||||
{ "insert into test (pk, `value`) values (0,0)": [] },
|
||||
{ "select * from test": [(0,0)] }
|
||||
]
|
||||
|
||||
|
||||
@@ -2,12 +2,12 @@ import pymysql
|
||||
import sys
|
||||
|
||||
QUERY_RESPONSE = [
|
||||
{ "create table test (pk int, value int, primary key(pk))": () },
|
||||
{ "create table test (pk int, `value` int, primary key(pk))": () },
|
||||
{ "describe test": (
|
||||
('pk', 'int', 'NO', 'PRI', '', ''),
|
||||
('value', 'int', 'YES', '', '', '')
|
||||
) },
|
||||
{ "insert into test (pk, value) values (0,0)": () },
|
||||
{ "insert into test (pk, `value`) values (0,0)": () },
|
||||
{ "select * from test": ((0,0),) }
|
||||
]
|
||||
|
||||
|
||||
@@ -6,12 +6,12 @@ from sqlalchemy import create_engine
|
||||
import sys
|
||||
|
||||
QUERY_RESPONSE = [
|
||||
{ "create table test (pk int, value int, primary key(pk))": [] },
|
||||
{ "create table test (pk int, `value` int, primary key(pk))": [] },
|
||||
{ "describe test": [
|
||||
('pk', 'int', 'NO', 'PRI', '', ''),
|
||||
('value', 'int', 'YES', '', '', '')
|
||||
] },
|
||||
{ "insert into test (pk, value) values (0,0)": () },
|
||||
{ "insert into test (pk, `value`) values (0,0)": () },
|
||||
{ "select * from test": [(0,0)] }
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user