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
70622eaa
Commit
70622eaa
authored
Mar 22, 2013
by
Alexander Barkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing compilation failure in Windows: unknown symbol "any_db".
modified: storage/connect/ha_connect.cc
parent
8087daae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
storage/connect/ha_connect.cc
storage/connect/ha_connect.cc
+2
-2
No files found.
storage/connect/ha_connect.cc
View file @
70622eaa
...
...
@@ -2909,7 +2909,7 @@ bool ha_connect::check_privileges(THD *thd, PTOS options)
case
TAB_INI
:
case
TAB_VEC
:
return
options
->
filename
?
check_access
(
thd
,
FILE_ACL
,
any_db
,
NULL
,
NULL
,
0
,
0
)
:
false
;
check_access
(
thd
,
FILE_ACL
,
NULL
,
NULL
,
NULL
,
0
,
0
)
:
false
;
case
TAB_ODBC
:
case
TAB_MYSQL
:
...
...
@@ -2917,7 +2917,7 @@ bool ha_connect::check_privileges(THD *thd, PTOS options)
case
TAB_MAC
:
case
TAB_WMI
:
case
TAB_OEM
:
return
check_access
(
thd
,
FILE_ACL
,
any_db
,
NULL
,
NULL
,
0
,
0
);
return
check_access
(
thd
,
FILE_ACL
,
NULL
,
NULL
,
NULL
,
0
,
0
);
case
TAB_TBL
:
case
TAB_PIVOT
:
...
...
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