You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/mysql-mariadb.spec.js
+13-6Lines changed: 13 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -382,7 +382,7 @@ describe('mysql', () => {
382
382
'SELECT * FROM (`t1` AS `eti` INNER JOIN `bagel` ON `bagel`.`id` = `eti`.`id`) ; SELECT * FROM ((`t1`))'
383
383
]
384
384
},
385
-
385
+
386
386
{
387
387
title: 'blob data type',
388
388
sql: [
@@ -1229,8 +1229,8 @@ describe('mysql', () => {
1229
1229
inner join salaries using (emp_no)
1230
1230
order by emp_no desc;
1231
1231
1232
-
SELECT * FROM \`employees\`
1233
-
INNER JOIN \`salaries\` USING (\`emp_no\`)
1232
+
SELECT * FROM \`employees\`
1233
+
INNER JOIN \`salaries\` USING (\`emp_no\`)
1234
1234
ORDER BY \`emp_no\` DESC;`,
1235
1235
'SELECT * FROM `employees` INNER JOIN `salaries` USING (emp_no) ORDER BY `emp_no` DESC ; SELECT * FROM `employees` INNER JOIN `salaries` USING (`emp_no`) ORDER BY `emp_no` DESC'
1236
1236
]
@@ -1312,6 +1312,13 @@ describe('mysql', () => {
1312
1312
"SELECT * FROM `T` WHERE `a` LIKE 'foobar%' XOR `c` = `d`"
1313
1313
]
1314
1314
},
1315
+
{
1316
+
title: 'support accentuated identifiers',
1317
+
sql: [
1318
+
"SELECT crème AS brûlée FROM café WHERE théâtre = 'Molière'",
1319
+
"SELECT `crème` AS `brûlée` FROM `café` WHERE `théâtre` = 'Molière'"
0 commit comments