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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
e5628412
Commit
e5628412
authored
Jan 05, 2009
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reverted the fix for bug #25830 because of omissions and non-complete test
case.
parent
4c788d93
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
35 deletions
+4
-35
mysql-test/r/lowercase_utf8.result
mysql-test/r/lowercase_utf8.result
+0
-9
mysql-test/t/lowercase_utf8-master.opt
mysql-test/t/lowercase_utf8-master.opt
+0
-4
mysql-test/t/lowercase_utf8.test
mysql-test/t/lowercase_utf8.test
+0
-9
sql/sql_show.cc
sql/sql_show.cc
+4
-13
No files found.
mysql-test/r/lowercase_utf8.result
deleted
100644 → 0
View file @
4c788d93
set names utf8;
create table `Ö` (id int);
show tables from test like 'Ö';
Tables_in_test (Ö)
ö
show tables from test like 'ö';
Tables_in_test (ö)
ö
drop table `Ö`;
mysql-test/t/lowercase_utf8-master.opt
deleted
100644 → 0
View file @
4c788d93
--lower-case-table-names=1 --character-set-server=utf8
mysql-test/t/lowercase_utf8.test
deleted
100644 → 0
View file @
4c788d93
#
# Bug#25830 SHOW TABLE STATUS behaves differently depending on table name
#
set
names
utf8
;
create
table
`Ö`
(
id
int
);
show
tables
from
test
like
'Ö'
;
show
tables
from
test
like
'ö'
;
drop
table
`Ö`
;
sql/sql_show.cc
View file @
e5628412
...
...
@@ -287,17 +287,11 @@ find_files(THD *thd, List<char> *files, const char *db,
#ifndef NO_EMBEDDED_ACCESS_CHECKS
uint
col_access
=
thd
->
col_access
;
#endif
uint
wild_length
=
0
;
TABLE_LIST
table_list
;
DBUG_ENTER
(
"find_files"
);
if
(
wild
)
{
if
(
!
wild
[
0
])
wild
=
0
;
else
wild_length
=
strlen
(
wild
);
}
if
(
wild
&&
!
wild
[
0
])
wild
=
0
;
bzero
((
char
*
)
&
table_list
,
sizeof
(
table_list
));
...
...
@@ -346,11 +340,8 @@ find_files(THD *thd, List<char> *files, const char *db,
{
if
(
lower_case_table_names
)
{
if
(
my_wildcmp
(
files_charset_info
,
file
->
name
,
file
->
name
+
strlen
(
file
->
name
),
wild
,
wild
+
wild_length
,
wild_prefix
,
wild_one
,
wild_many
))
continue
;
if
(
wild_case_compare
(
files_charset_info
,
file
->
name
,
wild
))
continue
;
}
else
if
(
wild_compare
(
file
->
name
,
wild
,
0
))
continue
;
...
...
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