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
f6168bb6
Commit
f6168bb6
authored
Apr 09, 2013
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup
parent
f6108b1f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
sql/share/errmsg-utf8.txt
sql/share/errmsg-utf8.txt
+3
-3
sql/unireg.cc
sql/unireg.cc
+2
-2
No files found.
sql/share/errmsg-utf8.txt
View file @
f6168bb6
...
...
@@ -6188,9 +6188,9 @@ ER_EXCEPTIONS_WRITE_ERROR
eng "Write to exceptions table failed. Message: %-.128s""
ger "Schreiben in Ausnahme-Tabelle fehlgeschlagen. Meldung: %-.128s""
ER_TOO_LONG_TABLE_COMMENT
eng "Comment for table '%-.64s' is too long (max = %
l
u)"
por "Comentário para a tabela '%-.64s' é longo demais (max = %
l
u)"
ger "Kommentar für Tabelle '%-.64s' ist zu lang (max = %
l
u)"
eng "Comment for table '%-.64s' is too long (max = %u)"
por "Comentário para a tabela '%-.64s' é longo demais (max = %u)"
ger "Kommentar für Tabelle '%-.64s' ist zu lang (max = %u)"
ER_TOO_LONG_FIELD_COMMENT
eng "Comment for field '%-.64s' is too long (max = %lu)"
por "Comentário para o campo '%-.64s' é longo demais (max = %lu)"
...
...
sql/unireg.cc
View file @
f6168bb6
...
...
@@ -166,12 +166,12 @@ LEX_CUSTRING build_frm_image(THD *thd, const char *table,
(
MODE_STRICT_TRANS_TABLES
|
MODE_STRICT_ALL_TABLES
)))
{
my_error
(
ER_TOO_LONG_TABLE_COMMENT
,
MYF
(
0
),
real_table_name
,
static_cast
<
ulong
>
(
TABLE_COMMENT_MAXLEN
)
);
real_table_name
,
TABLE_COMMENT_MAXLEN
);
DBUG_RETURN
(
frm
);
}
char
warn_buff
[
MYSQL_ERRMSG_SIZE
];
my_snprintf
(
warn_buff
,
sizeof
(
warn_buff
),
ER
(
ER_TOO_LONG_TABLE_COMMENT
),
real_table_name
,
static_cast
<
ulong
>
(
TABLE_COMMENT_MAXLEN
)
);
real_table_name
,
TABLE_COMMENT_MAXLEN
);
push_warning
(
current_thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
ER_TOO_LONG_TABLE_COMMENT
,
warn_buff
);
create_info
->
comment
.
length
=
tmp_len
;
...
...
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