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
b2120c7c
Commit
b2120c7c
authored
Mar 01, 2006
by
gluh@mysql.com
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
260b627f
149ecabb
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 @
b2120c7c
...
...
@@ -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 @
b2120c7c
...
...
@@ -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