mirror of
https://github.com/MariaDB/server.git
synced 2026-04-23 08:45:33 +02:00
Adding support for the strict cursor data types:
Example 1a:
TYPE rec0_t IS RECORD (a INT, VARCHAR(10));
TYPE cur0_t IS REF CURSOR RETURN rec0_t;
Example 1b:
TYPE rec0_t IS RECORD (a t1.a%TYPE, b t1.b%TYPE);
TYPE cur0_t IS REF CURSOR RETURN rec0_t;
Example 1c:
TYPE rec0_t IS RECORD (a INT, VARCHAR(10));
r0 rec0_t;
TYPE cur0_t IS REF CURSOR RETURN r0%TYPE;
Example 1d:
TYPE rec0_t IS RECORD (a t1.a%TYPE, b t1.b%TYPE);
r0 rec0_t;
TYPE cur0_t IS REF CURSOR RETURN r0%TYPE;
Example2a:
TYPE cur0_t IS REF CURSOR RETURN t1%ROWTYPE; -- t1 is a table
Example 2b:
r0 t1%ROWTYPE;
TYPE cur0_t IS REF CURSOR RETURN r0%TYPE;
Example3a:
CURSOR cursor_sample IS SELECT a,b FROM t1;
TYPE cur0_t IS REF CURSOR RETURN cursor_sample%ROWTYPE;
Example3b:
CURSOR cursor_sample IS SELECT a,b FROM t1;
r0 cursor_sample%ROWTYPE;
TYPE cur0_t IS REF CURSOR RETURN r0%TYPE;
If a cursor variable is declared with a RETURN clause then:
1. At OPEN type the data type of the SELECT list row is compared
for compatibility with the cursor RETURN data type.
The SELECT list row must be assignable to the RETURN type row.
If case if assignability is not meet, an error is raised
Assignability means:
- The arity of the SELECT list must be equal to the arity
of the RETURN clause
- Every n-th field of the SELECT list must be assignable to the
n-th field of the RETURN Clause
2. At FETCH time, the data is fetched in two steps:
a. On the first step the data is fetched into a virtual table
with the row type described in the RETURN clause
b. On the second step the data is copied from the virtual table
to the target fetch list. Data type conversion can happen
on this step.
Change details:
Adding new methods:
- sp_cursor::check_assignability_to
- Virtual_tmp_table::check_assignability_from
- Virtual_tmp_table::sp_set_from_select_list
- Virtual_tmp_table::sp_save_in_vtable
- Virtual_tmp_table::sp_save_in_target_list
- LEX::check_ref_cursor_components
- LEX::make_sp_instr_copy_struct_for_last_context_variables
- LEX::declare_type_ref_cursor
- sp_cursor::Select_fetch_into_spvars::send_data_with_return_type
Adding new members:
- sp_instr_copen_by_ref::m_cursor_name
- Select_fetch_into_spvars::m_return_type
- Select_materialize::m_cursor_name
- Select_materialize::m_return_type
Adding new virtual methods:
- Item::resolve_spvar_cursor_rowtype
- Type_handler::Spvar_definition_resolve_type_refs
- Server_side_cursor::check_assignability_to
- Overriding Select_materialize::prepare to raise an error when the cursor
returned data type is not compatible with the RETURN clause
Making these methods virtual:
- Field::check_assignability_from
Adding new classes:
- sp_type_def_ref
- RowTypeBuffer
Adding new constructors to:
- Spvar_definition
Adding new helper methods (e.g. to reuse the code)
- Field::store_field_maybe_null
- ChanBuffer::append_ulonglong
- sp_pcontext::set_type_for_last_context_variables
Minor changes:
- Making TABLE::export_structure const
- Overriding Item_splocal::type_extra_attributes. It was forgotten in earlier changes.
Adding new error messages
- ER_CANNOT_CAST_ON_IDENT1_ASSIGNMENT_FOR_OPERATION
- ER_CANNOT_CAST_ON_IDENT2_ASSIGNMENT_FOR_OPERATION
428 lines
12 KiB
C++
428 lines
12 KiB
C++
/*
|
|
Copyright (c) 2005, 2010, Oracle and/or its affiliates.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA */
|
|
|
|
#include "mariadb.h"
|
|
#include "sql_priv.h"
|
|
#include "unireg.h"
|
|
#include "sql_cursor.h"
|
|
#include "probes_mysql.h"
|
|
#include "sql_parse.h" // mysql_execute_command
|
|
#include "sp_instr.h" // sp_lex_cursor
|
|
|
|
/**
|
|
Attempt to open a materialized cursor.
|
|
|
|
@param thd thread handle
|
|
@param[in] result result class of the caller used as a destination
|
|
for the rows fetched from the cursor
|
|
@param[out] pcursor a pointer to store a pointer to cursor in
|
|
@param[in] cursor_name the name of SP cursor
|
|
@param[in] return_type the return type of the SP cursor, or
|
|
nullptr (in case of non-SP cursor or in case
|
|
when SP cursor does not have RETURN clause)
|
|
|
|
@retval
|
|
0 the query has been successfully executed; in this
|
|
case pcursor may or may not contain
|
|
a pointer to an open cursor.
|
|
@retval
|
|
non-zero an error, 'pcursor' has been left intact.
|
|
*/
|
|
|
|
int mysql_open_cursor(THD *thd, select_result *result,
|
|
Server_side_cursor **pcursor,
|
|
const Lex_ident_column &cursor_name,
|
|
const Virtual_tmp_table *return_type)
|
|
{
|
|
sql_digest_state *parent_digest;
|
|
PSI_statement_locker *parent_locker;
|
|
select_result *save_result;
|
|
Select_materialize *result_materialize;
|
|
LEX *lex= thd->lex;
|
|
int rc;
|
|
const CSET_STRING query_backup= thd->query_string;
|
|
|
|
if (!(result_materialize= new (thd->mem_root) Select_materialize(thd, result,
|
|
cursor_name, return_type)))
|
|
return 1;
|
|
|
|
save_result= lex->result;
|
|
|
|
lex->result= result_materialize;
|
|
|
|
if (const sp_lex_cursor *clex= lex->get_lex_for_cursor())
|
|
{
|
|
const LEX_CSTRING tmp_query= get_cursor_query(clex->get_expr_str());
|
|
thd->set_query((char*) tmp_query.str, tmp_query.length);
|
|
}
|
|
|
|
MYSQL_QUERY_EXEC_START(thd->query(),
|
|
thd->thread_id,
|
|
thd->get_db(),
|
|
&thd->security_ctx->priv_user[0],
|
|
(char *) thd->security_ctx->host_or_ip,
|
|
2);
|
|
parent_digest= thd->m_digest;
|
|
parent_locker= thd->m_statement_psi;
|
|
thd->m_digest= NULL;
|
|
thd->m_statement_psi= NULL;
|
|
/* Mark that we can't use query cache with cursors */
|
|
thd->query_cache_is_applicable= 0;
|
|
rc= mysql_execute_command(thd);
|
|
thd->update_server_status();
|
|
thd->lex->restore_set_statement_var();
|
|
thd->m_digest= parent_digest;
|
|
thd->m_statement_psi= parent_locker;
|
|
MYSQL_QUERY_EXEC_DONE(rc);
|
|
|
|
lex->result= save_result;
|
|
/*
|
|
Possible options here:
|
|
- a materialized cursor is open. In this case rc is 0 and
|
|
result_materialize->materialized is not NULL
|
|
- an error occurred during materialization.
|
|
result_materialize->materialized_cursor is not NULL, but rc != 0
|
|
- successful completion of mysql_execute_command without
|
|
a cursor: rc is 0, result_materialize->materialized_cursor is NULL.
|
|
This is possible if some command writes directly to the
|
|
network, bypassing select_result mechanism. An example of
|
|
such command is SHOW VARIABLES or SHOW STATUS.
|
|
*/
|
|
if (rc)
|
|
{
|
|
if (result_materialize->materialized_cursor)
|
|
{
|
|
/* Rollback metadata in the client-server protocol. */
|
|
result_materialize->abort_result_set();
|
|
|
|
delete result_materialize->materialized_cursor;
|
|
}
|
|
|
|
goto end;
|
|
}
|
|
|
|
if (result_materialize->materialized_cursor)
|
|
{
|
|
Materialized_cursor *materialized_cursor=
|
|
result_materialize->materialized_cursor;
|
|
|
|
/*
|
|
NOTE: close_thread_tables() has been called in
|
|
mysql_execute_command(), so all tables except from the cursor
|
|
temporary table have been closed.
|
|
*/
|
|
|
|
if ((rc= materialized_cursor->open(0)))
|
|
{
|
|
delete materialized_cursor;
|
|
goto end;
|
|
}
|
|
|
|
*pcursor= materialized_cursor;
|
|
rc|= (thd->stmt_arena->cleanup_stmt(true)? 1 : 0);
|
|
}
|
|
|
|
end:
|
|
thd->set_query(query_backup);
|
|
delete result_materialize;
|
|
return rc;
|
|
}
|
|
|
|
/****************************************************************************
|
|
Server_side_cursor
|
|
****************************************************************************/
|
|
|
|
Server_side_cursor::~Server_side_cursor() = default;
|
|
|
|
|
|
void Server_side_cursor::operator delete(void *ptr, size_t size)
|
|
{
|
|
Server_side_cursor *cursor= (Server_side_cursor*) ptr;
|
|
MEM_ROOT own_root= *cursor->mem_root;
|
|
|
|
DBUG_ENTER("Server_side_cursor::operator delete");
|
|
TRASH_FREE(ptr, size);
|
|
/*
|
|
If this cursor has never been opened mem_root is empty. Otherwise
|
|
mem_root points to the memory the cursor object was allocated in.
|
|
In this case it's important to call free_root last, and free a copy
|
|
instead of *mem_root to avoid writing into freed memory.
|
|
*/
|
|
free_root(&own_root, MYF(0));
|
|
DBUG_VOID_RETURN;
|
|
}
|
|
|
|
|
|
/***************************************************************************
|
|
Materialized_cursor
|
|
****************************************************************************/
|
|
|
|
Materialized_cursor::Materialized_cursor(select_result *result_arg,
|
|
TABLE *table_arg)
|
|
:Server_side_cursor(&table_arg->mem_root, result_arg),
|
|
table(table_arg),
|
|
fetch_limit(0),
|
|
fetch_count(0),
|
|
is_rnd_inited(0)
|
|
{
|
|
fake_unit.init_query();
|
|
fake_unit.thd= table->in_use;
|
|
}
|
|
|
|
|
|
/**
|
|
Preserve the original metadata to be sent to the client.
|
|
Initiate sending of the original metadata to the client
|
|
(call Protocol::send_result_set_metadata()).
|
|
|
|
@param thd Thread identifier.
|
|
@param send_result_set_metadata List of fields that would be sent.
|
|
*/
|
|
|
|
int Materialized_cursor::send_result_set_metadata(
|
|
THD *thd, List<Item> &send_result_set_metadata)
|
|
{
|
|
Query_arena backup_arena;
|
|
int rc;
|
|
List_iterator_fast<Item> it_org(send_result_set_metadata);
|
|
List_iterator_fast<Item> it_dst(item_list);
|
|
Item *item_org;
|
|
Item *item_dst;
|
|
|
|
thd->set_n_backup_active_arena(this, &backup_arena);
|
|
|
|
if ((rc= table->fill_item_list(&item_list)))
|
|
goto end;
|
|
|
|
DBUG_ASSERT(send_result_set_metadata.elements == item_list.elements);
|
|
|
|
/*
|
|
Unless we preserve the original metadata, it will be lost,
|
|
since new fields describe columns of the temporary table.
|
|
Allocate a copy of the name for safety only. Currently
|
|
items with original names are always kept in memory,
|
|
but in case this changes a memory leak may be hard to notice.
|
|
*/
|
|
while ((item_dst= it_dst++, item_org= it_org++))
|
|
{
|
|
Item_ident *ident= static_cast<Item_ident *>(item_dst);
|
|
Send_field send_field(thd, item_org);
|
|
|
|
ident->db_name= Lex_ident_db(thd->strmake_lex_cstring(send_field.db_name));
|
|
ident->table_name= Lex_ident_table(thd->strmake_lex_cstring(
|
|
send_field.table_name));
|
|
}
|
|
|
|
/*
|
|
Original metadata result set should be sent here. After
|
|
mysql_execute_command() is finished, item_list can not be used for
|
|
sending metadata, because it references closed table.
|
|
*/
|
|
rc= result->send_result_set_metadata(item_list, Protocol::SEND_NUM_ROWS);
|
|
|
|
end:
|
|
thd->restore_active_arena(this, &backup_arena);
|
|
/* Check for thd->is_error() in case of OOM */
|
|
return rc || thd->is_error();
|
|
}
|
|
|
|
|
|
int Materialized_cursor::open(JOIN *join __attribute__((unused)))
|
|
{
|
|
THD *thd= fake_unit.thd;
|
|
int rc;
|
|
Query_arena backup_arena;
|
|
|
|
thd->set_n_backup_active_arena(this, &backup_arena);
|
|
|
|
/* Create a list of fields and start sequential scan. */
|
|
|
|
rc= result->prepare(item_list, &fake_unit);
|
|
rc= !rc && table->file->ha_rnd_init_with_error(TRUE);
|
|
is_rnd_inited= !rc;
|
|
|
|
thd->restore_active_arena(this, &backup_arena);
|
|
|
|
/* Commit or rollback metadata in the client-server protocol. */
|
|
|
|
if (!rc)
|
|
{
|
|
thd->server_status|= SERVER_STATUS_CURSOR_EXISTS;
|
|
result->send_eof();
|
|
}
|
|
else
|
|
{
|
|
result->abort_result_set();
|
|
}
|
|
|
|
on_table_fill_finished();
|
|
|
|
return rc;
|
|
}
|
|
|
|
|
|
/**
|
|
Fetch up to the given number of rows from a materialized cursor.
|
|
|
|
Precondition: the cursor is open.
|
|
|
|
If the cursor points after the last row, the fetch will automatically
|
|
close the cursor and not send any data (except the 'EOF' packet
|
|
with SERVER_STATUS_LAST_ROW_SENT). This is an extra round trip
|
|
and probably should be improved to return
|
|
SERVER_STATUS_LAST_ROW_SENT along with the last row.
|
|
*/
|
|
|
|
void Materialized_cursor::fetch(ulong num_rows)
|
|
{
|
|
THD *thd= table->in_use;
|
|
|
|
int res= 0;
|
|
result->begin_dataset();
|
|
for (fetch_limit+= num_rows; fetch_count < fetch_limit; fetch_count++)
|
|
{
|
|
if ((res= table->file->ha_rnd_next(table->record[0])))
|
|
break;
|
|
/* Send data only if the read was successful. */
|
|
/*
|
|
If network write failed (i.e. due to a closed socked),
|
|
the error has already been set. Just return.
|
|
*/
|
|
if (result->send_data(item_list) > 0)
|
|
return;
|
|
}
|
|
|
|
switch (res) {
|
|
case 0:
|
|
thd->server_status|= SERVER_STATUS_CURSOR_EXISTS;
|
|
result->send_eof();
|
|
break;
|
|
case HA_ERR_END_OF_FILE:
|
|
thd->server_status|= SERVER_STATUS_LAST_ROW_SENT;
|
|
result->send_eof();
|
|
close();
|
|
break;
|
|
default:
|
|
table->file->print_error(res, MYF(0));
|
|
close();
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
void Materialized_cursor::close()
|
|
{
|
|
/* Free item_list items */
|
|
free_items();
|
|
if (is_rnd_inited)
|
|
(void) table->file->ha_rnd_end();
|
|
/*
|
|
We need to grab table->mem_root to prevent free_tmp_table from freeing:
|
|
the cursor object was allocated in this memory.
|
|
*/
|
|
main_mem_root= table->mem_root;
|
|
mem_root= &main_mem_root;
|
|
clear_alloc_root(&table->mem_root);
|
|
free_tmp_table(table->in_use, table);
|
|
table= 0;
|
|
}
|
|
|
|
|
|
Materialized_cursor::~Materialized_cursor()
|
|
{
|
|
if (is_open())
|
|
close();
|
|
}
|
|
|
|
|
|
/*
|
|
@brief
|
|
Perform actions that are to be done when cursor materialization has
|
|
finished.
|
|
|
|
@detail
|
|
This function is called when "OPEN $cursor" has finished filling the
|
|
temporary table with rows that the cursor will return.
|
|
|
|
Temporary table has table->field->orig_table pointing at the tables
|
|
that are used in the cursor definition query. Pointers to these tables
|
|
will not be valid after the query finishes. So, we do what is done for
|
|
regular tables: have orig_table point at the table that the fields belong
|
|
to.
|
|
*/
|
|
|
|
void Materialized_cursor::on_table_fill_finished()
|
|
{
|
|
uint fields= table->s->fields;
|
|
for (uint i= 0; i < fields; i++)
|
|
table->field[i]->orig_table= table->field[i]->table;
|
|
}
|
|
|
|
/***************************************************************************
|
|
Select_materialize
|
|
****************************************************************************/
|
|
|
|
int Select_materialize::prepare(List<Item> &list, SELECT_LEX_UNIT *u)
|
|
{
|
|
int rc= select_unit::prepare(list, u);
|
|
if (rc)
|
|
return rc;
|
|
if (m_return_type)
|
|
{
|
|
/*
|
|
We're opening a REF CURSOR with the RETURN clause, e.g.:
|
|
TYPE cur0_t IS REF CURSOR RETURN t1%ROWTYPE;
|
|
c0 cur0_t;
|
|
OPEN c0 FOR SELECT * FROM t1;
|
|
*/
|
|
if (m_return_type->check_assignability_from(list, m_cursor_name.str,
|
|
"OPEN..FOR"))
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
bool Select_materialize::send_result_set_metadata(List<Item> &list, uint flags)
|
|
{
|
|
DBUG_ASSERT(table == 0);
|
|
if (create_result_table(unit->thd, unit->get_column_types(true),
|
|
FALSE,
|
|
thd->variables.option_bits | TMP_TABLE_ALL_COLUMNS,
|
|
&empty_clex_str, FALSE, TRUE, TRUE, 0))
|
|
return TRUE;
|
|
|
|
materialized_cursor= new (&table->mem_root)
|
|
Materialized_cursor(result, table);
|
|
|
|
if (!materialized_cursor)
|
|
{
|
|
free_tmp_table(table->in_use, table);
|
|
table= 0;
|
|
return TRUE;
|
|
}
|
|
|
|
if (materialized_cursor->send_result_set_metadata(unit->thd, list))
|
|
{
|
|
delete materialized_cursor;
|
|
table= 0;
|
|
materialized_cursor= 0;
|
|
return TRUE;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|