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
73de06c4
Commit
73de06c4
authored
May 10, 2019
by
Eugene Kosov
Committed by
Sergei Golubchik
May 17, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make method const
Closes #677
parent
3d649c6e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
sql/handler.cc
sql/handler.cc
+2
-1
sql/handler.h
sql/handler.h
+2
-2
No files found.
sql/handler.cc
View file @
73de06c4
...
...
@@ -7465,7 +7465,8 @@ static bool require_bigint(const Create_field *f, Lex_table_name table_name)
bool
Vers_parse_info
::
check_sys_fields
(
const
Lex_table_name
&
table_name
,
const
Lex_table_name
&
db
,
Alter_info
*
alter_info
,
bool
can_native
)
Alter_info
*
alter_info
,
bool
can_native
)
const
{
if
(
check_conditions
(
table_name
,
db
))
return
true
;
...
...
sql/handler.h
View file @
73de06c4
...
...
@@ -1989,8 +1989,8 @@ struct Vers_parse_info
bool
fix_create_like
(
Alter_info
&
alter_info
,
HA_CREATE_INFO
&
create_info
,
TABLE_LIST
&
src_table
,
TABLE_LIST
&
table
);
bool
check_sys_fields
(
const
Lex_table_name
&
table_name
,
const
Lex_table_name
&
db
,
Alter_info
*
alter_info
,
bool
can_native
)
;
const
Lex_table_name
&
db
,
Alter_info
*
alter_info
,
bool
can_native
)
const
;
/**
At least one field was specified 'WITH/WITHOUT SYSTEM VERSIONING'.
...
...
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