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
c2671e97
Commit
c2671e97
authored
Mar 12, 2018
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup: make find_date_time_item() static
parent
e0d3d405
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
sql/item_cmpfunc.cc
sql/item_cmpfunc.cc
+1
-1
sql/item_func.h
sql/item_func.h
+0
-1
No files found.
sql/item_cmpfunc.cc
View file @
c2671e97
...
...
@@ -42,7 +42,7 @@
this is the type that will be used in warnings like
"Incorrect <<TYPE>> value".
*/
Item
*
find_date_time_item
(
Item
**
args
,
uint
nargs
,
uint
col
)
static
Item
*
find_date_time_item
(
Item
**
args
,
uint
nargs
,
uint
col
)
{
Item
*
date_arg
=
0
,
**
arg
,
**
arg_end
;
for
(
arg
=
args
,
arg_end
=
args
+
nargs
;
arg
!=
arg_end
;
arg
++
)
...
...
sql/item_func.h
View file @
c2671e97
...
...
@@ -2507,7 +2507,6 @@ Item *get_system_var(THD *thd, enum_var_type var_type, LEX_STRING name,
extern
bool
check_reserved_words
(
LEX_STRING
*
name
);
extern
enum_field_types
agg_field_type
(
Item
**
items
,
uint
nitems
,
bool
treat_bit_as_number
);
Item
*
find_date_time_item
(
Item
**
args
,
uint
nargs
,
uint
col
);
double
my_double_round
(
double
value
,
longlong
dec
,
bool
dec_unsigned
,
bool
truncate
);
bool
eval_const_cond
(
COND
*
cond
);
...
...
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