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
f7a645c9
Commit
f7a645c9
authored
May 27, 2009
by
Bjorn Munch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #45120 Fix of 44922 caused regression in funcs_1.processlist_priv_no_prot
Protected '' in connect command with ""
parent
d07bef15
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
mysql-test/suite/funcs_1/datadict/processlist_priv.inc
mysql-test/suite/funcs_1/datadict/processlist_priv.inc
+2
-2
No files found.
mysql-test/suite/funcs_1/datadict/processlist_priv.inc
View file @
f7a645c9
...
...
@@ -212,7 +212,7 @@ GRANT PROCESS ON *.* TO ''@'localhost';
--
echo
anonymous
user
with
PROCESS
privilege
--
echo
SHOW
/
SELECT
shows
all
processes
/
threads
.
--
echo
####################################################################################
connect
(
anonymous1
,
localhost
,
''
,,
information_schema
);
connect
(
anonymous1
,
localhost
,
"''"
,,
information_schema
);
SHOW
GRANTS
;
--
replace_column
1
ID
3
HOST_NAME
6
TIME
SHOW
processlist
;
...
...
@@ -253,7 +253,7 @@ REVOKE PROCESS ON *.* FROM ''@'localhost';
--
echo
####################################################################################
--
echo
7.1
New
connection
(
anonymous2
,
localhost
,
''
,,
information_schema
)
connect
(
anonymous2
,
localhost
,
''
,,
information_schema
);
connect
(
anonymous2
,
localhost
,
"''"
,,
information_schema
);
--
echo
The
anonymous
user
has
no
more
the
PROCESS
privilege
--
echo
Again
only
the
processes
of
the
anonymous
user
are
visible
.
--
echo
####################################################################################
...
...
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