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
abd77bc5
Commit
abd77bc5
authored
Oct 25, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/usr/home/ram/work/5.0.b14207
parents
10a889a5
e19b7f19
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
sql/sql_show.cc
sql/sql_show.cc
+3
-3
No files found.
sql/sql_show.cc
View file @
abd77bc5
...
...
@@ -2559,11 +2559,11 @@ static int get_schema_column_record(THD *thd, struct st_table_list *tables,
is_blob
=
(
field
->
type
()
==
FIELD_TYPE_BLOB
);
if
(
field
->
has_charset
()
||
is_blob
)
{
longlong
c
_octet
_len
=
is_blob
?
(
longlong
)
field
->
max_length
()
:
longlong
c
har_max
_len
=
is_blob
?
(
longlong
)
field
->
max_length
()
:
(
longlong
)
field
->
max_length
()
/
field
->
charset
()
->
mbmaxlen
;
table
->
field
[
8
]
->
store
(
(
longlong
)
field
->
max_length
()
,
TRUE
);
table
->
field
[
8
]
->
store
(
char_max_len
,
TRUE
);
table
->
field
[
8
]
->
set_notnull
();
table
->
field
[
9
]
->
store
(
c_octet_len
,
TRUE
);
table
->
field
[
9
]
->
store
(
(
longlong
)
field
->
max_length
()
,
TRUE
);
table
->
field
[
9
]
->
set_notnull
();
}
...
...
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