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
fa756cd3
Commit
fa756cd3
authored
Sep 11, 2012
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
4fb57747
8c641484
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
0 deletions
+35
-0
mysql-test/r/contributors.result
mysql-test/r/contributors.result
+2
-0
mysql-test/r/show_check.result
mysql-test/r/show_check.result
+11
-0
mysql-test/t/show_check.test
mysql-test/t/show_check.test
+14
-0
sql/sql_yacc.yy
sql/sql_yacc.yy
+8
-0
No files found.
mysql-test/r/contributors.result
View file @
fa756cd3
...
...
@@ -3,3 +3,5 @@ Name Location Comment
Ronald Bradford Brisbane, Australia EFF contribution for UC2006 Auction
Sheeri Kritzer Boston, Mass. USA EFF contribution for UC2006 Auction
Mark Shuttleworth London, UK. EFF contribution for UC2006 Auction
Warnings:
Warning 1681 'SHOW CONTRIBUTORS' is deprecated and will be removed in a future release.
mysql-test/r/show_check.result
View file @
fa756cd3
...
...
@@ -1552,3 +1552,14 @@ RELEASE_LOCK('t')
óóóó
1
SET NAMES latin1;
#
# WL#6454: Deprecate SHOW AUTHORS and SHOW CONTRIBUTORS
#
SHOW AUTHORS;
SHOW WARNINGS;
Level Code Message
Warning 1681 'SHOW AUTHORS' is deprecated and will be removed in a future release.
SHOW CONTRIBUTORS;
SHOW WARNINGS;
Level Code Message
Warning 1681 'SHOW CONTRIBUTORS' is deprecated and will be removed in a future release.
mysql-test/t/show_check.test
View file @
fa756cd3
...
...
@@ -1371,3 +1371,17 @@ SELECT RELEASE_LOCK('t');
--
connection
default
SET
NAMES
latin1
;
--
echo
#
--
echo
# WL#6454: Deprecate SHOW AUTHORS and SHOW CONTRIBUTORS
--
echo
#
--
disable_result_log
SHOW
AUTHORS
;
--
enable_result_log
SHOW
WARNINGS
;
--
disable_result_log
SHOW
CONTRIBUTORS
;
--
enable_result_log
SHOW
WARNINGS
;
sql/sql_yacc.yy
View file @
fa756cd3
...
...
@@ -11010,11 +11010,19 @@ show_param:
{
LEX *lex=Lex;
lex->sql_command= SQLCOM_SHOW_AUTHORS;
push_warning_printf(YYTHD, MYSQL_ERROR::WARN_LEVEL_WARN,
ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT,
ER(ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT),
"SHOW AUTHORS");
}
| CONTRIBUTORS_SYM
{
LEX *lex=Lex;
lex->sql_command= SQLCOM_SHOW_CONTRIBUTORS;
push_warning_printf(YYTHD, MYSQL_ERROR::WARN_LEVEL_WARN,
ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT,
ER(ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT),
"SHOW CONTRIBUTORS");
}
| PRIVILEGES
{
...
...
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