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
345ddb59
Commit
345ddb59
authored
Apr 13, 2011
by
Jon Olav Hauglid
Browse files
Options
Browse Files
Download
Plain Diff
Merge from mysql-5.0-security to mysql-5.1-security
Text conflict in mysql-test/r/sp-security.result
parents
01e2bac2
467a2269
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
10 deletions
+2
-10
mysql-test/r/sp-security.result
mysql-test/r/sp-security.result
+1
-6
mysql-test/t/sp-security.test
mysql-test/t/sp-security.test
+1
-4
No files found.
mysql-test/r/sp-security.result
View file @
345ddb59
...
...
@@ -577,11 +577,9 @@ CREATE PROCEDURE db1.p1() SELECT 1;
CREATE USER user2@localhost IDENTIFIED BY '';
GRANT SELECT(db) ON mysql.proc TO user2@localhost;
# Connection con2 as user2
# The
below statements
before disclosed info from body_utf8 column.
# The
statement below
before disclosed info from body_utf8 column.
SHOW CREATE PROCEDURE db1.p1;
ERROR 42000: PROCEDURE p1 does not exist
SHOW PROCEDURE CODE db1.p1;
ERROR 42000: PROCEDURE p1 does not exist
# Check that SHOW works with SELECT grant on whole table
# Connection default
GRANT SELECT ON mysql.proc TO user2@localhost;
...
...
@@ -591,9 +589,6 @@ SHOW CREATE PROCEDURE db1.p1;
Procedure sql_mode Create Procedure character_set_client collation_connection Database Collation
p1 CREATE DEFINER=`root`@`localhost` PROCEDURE `p1`()
SELECT 1 latin1 latin1_swedish_ci latin1_swedish_ci
SHOW PROCEDURE CODE db1.p1;
Pos Instruction
0 stmt 0 "SELECT 1"
# Connection default
DROP USER user2@localhost;
DROP DATABASE db1;
mysql-test/t/sp-security.test
View file @
345ddb59
...
...
@@ -942,11 +942,9 @@ GRANT SELECT(db) ON mysql.proc TO user2@localhost;
--
echo
# Connection con2 as user2
connect
(
con2
,
localhost
,
user2
);
--
echo
# The
below statements
before disclosed info from body_utf8 column.
--
echo
# The
statement below
before disclosed info from body_utf8 column.
--
error
ER_SP_DOES_NOT_EXIST
SHOW
CREATE
PROCEDURE
db1
.
p1
;
--
error
ER_SP_DOES_NOT_EXIST
SHOW
PROCEDURE
CODE
db1
.
p1
;
--
echo
# Check that SHOW works with SELECT grant on whole table
--
echo
# Connection default
...
...
@@ -957,7 +955,6 @@ GRANT SELECT ON mysql.proc TO user2@localhost;
connection
con2
;
--
echo
# This should work
SHOW
CREATE
PROCEDURE
db1
.
p1
;
SHOW
PROCEDURE
CODE
db1
.
p1
;
--
echo
# Connection default
connection
default
;
...
...
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