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
04f3b551
Commit
04f3b551
authored
Sep 07, 2005
by
igor@rurik.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
item_sum.cc, item_sum.h:
Post-merge fix.
parent
6daec8eb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
31 deletions
+3
-31
sql/item_sum.cc
sql/item_sum.cc
+0
-6
sql/item_sum.h
sql/item_sum.h
+3
-25
No files found.
sql/item_sum.cc
View file @
04f3b551
...
@@ -2972,12 +2972,6 @@ bool Item_func_group_concat::add()
...
@@ -2972,12 +2972,6 @@ bool Item_func_group_concat::add()
}
}
void
Item_func_group_concat
::
reset_field
()
{
DBUG_ASSERT
(
0
);
}
bool
bool
Item_func_group_concat
::
fix_fields
(
THD
*
thd
,
Item
**
ref
)
Item_func_group_concat
::
fix_fields
(
THD
*
thd
,
Item
**
ref
)
{
{
...
...
sql/item_sum.h
View file @
04f3b551
...
@@ -881,6 +881,7 @@ class Item_func_group_concat : public Item_sum
...
@@ -881,6 +881,7 @@ class Item_func_group_concat : public Item_sum
bool
distinct
;
bool
distinct
;
bool
warning_for_row
;
bool
warning_for_row
;
bool
always_null
;
bool
always_null
;
bool
no_appended
;
/*
/*
Following is 0 normal object and pointer to original one for copy
Following is 0 normal object and pointer to original one for copy
(to correctly free resources)
(to correctly free resources)
...
@@ -898,29 +899,6 @@ class Item_func_group_concat : public Item_sum
...
@@ -898,29 +899,6 @@ class Item_func_group_concat : public Item_sum
element_count
count
__attribute__
((
unused
)),
element_count
count
__attribute__
((
unused
)),
Item_func_group_concat
*
group_concat_item
);
Item_func_group_concat
*
group_concat_item
);
public:
String
result
;
String
*
separator
;
TREE
tree_base
;
TREE
*
tree
;
TABLE
*
table
;
ORDER
**
order
;
TABLE_LIST
*
tables_list
;
ulong
group_concat_max_len
;
uint
arg_count_order
;
uint
arg_count_field
;
uint
field_list_offset
;
uint
count_cut_values
;
bool
no_appended
;
/*
Following is 0 normal object and pointer to original one for copy
(to correctly free resources)
*/
Item_func_group_concat
*
original
;
Item_func_group_concat
(
bool
is_distinct
,
List
<
Item
>
*
is_select
,
SQL_LIST
*
is_order
,
String
*
is_separator
);
public:
public:
Item_func_group_concat
(
Name_resolution_context
*
context_arg
,
Item_func_group_concat
(
Name_resolution_context
*
context_arg
,
bool
is_distinct
,
List
<
Item
>
*
is_select
,
bool
is_distinct
,
List
<
Item
>
*
is_select
,
...
@@ -935,8 +913,8 @@ class Item_func_group_concat : public Item_sum
...
@@ -935,8 +913,8 @@ class Item_func_group_concat : public Item_sum
virtual
Item_result
result_type
()
const
{
return
STRING_RESULT
;
}
virtual
Item_result
result_type
()
const
{
return
STRING_RESULT
;
}
void
clear
();
void
clear
();
bool
add
();
bool
add
();
void
reset_field
()
{
}
// not used
void
reset_field
()
{
DBUG_ASSERT
(
0
);
}
// not used
void
update_field
()
{
}
// not used
void
update_field
()
{
DBUG_ASSERT
(
0
);
}
// not used
bool
fix_fields
(
THD
*
,
Item
**
);
bool
fix_fields
(
THD
*
,
Item
**
);
bool
setup
(
THD
*
thd
);
bool
setup
(
THD
*
thd
);
void
make_unique
();
void
make_unique
();
...
...
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