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
70bb923a
Commit
70bb923a
authored
Sep 11, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix WARN_DEPRECATED for 5.0 (it is in 5.1 we should have the extra arguments)
parent
e573a775
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sql/sql_yacc.yy
sql/sql_yacc.yy
+2
-2
No files found.
sql/sql_yacc.yy
View file @
70bb923a
...
@@ -6873,7 +6873,7 @@ load: LOAD DATA_SYM
...
@@ -6873,7 +6873,7 @@ load: LOAD DATA_SYM
YYABORT;
YYABORT;
}
}
lex->sql_command = SQLCOM_LOAD_MASTER_TABLE;
lex->sql_command = SQLCOM_LOAD_MASTER_TABLE;
WARN_DEPRECATED(
yythd, "5.2",
"LOAD TABLE FROM MASTER",
WARN_DEPRECATED("LOAD TABLE FROM MASTER",
"mysqldump or future "
"mysqldump or future "
"BACKUP/RESTORE DATABASE facility");
"BACKUP/RESTORE DATABASE facility");
if (!Select->add_table_to_list(YYTHD, $3, NULL, TL_OPTION_UPDATING))
if (!Select->add_table_to_list(YYTHD, $3, NULL, TL_OPTION_UPDATING))
...
@@ -6914,7 +6914,7 @@ load_data:
...
@@ -6914,7 +6914,7 @@ load_data:
FROM MASTER_SYM
FROM MASTER_SYM
{
{
Lex->sql_command = SQLCOM_LOAD_MASTER_DATA;
Lex->sql_command = SQLCOM_LOAD_MASTER_DATA;
WARN_DEPRECATED(
yythd, "5.2",
"LOAD DATA FROM MASTER",
WARN_DEPRECATED("LOAD DATA FROM MASTER",
"mysqldump or future "
"mysqldump or future "
"BACKUP/RESTORE DATABASE facility");
"BACKUP/RESTORE DATABASE facility");
};
};
...
...
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