2017-01-14 14:56:01 +01:00
|
|
|
#
|
|
|
|
# This tests various issues when vcol items allocate memory (e.g. more items)
|
|
|
|
# not in the TABLE::expr_arena.
|
|
|
|
#
|
|
|
|
|
2022-04-14 21:45:20 +02:00
|
|
|
--echo #
|
|
|
|
--echo # MDEV-9690 concurrent queries with virtual columns crash in temporal code
|
|
|
|
--echo #
|
2017-01-14 14:56:01 +01:00
|
|
|
create table t1 (a datetime,
|
|
|
|
# get_datetime_value
|
|
|
|
b int as (a > 1), # Arg_comparator
|
|
|
|
c int as (a in (1,2,3)), # in_datetime
|
2017-01-14 20:55:33 +01:00
|
|
|
d int as ((a,a) in ((1,1),(2,1),(NULL,1))), # cmp_item_datetime
|
|
|
|
# other issues
|
|
|
|
e int as ((a,1) in ((1,1),(2,1),(NULL,1))) # cmp_item_row::alloc_comparators()
|
2017-01-14 14:56:01 +01:00
|
|
|
);
|
MDEV-15945 --ps-protocol does not test some queries
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).
2019-03-10 23:59:50 +01:00
|
|
|
enable_prepare_warnings;
|
2017-01-14 14:56:01 +01:00
|
|
|
show create table t1;
|
MDEV-15945 --ps-protocol does not test some queries
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).
2019-03-10 23:59:50 +01:00
|
|
|
disable_prepare_warnings;
|
2017-01-14 14:56:01 +01:00
|
|
|
connect con1, localhost, root;
|
2017-04-01 18:54:15 +02:00
|
|
|
disable_warnings;
|
2017-01-14 14:56:01 +01:00
|
|
|
insert t1 (a) values ('2010-10-10 10:10:10');
|
2017-04-01 18:54:15 +02:00
|
|
|
enable_warnings;
|
2023-05-31 11:57:45 +07:00
|
|
|
#Enable after fix MDEV-31359
|
|
|
|
--disable_ps2_protocol
|
2017-01-14 14:56:01 +01:00
|
|
|
select * from t1;
|
2023-05-31 11:57:45 +07:00
|
|
|
--enable_ps2_protocol
|
2017-01-14 14:56:01 +01:00
|
|
|
disconnect con1;
|
|
|
|
connection default;
|
2017-04-01 18:54:15 +02:00
|
|
|
disable_warnings;
|
2017-01-14 14:56:01 +01:00
|
|
|
select * from t1;
|
2017-04-01 18:54:15 +02:00
|
|
|
enable_warnings;
|
2017-01-14 14:56:01 +01:00
|
|
|
drop table t1;
|
2017-01-14 21:23:00 +01:00
|
|
|
|
|
|
|
connect con1, localhost, root;
|
|
|
|
create table t1 (a datetime,
|
|
|
|
b datetime as (least(a,1)) # Item_func_min_max::get_date
|
|
|
|
);
|
|
|
|
insert t1 (a) values ('2010-10-10 10:10:10');
|
|
|
|
select * from t1;
|
|
|
|
disconnect con1;
|
|
|
|
connection default;
|
|
|
|
select * from t1;
|
|
|
|
drop table t1;
|
2017-08-13 01:08:30 +02:00
|
|
|
|
2022-04-14 21:45:20 +02:00
|
|
|
--echo #
|
|
|
|
--echo # MDEV-13435 Crash when selecting virtual columns generated using JSON functions
|
|
|
|
--echo #
|
2017-08-13 01:08:30 +02:00
|
|
|
create table t1 (
|
|
|
|
id int not null ,
|
|
|
|
js varchar(1000) not null,
|
|
|
|
t time AS (cast(json_value(json_extract(js,concat('$.singleDay."', dayname(curdate()),'"')),'$.start') as time)) virtual);
|
|
|
|
insert into t1(id,js) values (0, '{"default" : {"start": "00:00:00", "end":"23:59:50"}}');
|
|
|
|
select * from t1;
|
|
|
|
drop table t1;
|
2022-04-14 21:45:20 +02:00
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # MDEV-26281 ASAN use-after-poison when complex conversion is involved in blob
|
|
|
|
--echo #
|
|
|
|
create table t1 (v2 blob as ('a' is null), a1 int, a char(1) as (cast(a1 in (0,current_user() is null) as char(16777216) )));
|
|
|
|
insert ignore into t1 values ('x','x',v2) ;
|
|
|
|
drop table t1;
|
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # End of 10.2 tests
|
|
|
|
--echo #
|