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
481f7632
Commit
481f7632
authored
Jun 10, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/jimw/my/mysql-4.1-9500
into mysql.com:/home/jimw/my/mysql-4.1-clean
parents
6271cf51
495ee34b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
5 deletions
+20
-5
mysql-test/r/lowercase_table2.result
mysql-test/r/lowercase_table2.result
+6
-1
mysql-test/t/lowercase_table2.test
mysql-test/t/lowercase_table2.test
+9
-1
sql/mysqld.cc
sql/mysqld.cc
+5
-3
No files found.
mysql-test/r/lowercase_table2.result
View file @
481f7632
DROP TABLE IF EXISTS t1,t2,
T1,T2,t3,T
3;
DROP TABLE IF EXISTS t1,t2,
t
3;
DROP DATABASE IF EXISTS `TEST_$1`;
DROP DATABASE IF EXISTS `test_$1`;
CREATE TABLE T1 (a int);
...
...
@@ -159,3 +159,8 @@ select * from myUC;
i
use test;
drop database mysqltest_LC2;
create table t2aA (col1 int);
create table t1Aa (col1 int);
select t1Aa.col1 from t1aA,t2Aa where t1Aa.col1 = t2aA.col1;
col1
drop table t2aA, t1Aa;
mysql-test/t/lowercase_table2.test
View file @
481f7632
...
...
@@ -10,7 +10,7 @@ show variables like "lower_case_table_names";
enable_query_log
;
--
disable_warnings
DROP
TABLE
IF
EXISTS
t1
,
t2
,
T1
,
T2
,
t3
,
T
3
;
DROP
TABLE
IF
EXISTS
t1
,
t2
,
t
3
;
DROP
DATABASE
IF
EXISTS
`TEST_$1`
;
DROP
DATABASE
IF
EXISTS
`test_$1`
;
--
enable_warnings
...
...
@@ -128,3 +128,11 @@ create table myUC (i int);
select
*
from
myUC
;
use
test
;
drop
database
mysqltest_LC2
;
#
# Bug #9500: Problem with WHERE clause
#
create
table
t2aA
(
col1
int
);
create
table
t1Aa
(
col1
int
);
select
t1Aa
.
col1
from
t1aA
,
t2Aa
where
t1Aa
.
col1
=
t2aA
.
col1
;
drop
table
t2aA
,
t1Aa
;
sql/mysqld.cc
View file @
481f7632
...
...
@@ -2988,6 +2988,11 @@ You should consider changing lower_case_table_names to 1 or 2",
lower_case_table_names
=
0
;
}
/* Reset table_alias_charset, now that lower_case_table_names is set. */
table_alias_charset
=
(
lower_case_table_names
?
files_charset_info
:
&
my_charset_bin
);
select_thread
=
pthread_self
();
select_thread_in_use
=
1
;
init_ssl
();
...
...
@@ -6509,9 +6514,6 @@ static void get_options(int argc,char **argv)
/* Set global variables based on startup options */
myisam_block_size
=
(
uint
)
1
<<
my_bit_log2
(
opt_myisam_block_size
);
table_alias_charset
=
(
lower_case_table_names
?
files_charset_info
:
&
my_charset_bin
);
if
(
opt_short_log_format
)
opt_specialflag
|=
SPECIAL_SHORT_LOG_FORMAT
;
...
...
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