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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
c7ab92c2
Commit
c7ab92c2
authored
Jul 02, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/home/my/mysql-4.1
parents
e9cb2fb3
2e16838c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
sql/sql_select.cc
sql/sql_select.cc
+4
-5
No files found.
sql/sql_select.cc
View file @
c7ab92c2
...
...
@@ -8223,12 +8223,10 @@ cp_buffer_from_ref(THD *thd, TABLE_REF *ref)
thd
->
count_cuted_fields
=
CHECK_FIELD_IGNORE
;
for
(
store_key
**
copy
=
ref
->
key_copy
;
*
copy
;
copy
++
)
{
int
res
;
if
((
res
=
(
*
copy
)
->
copy
()))
if
((
*
copy
)
->
copy
()
&
1
)
{
thd
->
count_cuted_fields
=
save_count_cuted_fields
;
if
((
res
=
res
&
1
))
return
res
;
// Something went wrong
return
1
;
// Something went wrong
}
}
thd
->
count_cuted_fields
=
save_count_cuted_fields
;
...
...
@@ -8827,7 +8825,8 @@ setup_copy_fields(THD *thd, TMP_TABLE_PARAM *param,
DBUG_RETURN
(
0
);
err:
delete
[]
param
->
copy_field
;
// This is never 0
if
(
copy
)
delete
[]
param
->
copy_field
;
param
->
copy_field
=
0
;
err2:
DBUG_RETURN
(
TRUE
);
...
...
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