Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
75ee7198
Commit
75ee7198
authored
Dec 11, 2009
by
V Narayanan
Browse files
Options
Browse Files
Download
Plain Diff
merging with mysql-5.1-bugteam
parents
1704a8a9
e3df8b6d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
1 deletion
+20
-1
mysql-test/suite/ibmdb2i/r/ibmdb2i_bug_49329.result
mysql-test/suite/ibmdb2i/r/ibmdb2i_bug_49329.result
+9
-0
mysql-test/suite/ibmdb2i/t/ibmdb2i_bug_49329.test
mysql-test/suite/ibmdb2i/t/ibmdb2i_bug_49329.test
+10
-0
storage/ibmdb2i/ha_ibmdb2i.cc
storage/ibmdb2i/ha_ibmdb2i.cc
+1
-1
No files found.
mysql-test/suite/ibmdb2i/r/ibmdb2i_bug_49329.result
0 → 100644
View file @
75ee7198
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;
i
1
drop table ABC;
drop table abc;
mysql-test/suite/ibmdb2i/t/ibmdb2i_bug_49329.test
0 → 100644
View file @
75ee7198
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
;
storage/ibmdb2i/ha_ibmdb2i.cc
View file @
75ee7198
...
@@ -284,7 +284,7 @@ static int ibmdb2i_init_func(void *p)
...
@@ -284,7 +284,7 @@ static int ibmdb2i_init_func(void *p)
was_ILE_inited
=
false
;
was_ILE_inited
=
false
;
ibmdb2i_hton
=
(
handlerton
*
)
p
;
ibmdb2i_hton
=
(
handlerton
*
)
p
;
VOID
(
pthread_mutex_init
(
&
ibmdb2i_mutex
,
MY_MUTEX_INIT_FAST
));
VOID
(
pthread_mutex_init
(
&
ibmdb2i_mutex
,
MY_MUTEX_INIT_FAST
));
(
void
)
hash_init
(
&
ibmdb2i_open_tables
,
system_charset_info
,
32
,
0
,
0
,
(
void
)
hash_init
(
&
ibmdb2i_open_tables
,
table_alias_charset
,
32
,
0
,
0
,
(
hash_get_key
)
ibmdb2i_get_key
,
0
,
0
);
(
hash_get_key
)
ibmdb2i_get_key
,
0
,
0
);
ibmdb2i_hton
->
state
=
SHOW_OPTION_YES
;
ibmdb2i_hton
->
state
=
SHOW_OPTION_YES
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment