mirror of
https://github.com/MariaDB/server.git
synced 2025-06-04 18:03:14 +03:00
Make mysqltest to use --ps-protocol more use prepared statements for everything that server supports with the exception of CALL (for now). Fix discovered test failures and bugs. tests: * PROCESSLIST shows Execute state, not Query * SHOW STATUS increments status variables more than in text protocol * multi-statements should be avoided (see tests with a wrong delimiter) * performance_schema events have different names in --ps-protocol * --enable_prepare_warnings mysqltest.cc: * make sure run_query_stmt() doesn't crash if there's no active connection (in wait_until_connected_again.inc) * prepare all statements that server supports protocol.h * Protocol_discard::send_result_set_metadata() should not send anything to the client. sql_acl.cc: * extract the functionality of getting the user for SHOW GRANTS from check_show_access(), so that mysql_test_show_grants() could generate the correct column names in the prepare step sql_class.cc: * result->prepare() can fail, don't ignore its return value * use correct number of decimals for EXPLAIN columns sql_parse.cc: * discard profiling for SHOW PROFILE. In text protocol it's done in prepare_schema_table(), but in --ps it is called on prepare only, so nothing was discarding profiling during execute. * move the permission checking code for SHOW CREATE VIEW to mysqld_show_create_get_fields(), so that it would be called during prepare step too. * only set sel_result when it was created here and needs to be destroyed in the same block. Avoid destroying lex->result. * use the correct number of tables in check_show_access(). Saying "as many as possible" doesn't work when first_not_own_table isn't set yet. sql_prepare.cc: * use correct user name for SHOW GRANTS columns * don't ignore verbose flag for SHOW SLAVE STATUS * support preparing REVOKE ALL and ROLLBACK TO SAVEPOINT * don't ignore errors from thd->prepare_explain_fields() * use select_send result for sending ANALYZE and EXPLAIN, but don't overwrite lex->result, because it might be needed to issue execute-time errors (select_dumpvar - too many rows) sql_show.cc: * check grants for SHOW CREATE VIEW here, not in mysql_execute_command sql_view.cc: * use the correct function to check privileges. Old code was doing check_access() for thd->security_ctx, which is invoker's sctx, not definer's sctx. Hide various view related errors from the invoker. sql_yacc.yy: * initialize lex->select_lex for LOAD, otherwise it'll contain garbage data that happen to fail tests with views in --ps (but not otherwise).
141 lines
3.7 KiB
Plaintext
141 lines
3.7 KiB
Plaintext
############# mysql-test\t\sql_buffer_result_func.test #####################
|
|
# #
|
|
# Variable Name: sql_buffer_result #
|
|
# Scope: SESSION #
|
|
# Access Type: Dynamic #
|
|
# Data Type: BOOLEAN #
|
|
# Default Value: 0 FALSE #
|
|
# Values: 1 TRUE, 0 FALSE #
|
|
# #
|
|
# #
|
|
# Creation Date: 2008-02-25 #
|
|
# Author: Sharique Abdullah #
|
|
# #
|
|
# Description: Test Cases of Dynamic System Variable "sql_buffer_result" #
|
|
# that checks behavior of this variable in the following ways #
|
|
# * Functionality based on different values #
|
|
# #
|
|
# Reference: http://dev.mysql.com/doc/refman/5.1/en/set-option.html #
|
|
# #
|
|
############################################################################
|
|
|
|
--echo ** Setup **
|
|
--echo
|
|
#
|
|
# Setup
|
|
#
|
|
|
|
SET @original_sql_buffer_result = @@sql_buffer_result;
|
|
|
|
#
|
|
# Create tables
|
|
#
|
|
|
|
CREATE TEMPORARY TABLE t1(a varchar(20), b varchar(20));
|
|
|
|
INSERT INTO t1 VALUES('aa','bb');
|
|
INSERT INTO t1 VALUES('aa','bb');
|
|
INSERT INTO t1 VALUES('aa','bb');
|
|
INSERT INTO t1 VALUES('aa','bb');
|
|
INSERT INTO t1 VALUES('aa','bb');
|
|
|
|
--echo '#--------------------FN_DYNVARS_156_01-------------------------#'
|
|
#
|
|
# TRUE mode
|
|
#
|
|
|
|
SET SESSION sql_buffer_result = 1;
|
|
|
|
--disable_ps_protocol
|
|
SHOW STATUS LIKE 'Created_tmp_tables';
|
|
--enable_ps_protocol
|
|
--echo Expected value : 0.
|
|
|
|
SELECT * FROM t1;
|
|
|
|
--disable_ps_protocol
|
|
SHOW STATUS LIKE 'Created_tmp_tables';
|
|
--enable_ps_protocol
|
|
--echo Expected value : 1.
|
|
|
|
SELECT * FROM t1;
|
|
|
|
--disable_ps_protocol
|
|
SHOW STATUS LIKE 'Created_tmp_tables';
|
|
--enable_ps_protocol
|
|
--echo Expected value : 2.
|
|
|
|
--echo '#--------------------FN_DYNVARS_156_02-------------------------#'
|
|
#
|
|
# FALSE mode
|
|
#
|
|
|
|
SET SESSION sql_buffer_result = 0;
|
|
|
|
--disable_ps_protocol
|
|
SHOW STATUS LIKE 'Created_tmp_tables';
|
|
--enable_ps_protocol
|
|
--echo Expected value : 2.
|
|
|
|
SELECT * FROM t1;
|
|
|
|
--disable_ps_protocol
|
|
SHOW STATUS LIKE 'Created_tmp_tables';
|
|
--enable_ps_protocol
|
|
--echo Expected value : 2.
|
|
|
|
--echo '#--------------------FN_DYNVARS_156_03-------------------------#'
|
|
#
|
|
# Session data integrity check
|
|
#
|
|
--echo ** Connecting con_int1 using root **
|
|
connect (con_int1,localhost,root,,);
|
|
|
|
--echo ** Connection con_int1 **
|
|
connection con_int1;
|
|
|
|
SELECT @@SESSION.sql_buffer_result;
|
|
--echo 0 / FALSE Expected
|
|
|
|
SET SESSION sql_buffer_result = FALSE;
|
|
|
|
--echo ** Connecting con_int2 using root **
|
|
connect (con_int2,localhost,root,,);
|
|
|
|
--echo ** Connection con_int2 **
|
|
connection con_int2;
|
|
|
|
SELECT @@SESSION.sql_buffer_result;
|
|
--echo 0 / FALSE Expected
|
|
|
|
SET SESSION sql_buffer_result = TRUE;
|
|
|
|
--echo ** Connection con_int1 **
|
|
connection con_int1;
|
|
|
|
SELECT @@SESSION.sql_buffer_result;
|
|
--echo 0 / FALSE Expected
|
|
|
|
--echo ** Connection con_int2 **
|
|
connection con_int2;
|
|
|
|
SELECT @@SESSION.sql_buffer_result;
|
|
--echo 1 / TRUE Expected
|
|
|
|
--echo ** Connection default **
|
|
connection default;
|
|
|
|
--echo Disconnecting Connections con_int1, con_int2
|
|
disconnect con_int1;
|
|
disconnect con_int2;
|
|
|
|
|
|
#
|
|
# Cleanup
|
|
#
|
|
--echo ** Cleanup **
|
|
|
|
SET @@sql_buffer_result = @original_sql_buffer_result;
|
|
|
|
DROP TABLE t1;
|