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
1eb5021a
Commit
1eb5021a
authored
Mar 02, 2006
by
aivanov@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/alexi/bugs/mysql-5.0-16175
into mysql.com:/home/alexi/bugs/mysql-5.1-16175
parents
3de74e62
a3ea8947
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
sql/sql_db.cc
sql/sql_db.cc
+10
-5
No files found.
sql/sql_db.cc
View file @
1eb5021a
...
@@ -1226,7 +1226,8 @@ err:
...
@@ -1226,7 +1226,8 @@ err:
bool
mysql_change_db
(
THD
*
thd
,
const
char
*
name
,
bool
no_access_check
)
bool
mysql_change_db
(
THD
*
thd
,
const
char
*
name
,
bool
no_access_check
)
{
{
int
length
,
db_length
;
int
length
,
db_length
;
char
*
dbname
=
my_strdup
((
char
*
)
name
,
MYF
(
MY_WME
));
char
*
dbname
=
thd
->
slave_thread
?
(
char
*
)
name
:
my_strdup
((
char
*
)
name
,
MYF
(
MY_WME
));
char
path
[
FN_REFLEN
];
char
path
[
FN_REFLEN
];
HA_CREATE_INFO
create
;
HA_CREATE_INFO
create
;
bool
system_db
=
0
;
bool
system_db
=
0
;
...
@@ -1246,7 +1247,8 @@ bool mysql_change_db(THD *thd, const char *name, bool no_access_check)
...
@@ -1246,7 +1247,8 @@ bool mysql_change_db(THD *thd, const char *name, bool no_access_check)
system_db
=
1
;
system_db
=
1
;
goto
end
;
goto
end
;
}
}
x_free
(
dbname
);
/* purecov: inspected */
if
(
!
(
thd
->
slave_thread
))
x_free
(
dbname
);
/* purecov: inspected */
my_message
(
ER_NO_DB_ERROR
,
ER
(
ER_NO_DB_ERROR
),
my_message
(
ER_NO_DB_ERROR
,
ER
(
ER_NO_DB_ERROR
),
MYF
(
0
));
/* purecov: inspected */
MYF
(
0
));
/* purecov: inspected */
DBUG_RETURN
(
1
);
/* purecov: inspected */
DBUG_RETURN
(
1
);
/* purecov: inspected */
...
@@ -1254,7 +1256,8 @@ bool mysql_change_db(THD *thd, const char *name, bool no_access_check)
...
@@ -1254,7 +1256,8 @@ bool mysql_change_db(THD *thd, const char *name, bool no_access_check)
if
(
check_db_name
(
dbname
))
if
(
check_db_name
(
dbname
))
{
{
my_error
(
ER_WRONG_DB_NAME
,
MYF
(
0
),
dbname
);
my_error
(
ER_WRONG_DB_NAME
,
MYF
(
0
),
dbname
);
x_free
(
dbname
);
if
(
!
(
thd
->
slave_thread
))
x_free
(
dbname
);
DBUG_RETURN
(
1
);
DBUG_RETURN
(
1
);
}
}
DBUG_PRINT
(
"info"
,(
"Use database: %s"
,
dbname
));
DBUG_PRINT
(
"info"
,(
"Use database: %s"
,
dbname
));
...
@@ -1284,7 +1287,8 @@ bool mysql_change_db(THD *thd, const char *name, bool no_access_check)
...
@@ -1284,7 +1287,8 @@ bool mysql_change_db(THD *thd, const char *name, bool no_access_check)
dbname
);
dbname
);
general_log_print
(
thd
,
COM_INIT_DB
,
ER
(
ER_DBACCESS_DENIED_ERROR
),
general_log_print
(
thd
,
COM_INIT_DB
,
ER
(
ER_DBACCESS_DENIED_ERROR
),
sctx
->
priv_user
,
sctx
->
priv_host
,
dbname
);
sctx
->
priv_user
,
sctx
->
priv_host
,
dbname
);
my_free
(
dbname
,
MYF
(
0
));
if
(
!
(
thd
->
slave_thread
))
my_free
(
dbname
,
MYF
(
0
));
DBUG_RETURN
(
1
);
DBUG_RETURN
(
1
);
}
}
}
}
...
@@ -1295,7 +1299,8 @@ bool mysql_change_db(THD *thd, const char *name, bool no_access_check)
...
@@ -1295,7 +1299,8 @@ bool mysql_change_db(THD *thd, const char *name, bool no_access_check)
if
(
my_access
(
path
,
F_OK
))
if
(
my_access
(
path
,
F_OK
))
{
{
my_error
(
ER_BAD_DB_ERROR
,
MYF
(
0
),
dbname
);
my_error
(
ER_BAD_DB_ERROR
,
MYF
(
0
),
dbname
);
my_free
(
dbname
,
MYF
(
0
));
if
(
!
(
thd
->
slave_thread
))
my_free
(
dbname
,
MYF
(
0
));
DBUG_RETURN
(
1
);
DBUG_RETURN
(
1
);
}
}
end:
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