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
fb7f1518
Commit
fb7f1518
authored
Jul 02, 2004
by
paul@ice.snake.net
Browse files
Options
Browse Files
Download
Plain Diff
Merge paul@bk-internal.mysql.com:/home/bk/mysql-4.1
into ice.snake.net:/Volumes/ice2/MySQL/bk/mysql-4.1
parents
8ead38a5
4df5a14a
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
21 additions
and
4 deletions
+21
-4
configure.in
configure.in
+1
-1
mysql-test/r/show_check.result
mysql-test/r/show_check.result
+7
-0
mysql-test/t/show_check.test
mysql-test/t/show_check.test
+8
-0
sql/share/charsets/Index.xml
sql/share/charsets/Index.xml
+1
-1
sql/share/charsets/armscii8.xml
sql/share/charsets/armscii8.xml
+1
-1
sql/sql_yacc.yy
sql/sql_yacc.yy
+3
-1
No files found.
configure.in
View file @
fb7f1518
...
...
@@ -2525,7 +2525,7 @@ done
case
$default_charset
in
armscii8)
default_charset_default_collation="
armscii8_general_ci
"
default_charset_collations="
armscii8_general_ci armscii_bin
"
default_charset_collations="
armscii8_general_ci armscii
8
_bin
"
;;
ascii)
default_charset_default_collation="
ascii_general_ci
"
...
...
mysql-test/r/show_check.result
View file @
fb7f1518
...
...
@@ -400,3 +400,10 @@ where user='mysqltest_1' || user='mysqltest_2' || user='mysqltest_3';
delete from mysql.db
where user='mysqltest_1' || user='mysqltest_2' || user='mysqltest_3';
flush privileges;
set names latin1;
create database ``;
create table ``.`` (a int) engine=heap;
show table status from `` LIKE '';
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
HEAP 9 Fixed 0 5 # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
drop database ``;
mysql-test/t/show_check.test
View file @
fb7f1518
...
...
@@ -304,3 +304,11 @@ where user='mysqltest_1' || user='mysqltest_2' || user='mysqltest_3';
delete
from
mysql
.
db
where
user
=
'mysqltest_1'
||
user
=
'mysqltest_2'
||
user
=
'mysqltest_3'
;
flush
privileges
;
#Bug #4374 SHOW TABLE STATUS FROM ignores collation_connection
set
names
latin1
;
create
database
``
;
create
table
``
.
``
(
a
int
)
engine
=
heap
;
--
replace_column
7
# 8 # 9 #
show
table
status
from
``
LIKE
''
;
drop
database
``
;
sql/share/charsets/Index.xml
View file @
fb7f1518
...
...
@@ -402,7 +402,7 @@ To make maintaining easier please:
<description>
ARMSCII-8 Armenian
</description>
<alias>
armscii-8
</alias>
<collation
name=
"armscii8_general_ci"
id=
"32"
order=
"Armenian"
flag=
"primary"
/>
<collation
name=
"armscii
_bin"
id=
"64"
order=
"Binary"
flag=
"binary"
/>
<collation
name=
"armscii
8_bin"
id=
"64"
order=
"Binary"
flag=
"binary"
/>
</charset>
<charset
name=
"utf8"
>
...
...
sql/share/charsets/armscii8.xml
View file @
fb7f1518
...
...
@@ -114,7 +114,7 @@
</map>
</collation>
<collation
name=
"armscii_bin"
flag=
"binary"
/>
<collation
name=
"armscii
8
_bin"
flag=
"binary"
/>
</charset>
...
...
sql/sql_yacc.yy
View file @
fb7f1518
...
...
@@ -4422,7 +4422,9 @@ opt_db:
wild:
/* empty */
| LIKE text_string { Lex->wild= $2; };
| LIKE TEXT_STRING_sys
{ Lex->wild= new (&YYTHD->mem_root) String($2.str, $2.length,
system_charset_info); };
opt_full:
/* empty */ { Lex->verbose=0; }
...
...
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