Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.4(EOL), 11.4
-
None
Description
I run the following SQL script with a Linux server with --lower-case-table-names=0:
CREATE DATABASE db1; |
CREATE TABLE db1.t1 (a INT); |
SELECT * FROM db1.t1; |
SHOW OPEN TABLES IN DB1; |
+----------+-------+--------+-------------+
|
| Database | Table | In_use | Name_locked |
|
+----------+-------+--------+-------------+
|
| db1 | t1 | 0 | 0 |
|
+----------+-------+--------+-------------+
|
Looks wrong. The expected result is empty set, as the database does not match.
Attachments
Issue Links
- relates to
-
MDEV-31340 Remove MY_COLLATION_HANDLER::strcasecmp()
- Closed