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
34b15e6a
Commit
34b15e6a
authored
Jun 19, 2006
by
bar@bar.intranet.mysql.r18.ru
Browse files
Options
Browse Files
Download
Plain Diff
Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-5.1-kt
into mysql.com:/usr/home/bar/mysql-5.1-kt
parents
c106b083
9ea82d35
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
2 deletions
+25
-2
mysql-test/r/ctype_latin1.result
mysql-test/r/ctype_latin1.result
+14
-0
mysql-test/t/ctype_latin1.test
mysql-test/t/ctype_latin1.test
+11
-0
sql/sql_lex.cc
sql/sql_lex.cc
+0
-2
No files found.
mysql-test/r/ctype_latin1.result
View file @
34b15e6a
...
...
@@ -391,3 +391,17 @@ ABC
SELECT convert(@str collate latin1_swedish_ci using utf8);
convert(@str collate latin1_swedish_ci using utf8)
ABC ߲~ @ abc
SET NAMES latin1;
DROP TABLE IF EXISTS `abcdef`;
CREATE TABLE `abcdef` (i int);
INSERT INTO `abcdef` VALUES (1);
INSERT INTO abcdef VALUES (2);
SELECT * FROM `abcdef`;
i
1
2
SELECT * FROM abcdef;
i
1
2
DROP TABLE `abcdef`;
mysql-test/t/ctype_latin1.test
View file @
34b15e6a
...
...
@@ -110,3 +110,14 @@ SELECT convert(@str collate latin1_german2_ci using utf8);
SELECT
convert
(
@
str
collate
latin1_swedish_ci
using
utf8
);
# End of 4.1 tests
SET
NAMES
latin1
;
--
disable_warnings
DROP
TABLE
IF
EXISTS
`abcdef`
;
--
enable_warnings
CREATE
TABLE
`abcdef`
(
i
int
);
INSERT
INTO
`abcdef`
VALUES
(
1
);
INSERT
INTO
abcdef
VALUES
(
2
);
SELECT
*
FROM
`abcdef`
;
SELECT
*
FROM
abcdef
;
DROP
TABLE
`abcdef`
;
sql/sql_lex.cc
View file @
34b15e6a
...
...
@@ -777,8 +777,6 @@ int MYSQLlex(void *arg, void *yythd)
int
length
;
if
((
length
=
my_mbcharlen
(
cs
,
c
))
==
1
)
{
if
(
c
==
(
uchar
)
NAMES_SEP_CHAR
)
break
;
/* Old .frm format can't handle this char */
if
(
c
==
quote_char
)
{
if
(
yyPeek
()
!=
quote_char
)
...
...
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