We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca5f941 commit ca2582cCopy full SHA for ca2582c
test/integration/datatype/json.test.js
@@ -192,7 +192,7 @@ describe.concurrent('json', () => {
192
await conn.query('CREATE TABLE `test-json-return-type2` (val1 JSON, val2 LONGTEXT, val3 LONGBLOB)');
193
await conn.beginTransaction();
194
await conn.query(
195
- "INSERT INTO `test-json-return-type` values ('" + jsonString + "','" + jsonString + "','" + jsonString + "')"
+ "INSERT INTO `test-json-return-type2` values ('" + jsonString + "','" + jsonString + "','" + jsonString + "')"
196
);
197
198
let rows = await conn.query('SELECT * FROM `test-json-return-type2`');
0 commit comments