Lena Startseva
0a5e4a0191
MDEV-31005: Make working cursor-protocol
...
Updated tests: cases with bugs or which cannot be run
with the cursor-protocol were excluded with
"--disable_cursor_protocol"/"--enable_cursor_protocol"
Fix for v.10.5
2024-09-18 18:39:26 +07:00
Marko Mäkelä
8ec12e0d6d
Merge 10.4 into 10.5
2024-02-12 11:38:13 +02:00
Oleksandr Byelkin
d816a5ca32
fix test
2024-02-09 10:26:46 +01:00
Sergei Golubchik
98a39b0c91
Merge branch '10.4' into 10.5
2023-12-02 01:02:50 +01:00
Anel Husakovic
18acf97dfd
MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc
...
- Record unrecorded tests from `rpl` suite to `engines/funcs` suite
(done by d8e448ba1b
):
1) Record test `rpl_row_until` from commit d95fa7e332
2) Record test `rpl_slave_status` from commit a7d186a17d
- Stop only running threads for `engines/funcs.rpl_server_id1.test` that
is not the same as `rpl.rpl_server_id1.test`
- Reviewer: <knielsen@knielsen-hq.org>
<andrei.elkin@mariadb.com>
2023-11-27 14:12:22 +01:00
Sergei Golubchik
d8e448ba1b
MDEV-32168 fix failing tests
...
followup for a7d186a17d
2023-11-25 10:33:31 +01:00
Oleksandr Byelkin
ac5a534a4c
Merge remote-tracking branch '10.4' into 10.5
2023-03-31 21:32:41 +02:00
Aleksey Midenkov
91e5e47a50
MDEV-30421 more tests cleaned up
...
All the .inc files that included from binlog_encryption are refactored.
2023-03-23 21:07:32 +03:00
Tingyao Nian
dccbb5a6db
[MDEV-30824] Fix binlog to use 'String' for setting 'character_set_client'
...
Commit a923d6f49c
disabled numeric setting
of character_set_* variables with non-default values:
MariaDB [(none)]> set character_set_client=224;
ERROR 1115 (42000): Unknown character set: '224'
However the corresponding binlog functionality still write numeric
values for log event, and this will break binlog replay if the value is
not default. Now make the server use 'String' type for
'character_set_client' when generating binlog events
Before:
/*!\C utf8mb4 *//*!*/;
SET @@session.character_set_client=224,@@session.collation_connection=224,@@session.collation_server=33/*!*/;
After:
/*!\C utf8mb4 *//*!*/;
SET @@session.character_set_client=utf8mb4,@@session.collation_connection=33,@@session.collation_server=8/*!*/;
Note: prior to the previous commit, setting with '224' or '45' or
'utf8mb4' have the same effect, as they all set the parameter to
'utf8mb4'.
All new code of the whole pull request, including one or several files
that are either new files or modified ones, are contributed under the
BSD-new license. I am contributing on behalf of my employer Amazon Web
Services, Inc.
2023-03-21 17:19:44 +04:00
Sergei Golubchik
3a2116241b
Merge branch '10.4' into 10.5
2022-10-02 14:38:13 +02:00
Sergei Golubchik
d4f6d2f08f
Merge branch '10.3' into 10.4
2022-10-01 23:07:26 +02:00
Anel Husakovic
1f51d6c0f6
MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB
...
- Added missing information about database of corresponding table for various types of commands
- Update some typos
- Reviewed by: <vicentiu@mariadb.org>
2022-09-30 08:48:57 +02:00
Alexander Barkov
fe844c16b6
Merge remote-tracking branch 'origin/10.4' into 10.5
2022-09-14 16:24:51 +04:00
Marko Mäkelä
18795f5512
Merge 10.3 into 10.4
2022-09-13 16:36:38 +03:00
Alexander Barkov
f1544424de
MDEV-29446 Change SHOW CREATE TABLE to display default collation
2022-09-12 22:10:39 +04:00
Sergei Golubchik
b174ec169d
MDEV-29225 make explicit_defaults_for_timestamps SESSION variable
...
save it in binlog, so that CREATE TABLE could be replayed correctly
on the slave
2022-08-02 18:08:38 +02:00
Marko Mäkelä
8570a6a093
Merge 10.4 into 10.5
2021-03-20 13:34:38 +02:00
Marko Mäkelä
d8dc8537e4
Merge 10.3 into 10.4
2021-03-20 13:04:36 +02:00
Alice Sherepa
0f3045e432
fix for engines/funcs/rpl_sp.test
2021-03-19 17:29:18 +01:00
Alice Sherepa
8bdffb3750
fix for tests from engines/funcs
2021-03-19 15:44:07 +01:00
Alice Sherepa
2944d7e692
fix for tests from engines/funcs
2021-03-19 12:20:50 +01:00
Marko Mäkelä
be881ec457
Merge 10.4 into 10.5
2021-03-19 13:09:21 +02:00
Marko Mäkelä
44d70c01f0
Merge 10.3 into 10.4
2021-03-19 11:42:44 +02:00
Marko Mäkelä
19052b6deb
Merge 10.2 into 10.3
2021-03-18 12:34:48 +02:00
Alice Sherepa
ee12b055ff
reenable tests from engines/funcs
2021-03-10 09:12:57 +01:00
Monty
bff79492c5
Added IF EXISTS to RENAME TABLE and ALTER TABLE
2020-03-24 20:47:41 +02:00
Robert Bindar
042f5165e3
MDEV-307 review minor edits, add yacc_ora support
2019-05-21 09:33:30 +03:00
Monty
9965966a49
Fixed that storage/funcs tests works with Aria
...
Problem was that SHOW CREATE didn't remove PAGE_CHECKSUM=1
2019-05-11 13:52:31 +03:00
Sergei Golubchik
2cf30866d7
MDEV-14576 Include full name of object in message about incorrect value for column
...
update engines/ suites
followup for c4ab352b67
2018-12-21 13:31:18 +01:00
Marko Mäkelä
b5763ecd01
Merge 10.3 into 10.4
2018-12-18 11:33:53 +02:00
Marko Mäkelä
45531949ae
Merge 10.2 into 10.3
2018-12-18 09:15:41 +02:00
Varun Gupta
93c360e3a5
MDEV-15253: Default optimizer setting changes for MariaDB 10.4
...
use_stat_tables= PREFERABLY
optimizer_use_condition_selectivity= 4
2018-12-09 09:22:00 +05:30
Michael Widenius
39018f2a5a
Move mysql-test-run/extra/rpl_tests to suite/rpl/include
...
Renamed suite/rpl/include/rpl_sync.inc to rpl_sync_test.inc to
remove clash with include/rpl_sync.inc
2018-03-29 13:59:44 +03:00
Sergei Golubchik
9584c6753e
MDEV-12874 UPDATE statements with the same source and target
...
update engine tests
2017-10-04 10:28:20 +02:00
Sergei Golubchik
f1ce69f3a9
Merge branch '10.1' into 10.2
...
But without f4f48e06215..f8a800bec81 - fixes for MDEV-12672
and related issues. 10.2 specific fix follows...
2017-09-22 02:27:00 +02:00
Sergei Golubchik
2e3a16e366
Merge branch '10.0' into 10.1
2017-09-21 22:02:21 +02:00
Sergei Golubchik
b7434bacbd
include/master-slave.inc must always be included last
2017-09-20 18:17:50 +02:00
Elena Stepanova
93e32d725c
Follow-up for MDEV-13089 (identifier quoting in partitioning)
...
Adjust results for tests in non-default suites
2017-07-09 20:38:57 +03:00
Nirbhay Choubey
8b2e642aa2
MDEV-7635: Update tests to adapt to the new default sql_mode
2017-02-10 06:30:42 -05:00
Elena Stepanova
9213ac8fd8
Follow-up for a411d7f4f6
- change in formatting of SHOW CREATE TABLE
2016-12-15 02:35:31 +02:00
Sergei Golubchik
0bef3bb8d0
cleanup: remove Item::intro_version
...
and partition_info::set_show_version_string - they were
already broken and impossible to maintain
2016-12-12 20:27:25 +01:00
Alexander Barkov
0f8a1a314d
MDEV-10877 xxx_unicode_nopad_ci collations
2016-09-23 14:19:07 +04:00
Sergei Golubchik
f9bdc7c01a
Merge branch '10.2' into bb-10.2-jan
2016-09-19 09:47:08 +02:00
Jan Lindström
62ed88017c
Fix test failure on tc_partition_list_directory because
...
innodb-strict-mode by default is now ON, disabling it for
this test because test uses INDEX DICECTORY that is not
really supported by InnoDB.
2016-09-14 13:53:32 +03:00
Alexander Barkov
a032fd5c1c
MDEV-10758 engines/funcs.db_alter_collate_ascii and engines/funcs.db_alter_collate_utf8 fail with wrong results
2016-09-07 16:43:45 +04:00
Sergei Golubchik
6e5048e85f
clarify the error message for frm size overflow
2016-08-27 16:59:12 +02:00
Sergei Golubchik
6820bf9ca9
do not quote numbers in the DEFAULT clause in SHOW CREATE
2016-08-27 16:59:11 +02:00
Sergei Golubchik
5c764a0eb8
clarify ER_CANT_DROP_FIELD_OR_KEY
...
include the dropped object type
2016-07-02 14:52:20 +02:00
Elena Stepanova
1d2fa98260
Post-commit test fixes
...
- 12d75e6121
- new thread stack size
- 99e48cb1d9
- warning text changed
- 6c173324ff
- default values for BLOBs
- c87e002bbb
- don't return a negative zero
2016-07-02 03:26:32 +03:00
Sergei Golubchik
932646b1ff
Merge branch '10.1' into 10.2
2016-06-30 16:38:05 +02:00