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
fd1c5443
Commit
fd1c5443
authored
Jun 01, 2007
by
msvensson@pilot.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing semicolon after connect command
parent
91170035
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mysql-test/t/grant.test
mysql-test/t/grant.test
+1
-1
mysql-test/t/rpl_packet.test
mysql-test/t/rpl_packet.test
+1
-1
No files found.
mysql-test/t/grant.test
View file @
fd1c5443
...
...
@@ -890,7 +890,7 @@ REVOKE EXECUTE ON PROCEDURE t1 FROM some_user_name@1234567890abcdefghij123456789
# Bug #6774: Replication fails with Wrong usage of DB GRANT and GLOBAL PRIVILEGES
#
# Check if GRANT ... ON * ... fails when no database is selected
connect
(
con1
,
localhost
,
root
,,
*
NO
-
ONE
*
)
connect
(
con1
,
localhost
,
root
,,
*
NO
-
ONE
*
)
;
connection
con1
;
--
error
ER_NO_DB_ERROR
GRANT
PROCESS
ON
*
TO
user
@
localhost
;
...
...
mysql-test/t/rpl_packet.test
View file @
fd1c5443
...
...
@@ -56,7 +56,7 @@ START SLAVE;
# Reconnect to master for new setting to take effect
disconnect
master
;
connect
(
master
,
localhost
,
root
)
connect
(
master
,
localhost
,
root
)
;
connection
master
;
CREATE
TABLe
`t1`
(
`f1`
LONGTEXT
)
ENGINE
=
MyISAM
;
...
...
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