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
331c56bc
Commit
331c56bc
authored
Apr 03, 2003
by
pem@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
And got rid of signess warnings...
parent
f3049df7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
sql/item_sum.cc
sql/item_sum.cc
+4
-4
No files found.
sql/item_sum.cc
View file @
331c56bc
...
...
@@ -1631,7 +1631,7 @@ void Item_func_group_concat::reset_field()
bool
Item_func_group_concat
::
fix_fields
(
THD
*
thd
,
TABLE_LIST
*
tables
,
Item
**
ref
)
{
u
int
i
;
/* for loop variable */
int
i
;
/* for loop variable */
if
(
!
thd
->
allow_sum_func
)
{
...
...
@@ -1641,11 +1641,11 @@ Item_func_group_concat::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
thd
->
allow_sum_func
=
0
;
maybe_null
=
0
;
for
(
i
=
0
;
i
<
arg_count
;
i
++
)
for
(
uint
ui
=
0
;
ui
<
arg_count
;
u
i
++
)
{
if
(
args
[
i
]
->
fix_fields
(
thd
,
tables
,
args
+
i
)
||
args
[
i
]
->
check_cols
(
1
))
if
(
args
[
ui
]
->
fix_fields
(
thd
,
tables
,
args
+
ui
)
||
args
[
u
i
]
->
check_cols
(
1
))
return
1
;
maybe_null
|=
args
[
i
]
->
maybe_null
;
maybe_null
|=
args
[
u
i
]
->
maybe_null
;
}
for
(
i
=
0
;
i
<
arg_count_field
;
i
++
)
{
...
...
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