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
7e2defb6
Commit
7e2defb6
authored
Jul 14, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/media/sda1/mysql/mysql-5.0-10760-new
parents
c0e325a3
fd9f67f8
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
34 additions
and
45 deletions
+34
-45
libmysql/libmysql.c
libmysql/libmysql.c
+2
-3
sql/sql_prepare.cc
sql/sql_prepare.cc
+30
-13
sql/sql_select.cc
sql/sql_select.cc
+0
-6
sql/sql_select.h
sql/sql_select.h
+1
-1
tests/mysql_client_test.c
tests/mysql_client_test.c
+1
-22
No files found.
libmysql/libmysql.c
View file @
7e2defb6
...
...
@@ -4907,13 +4907,12 @@ static my_bool reset_stmt_handle(MYSQL_STMT *stmt, uint flags)
{
MYSQL
*
mysql
=
stmt
->
mysql
;
MYSQL_DATA
*
result
=
&
stmt
->
result
;
my_bool
has_cursor
=
stmt
->
read_row_func
==
stmt_read_row_from_cursor
;
/*
Reset stored result set if so was requested or it's a part
of cursor fetch.
*/
if
(
result
->
data
&&
(
has_cursor
||
(
flags
&
RESET_STORE_RESULT
)
))
if
(
result
->
data
&&
(
flags
&
RESET_STORE_RESULT
))
{
/* Result buffered */
free_root
(
&
result
->
alloc
,
MYF
(
MY_KEEP_PREALLOC
));
...
...
@@ -4944,7 +4943,7 @@ static my_bool reset_stmt_handle(MYSQL_STMT *stmt, uint flags)
mysql
->
status
=
MYSQL_STATUS_READY
;
}
}
if
(
has_cursor
||
(
flags
&
RESET_SERVER_SIDE
)
)
if
(
flags
&
RESET_SERVER_SIDE
)
{
/*
Reset the server side statement and close the server side
...
...
sql/sql_prepare.cc
View file @
7e2defb6
...
...
@@ -106,6 +106,7 @@ public:
virtual
~
Prepared_statement
();
void
setup_set_params
();
virtual
Query_arena
::
Type
type
()
const
;
virtual
void
close_cursor
();
};
static
void
execute_stmt
(
THD
*
thd
,
Prepared_statement
*
stmt
,
...
...
@@ -1986,10 +1987,7 @@ void mysql_stmt_execute(THD *thd, char *packet, uint packet_length)
cursor
=
stmt
->
cursor
;
if
(
cursor
&&
cursor
->
is_open
())
{
my_error
(
ER_EXEC_STMT_WITH_OPEN_CURSOR
,
MYF
(
0
));
DBUG_VOID_RETURN
;
}
stmt
->
close_cursor
();
DBUG_ASSERT
(
thd
->
free_list
==
NULL
);
mysql_reset_thd_for_next_command
(
thd
);
...
...
@@ -2284,6 +2282,7 @@ void mysql_stmt_reset(THD *thd, char *packet)
if
(
!
(
stmt
=
find_prepared_statement
(
thd
,
stmt_id
,
"mysql_stmt_reset"
)))
DBUG_VOID_RETURN
;
stmt
->
close_cursor
();
/* will reset statement params */
cursor
=
stmt
->
cursor
;
if
(
cursor
&&
cursor
->
is_open
())
{
...
...
@@ -2295,12 +2294,6 @@ void mysql_stmt_reset(THD *thd, char *packet)
stmt
->
state
=
Query_arena
::
PREPARED
;
/*
Clear parameters from data which could be set by
mysql_stmt_send_long_data() call.
*/
reset_stmt_params
(
stmt
);
mysql_reset_thd_for_next_command
(
thd
);
send_ok
(
thd
);
...
...
@@ -2448,10 +2441,17 @@ void Prepared_statement::setup_set_params()
Prepared_statement
::~
Prepared_statement
()
{
if
(
cursor
)
{
if
(
cursor
->
is_open
())
{
cursor
->
close
(
FALSE
);
free_items
();
free_root
(
cursor
->
mem_root
,
MYF
(
0
));
}
cursor
->
Cursor
::~
Cursor
();
free_items
();
if
(
cursor
)
free_
root
(
cursor
->
mem_root
,
MYF
(
0
)
);
}
else
free_
items
(
);
delete
lex
->
result
;
}
...
...
@@ -2460,3 +2460,20 @@ Query_arena::Type Prepared_statement::type() const
{
return
PREPARED_STATEMENT
;
}
void
Prepared_statement
::
close_cursor
()
{
if
(
cursor
&&
cursor
->
is_open
())
{
thd
->
change_list
=
cursor
->
change_list
;
cursor
->
close
(
FALSE
);
cleanup_stmt_and_thd_after_use
(
this
,
thd
);
free_root
(
cursor
->
mem_root
,
MYF
(
0
));
}
/*
Clear parameters from data which could be set by
mysql_stmt_send_long_data() call.
*/
reset_stmt_params
(
this
);
}
sql/sql_select.cc
View file @
7e2defb6
...
...
@@ -1915,12 +1915,6 @@ Cursor::close(bool is_active)
}
Cursor
::~
Cursor
()
{
if
(
is_open
())
close
(
FALSE
);
}
/*********************************************************************/
/*
...
...
sql/sql_select.h
View file @
7e2defb6
...
...
@@ -408,7 +408,7 @@ public:
void
set_unit
(
SELECT_LEX_UNIT
*
unit_arg
)
{
unit
=
unit_arg
;
}
Cursor
(
THD
*
thd
);
~
Cursor
()
;
~
Cursor
()
{}
};
...
...
tests/mysql_client_test.c
View file @
7e2defb6
...
...
@@ -13050,27 +13050,6 @@ static void test_bug9478()
check_execute
(
stmt
,
rc
);
if
(
!
opt_silent
&&
i
==
0
)
printf
(
"Fetched row: %s
\n
"
,
a
);
/*
Although protocol-wise an attempt to execute a statement which
already has an open cursor associated with it will yield an error,
the client library behavior tested here is consistent with
the non-cursor execution scenario: mysql_stmt_execute will
silently close the cursor if necessary.
*/
{
char
buff
[
9
];
/* Fill in the execute packet */
int4store
(
buff
,
stmt
->
stmt_id
);
buff
[
4
]
=
0
;
/* Flag */
int4store
(
buff
+
5
,
1
);
/* Reserved for array bind */
rc
=
((
*
mysql
->
methods
->
advanced_command
)(
mysql
,
COM_STMT_EXECUTE
,
buff
,
sizeof
(
buff
),
0
,
0
,
1
)
||
(
*
mysql
->
methods
->
read_query_result
)(
mysql
));
DIE_UNLESS
(
rc
);
if
(
!
opt_silent
&&
i
==
0
)
printf
(
"Got error (as expected): %s
\n
"
,
mysql_error
(
mysql
));
}
rc
=
mysql_stmt_execute
(
stmt
);
check_execute
(
stmt
,
rc
);
...
...
@@ -13429,7 +13408,7 @@ static void test_bug10794()
bind
[
1
].
length
=
&
a_len
;
rc
=
mysql_stmt_bind_param
(
stmt
,
bind
);
check_execute
(
stmt
,
rc
);
for
(
i
=
0
;
i
<
34
;
i
++
)
for
(
i
=
0
;
i
<
42
;
i
++
)
{
id_val
=
(
i
+
1
)
*
10
;
sprintf
(
a
,
"a%d"
,
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