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
c0f1e9cd
Commit
c0f1e9cd
authored
Oct 22, 2012
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql-5.1 to mysql-5.5.
parents
5fa2a21f
b6bc19d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
storage/innobase/handler/handler0alter.cc
storage/innobase/handler/handler0alter.cc
+5
-1
No files found.
storage/innobase/handler/handler0alter.cc
View file @
c0f1e9cd
...
...
@@ -112,13 +112,17 @@ innobase_col_to_mysql(
/* These column types should never be shipped to MySQL. */
ut_ad
(
0
);
case
DATA_CHAR
:
case
DATA_FIXBINARY
:
case
DATA_FLOAT
:
case
DATA_DOUBLE
:
case
DATA_DECIMAL
:
/* Above are the valid column types for MySQL data. */
ut_ad
(
flen
==
len
);
/* fall through */
case
DATA_CHAR
:
/* We may have flen > len when there is a shorter
prefix on a CHAR column. */
ut_ad
(
flen
>=
len
);
#else
/* UNIV_DEBUG */
default:
#endif
/* UNIV_DEBUG */
...
...
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