mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
e3df8b6d9a
This fix changes the character set used within the IBMDB2I handler to hash table names to information about open tables. Previously, tables with names that differed only in letter case would hash to the same data structure. This caused incorrect behavior or errors when two such tables were in use simultaneously.
10 lines
298 B
Text
10 lines
298 B
Text
source suite/ibmdb2i/include/have_ibmdb2i.inc;
|
|
source include/have_case_sensitive_file_system.inc;
|
|
|
|
create table ABC (i int) engine=ibmdb2i;
|
|
insert into ABC values(1);
|
|
create table abc (i int) engine=ibmdb2i;
|
|
insert into abc values (2);
|
|
select * from ABC;
|
|
drop table ABC;
|
|
drop table abc;
|