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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
0736305a
Commit
0736305a
authored
Apr 06, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
don't modify constant strings
sql/sql_prepare.cc: use static variable
parent
d4711a93
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
sql/sql_prepare.cc
sql/sql_prepare.cc
+1
-1
sql/table.cc
sql/table.cc
+1
-1
No files found.
sql/sql_prepare.cc
View file @
0736305a
...
...
@@ -802,7 +802,7 @@ static int mysql_test_select_fields(Prepared_statement *stmt,
if
(
check_table_access
(
thd
,
privilege
,
tables
,
0
))
DBUG_RETURN
(
1
);
}
else
if
(
check_access
(
thd
,
privilege
,
"*any*"
,
0
,
0
,
0
))
else
if
(
check_access
(
thd
,
privilege
,
any_db
,
0
,
0
,
0
))
DBUG_RETURN
(
1
);
#endif
if
((
&
lex
->
select_lex
!=
lex
->
all_selects_list
&&
...
...
sql/table.cc
View file @
0736305a
...
...
@@ -1288,7 +1288,7 @@ bool check_db_name(char *name)
/* Used to catch empty names and names with end space */
bool
last_char_is_space
=
TRUE
;
if
(
lower_case_table_names
)
if
(
lower_case_table_names
&&
name
!=
any_db
)
my_casedn_str
(
files_charset_info
,
name
);
while
(
*
name
)
...
...
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