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
ab2820e8
Commit
ab2820e8
authored
Apr 25, 2006
by
serg@sergbook.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge sergbook.mysql.com:/usr/home/serg/Abk/mysql-4.1
into sergbook.mysql.com:/usr/home/serg/Abk/mysql-5.0
parents
078ec307
54c97e61
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
1 deletion
+18
-1
sql/sql_parse.cc
sql/sql_parse.cc
+18
-1
No files found.
sql/sql_parse.cc
View file @
ab2820e8
...
@@ -1006,13 +1006,20 @@ static int check_connection(THD *thd)
...
@@ -1006,13 +1006,20 @@ static int check_connection(THD *thd)
*
passwd
++
:
strlen
(
passwd
);
*
passwd
++
:
strlen
(
passwd
);
db
=
thd
->
client_capabilities
&
CLIENT_CONNECT_WITH_DB
?
db
=
thd
->
client_capabilities
&
CLIENT_CONNECT_WITH_DB
?
db
+
passwd_len
+
1
:
0
;
db
+
passwd_len
+
1
:
0
;
uint
db_len
=
db
?
strlen
(
db
)
:
0
;
if
(
passwd
+
passwd_len
+
db_len
>
(
char
*
)
net
->
read_pos
+
pkt_len
)
{
inc_host_errors
(
&
thd
->
remote
.
sin_addr
);
return
ER_HANDSHAKE_ERROR
;
}
/* Since 4.1 all database names are stored in utf8 */
/* Since 4.1 all database names are stored in utf8 */
if
(
db
)
if
(
db
)
{
{
db_buff
[
copy_and_convert
(
db_buff
,
sizeof
(
db_buff
)
-
1
,
db_buff
[
copy_and_convert
(
db_buff
,
sizeof
(
db_buff
)
-
1
,
system_charset_info
,
system_charset_info
,
db
,
strlen
(
db
)
,
db
,
db_len
,
thd
->
charset
(),
&
dummy_errors
)]
=
0
;
thd
->
charset
(),
&
dummy_errors
)]
=
0
;
db
=
db_buff
;
db
=
db_buff
;
}
}
...
@@ -1589,7 +1596,17 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
...
@@ -1589,7 +1596,17 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
{
{
char
*
db
,
*
tbl_name
;
char
*
db
,
*
tbl_name
;
uint
db_len
=
*
(
uchar
*
)
packet
;
uint
db_len
=
*
(
uchar
*
)
packet
;
if
(
db_len
>=
packet_length
||
db_len
>
NAME_LEN
)
{
send_error
(
thd
,
ER_UNKNOWN_COM_ERROR
);
break
;
}
uint
tbl_len
=
*
(
uchar
*
)
(
packet
+
db_len
+
1
);
uint
tbl_len
=
*
(
uchar
*
)
(
packet
+
db_len
+
1
);
if
(
db_len
+
tbl_len
+
2
>
packet_length
||
tbl_len
>
NAME_LEN
)
{
send_error
(
thd
,
ER_UNKNOWN_COM_ERROR
);
break
;
}
statistic_increment
(
thd
->
status_var
.
com_other
,
&
LOCK_status
);
statistic_increment
(
thd
->
status_var
.
com_other
,
&
LOCK_status
);
thd
->
enable_slow_log
=
opt_log_slow_admin_statements
;
thd
->
enable_slow_log
=
opt_log_slow_admin_statements
;
...
...
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