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
623a5d5a
Commit
623a5d5a
authored
Apr 01, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up merge of fix for Bug #9468.
parent
16efc3e3
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
0 deletions
+9
-0
mysql-test/t/lowercase_table_grant.test
mysql-test/t/lowercase_table_grant.test
+3
-0
mysql-test/t/skip_name_resolve.test
mysql-test/t/skip_name_resolve.test
+3
-0
sql/sql_parse.cc
sql/sql_parse.cc
+3
-0
No files found.
mysql-test/t/lowercase_table_grant.test
View file @
623a5d5a
# Don't test with embedded server
--
source
include
/
not_embedded
.
inc
# Test of grants when lower_case_table_names is on
use
mysql
;
...
...
mysql-test/t/skip_name_resolve.test
View file @
623a5d5a
# Can't be tested with embedded server
--
source
include
/
not_embedded
.
inc
# Bug #8471: IP address with mask fail when skip-name-resolve is on
GRANT
ALL
ON
test
.*
TO
mysqltest_1
@
'127.0.0.1/255.255.255.255'
;
SHOW
GRANTS
FOR
mysqltest_1
@
'127.0.0.1/255.255.255.255'
;
...
...
sql/sql_parse.cc
View file @
623a5d5a
...
...
@@ -1546,6 +1546,9 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
}
else
thd
->
query_rest
.
copy
(
packet
,
length
,
thd
->
query_rest
.
charset
());
thd
->
server_status
&=
~
(
SERVER_QUERY_NO_INDEX_USED
|
SERVER_QUERY_NO_GOOD_INDEX_USED
);
break
;
#endif
/*EMBEDDED_LIBRARY*/
}
...
...
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