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
e3045e85
Commit
e3045e85
authored
Jan 05, 2005
by
bell@sanja.is.com.ua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added correct res initialisation
and check of handler compatibility
parent
e743e1e3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
sql/sql_prepare.cc
sql/sql_prepare.cc
+12
-1
No files found.
sql/sql_prepare.cc
View file @
e3045e85
...
@@ -906,6 +906,7 @@ static bool mysql_test_insert(Prepared_statement *stmt,
...
@@ -906,6 +906,7 @@ static bool mysql_test_insert(Prepared_statement *stmt,
DBUG_RETURN
(
TRUE
);
DBUG_RETURN
(
TRUE
);
}
}
if
((
values
=
its
++
))
if
((
values
=
its
++
))
{
{
uint
value_count
;
uint
value_count
;
...
@@ -927,6 +928,16 @@ static bool mysql_test_insert(Prepared_statement *stmt,
...
@@ -927,6 +928,16 @@ static bool mysql_test_insert(Prepared_statement *stmt,
value_count
=
values
->
elements
;
value_count
=
values
->
elements
;
its
.
rewind
();
its
.
rewind
();
res
=
TRUE
;
if
(
table_list
->
lock_type
==
TL_WRITE_DELAYED
&&
!
(
table_list
->
table
->
file
->
table_flags
()
&
HA_CAN_INSERT_DELAYED
))
{
my_error
(
ER_ILLEGAL_HA
,
MYF
(
0
),
(
table_list
->
view
?
table_list
->
view_name
.
str
:
table_list
->
real_name
));
goto
error
;
}
while
((
values
=
its
++
))
while
((
values
=
its
++
))
{
{
counter
++
;
counter
++
;
...
@@ -940,7 +951,7 @@ static bool mysql_test_insert(Prepared_statement *stmt,
...
@@ -940,7 +951,7 @@ static bool mysql_test_insert(Prepared_statement *stmt,
}
}
}
}
res
=
0
;
res
=
FALSE
;
error:
error:
lex
->
unit
.
cleanup
();
lex
->
unit
.
cleanup
();
/* insert_values is cleared in open_table */
/* insert_values is cleared in open_table */
...
...
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