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
659e76d8
Commit
659e76d8
authored
Jun 29, 2012
by
Gleb Shchepa
Browse files
Options
Browse Files
Download
Plain Diff
auto-merge
parents
e65c2918
521deaf3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
sql/field.cc
sql/field.cc
+1
-1
sql/sql_yacc.yy
sql/sql_yacc.yy
+1
-1
No files found.
sql/field.cc
View file @
659e76d8
...
...
@@ -9933,7 +9933,7 @@ Create_field::Create_field(Field *old_field,Field *orig_field)
if
(
length
!=
4
)
{
char
buff
[
sizeof
(
"YEAR()"
)
+
MY_INT64_NUM_DECIMAL_DIGITS
+
1
];
snprintf
(
buff
,
sizeof
(
buff
),
"YEAR(%lu)"
,
length
);
my_
snprintf
(
buff
,
sizeof
(
buff
),
"YEAR(%lu)"
,
length
);
push_warning_printf
(
current_thd
,
MYSQL_ERROR
::
WARN_LEVEL_NOTE
,
ER_WARN_DEPRECATED_SYNTAX
,
ER
(
ER_WARN_DEPRECATED_SYNTAX
),
...
...
sql/sql_yacc.yy
View file @
659e76d8
...
...
@@ -5473,7 +5473,7 @@ type:
if (errno == 0 && length <= MAX_FIELD_BLOBLENGTH && length != 4)
{
char buff[sizeof("YEAR()") + MY_INT64_NUM_DECIMAL_DIGITS + 1];
snprintf(buff, sizeof(buff), "YEAR(%lu)", length);
my_
snprintf(buff, sizeof(buff), "YEAR(%lu)", length);
push_warning_printf(YYTHD, MYSQL_ERROR::WARN_LEVEL_NOTE,
ER_WARN_DEPRECATED_SYNTAX,
ER(ER_WARN_DEPRECATED_SYNTAX),
...
...
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