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
f197b179
Commit
f197b179
authored
Apr 03, 2003
by
pem@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Got rid of silly compiler errors on HP-UX and SGI Irix.
parent
3e0464b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
sql/item_sum.cc
sql/item_sum.cc
+5
-3
No files found.
sql/item_sum.cc
View file @
f197b179
...
@@ -1631,6 +1631,8 @@ void Item_func_group_concat::reset_field()
...
@@ -1631,6 +1631,8 @@ void Item_func_group_concat::reset_field()
bool
bool
Item_func_group_concat
::
fix_fields
(
THD
*
thd
,
TABLE_LIST
*
tables
,
Item
**
ref
)
Item_func_group_concat
::
fix_fields
(
THD
*
thd
,
TABLE_LIST
*
tables
,
Item
**
ref
)
{
{
uint
i
;
/* for loop variable */
if
(
!
thd
->
allow_sum_func
)
if
(
!
thd
->
allow_sum_func
)
{
{
my_error
(
ER_INVALID_GROUP_FUNC_USE
,
MYF
(
0
));
my_error
(
ER_INVALID_GROUP_FUNC_USE
,
MYF
(
0
));
...
@@ -1639,13 +1641,13 @@ Item_func_group_concat::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
...
@@ -1639,13 +1641,13 @@ Item_func_group_concat::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
thd
->
allow_sum_func
=
0
;
thd
->
allow_sum_func
=
0
;
maybe_null
=
0
;
maybe_null
=
0
;
for
(
uint
i
=
0
;
i
<
arg_count
;
i
++
)
for
(
i
=
0
;
i
<
arg_count
;
i
++
)
{
{
if
(
args
[
i
]
->
fix_fields
(
thd
,
tables
,
args
+
i
)
||
args
[
i
]
->
check_cols
(
1
))
if
(
args
[
i
]
->
fix_fields
(
thd
,
tables
,
args
+
i
)
||
args
[
i
]
->
check_cols
(
1
))
return
1
;
return
1
;
maybe_null
|=
args
[
i
]
->
maybe_null
;
maybe_null
|=
args
[
i
]
->
maybe_null
;
}
}
for
(
i
nt
i
=
0
;
i
<
arg_count_field
;
i
++
)
for
(
i
=
0
;
i
<
arg_count_field
;
i
++
)
{
{
if
(
expr
[
i
]
->
fix_fields
(
thd
,
tables
,
expr
+
i
)
||
expr
[
i
]
->
check_cols
(
1
))
if
(
expr
[
i
]
->
fix_fields
(
thd
,
tables
,
expr
+
i
)
||
expr
[
i
]
->
check_cols
(
1
))
return
1
;
return
1
;
...
@@ -1655,7 +1657,7 @@ Item_func_group_concat::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
...
@@ -1655,7 +1657,7 @@ Item_func_group_concat::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
Fix fields for order clause in function:
Fix fields for order clause in function:
GROUP_CONCAT(expr,... ORDER BY col,... )
GROUP_CONCAT(expr,... ORDER BY col,... )
*/
*/
for
(
i
nt
i
=
0
;
i
<
arg_count_order
;
i
++
)
for
(
i
=
0
;
i
<
arg_count_order
;
i
++
)
{
{
ORDER
*
order_item
=
order
[
i
];
ORDER
*
order_item
=
order
[
i
];
Item
*
item
=*
order_item
->
item
;
Item
*
item
=*
order_item
->
item
;
...
...
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