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
7d904273
Commit
7d904273
authored
Aug 01, 2014
by
Venkata Sidagam
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #18415196 MYSQL_UPGRADE DUPLICATE KEY ERROR FOR MYSQL.USER FOR 5.5.35+, 5.6.15+, 5.7.3+
Follow-up patch. Removed unwanted code.
parent
7879b3ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
scripts/mysql_system_tables_fix.sql
scripts/mysql_system_tables_fix.sql
+0
-2
No files found.
scripts/mysql_system_tables_fix.sql
View file @
7d904273
...
...
@@ -658,9 +658,7 @@ DROP PROCEDURE IF EXISTS mysql.count_duplicate_host_names;
DELIMITER
//
CREATE
PROCEDURE
mysql
.
count_duplicate_host_names
()
BEGIN
SET
@
duplicate_hosts
=
0
;
SET
@
duplicate_hosts
=
(
SELECT
count
(
*
)
FROM
mysql
.
user
GROUP
BY
user
,
lower
(
host
)
HAVING
count
(
*
)
>
1
LIMIT
1
);
select
@
duplicate_hosts
;
IF
@
duplicate_hosts
>
1
THEN
SIGNAL
SQLSTATE
'45000'
SET
MESSAGE_TEXT
=
'Multiple accounts exist for @user_name, @host_name that differ only in Host lettercase; remove all except one of them'
;
END
IF
;
...
...
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