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
e6ef97c4
Commit
e6ef97c4
authored
Mar 01, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge sgluhov@bk-internal.mysql.com:/home/bk/mysql-5.1-new
into mysql.com:/home/gluh/MySQL/Bugs/5.1.17568
parents
4296774f
d2d8f180
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
sql/sql_plugin.cc
sql/sql_plugin.cc
+1
-1
sql/sql_udf.cc
sql/sql_udf.cc
+1
-1
No files found.
sql/sql_plugin.cc
View file @
e6ef97c4
...
...
@@ -681,7 +681,7 @@ void plugin_load(void)
if
(
simple_open_n_lock_tables
(
new_thd
,
&
tables
))
{
DBUG_PRINT
(
"error"
,(
"Can't open plugin table"
));
sql_print_error
(
"Can't open the mysql.plugin table. Please run the mysql_
install_db
script to create it."
);
sql_print_error
(
"Can't open the mysql.plugin table. Please run the mysql_
upgrade
script to create it."
);
goto
end
;
}
table
=
tables
.
table
;
...
...
sql/sql_udf.cc
View file @
e6ef97c4
...
...
@@ -146,7 +146,7 @@ void udf_init()
if
(
simple_open_n_lock_tables
(
new_thd
,
&
tables
))
{
DBUG_PRINT
(
"error"
,(
"Can't open udf table"
));
sql_print_error
(
"Can't open the mysql.func table. Please run the mysql_
install_db
script to create it."
);
sql_print_error
(
"Can't open the mysql.func table. Please run the mysql_
upgrade
script to create it."
);
goto
end
;
}
...
...
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