mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
0515577d12
* rename to a generic name * move remaning initializations from query exec to prepare time * simplify/unify key handling in open_table_from_share and delayed * remove dead code * move tests where they belong
17 lines
804 B
Text
17 lines
804 B
Text
#
|
|
# Assertion `inited == NONE || update_handler != this' failed in
|
|
# handler::ha_write_row
|
|
#
|
|
CREATE TABLE t1 (f VARCHAR(4096), s DATE, e DATE, PERIOD FOR app(s,e), UNIQUE(f)) ENGINE=MyISAM;
|
|
INSERT INTO t1 VALUES ('foo', '2023-08-30', '2025-07-09'),('bar', '2021-01-01', '2021-12-31');
|
|
DELETE FROM t1 FOR PORTION OF app FROM '2023-08-29' TO '2025-07-01';
|
|
DROP TABLE t1;
|
|
#
|
|
# MDEV-21819 Assertion `inited == NONE || update_handler != this'
|
|
# failed in handler::ha_write_row
|
|
#
|
|
CREATE OR REPLACE TABLE t1 (a INT, b BLOB, s DATE, e DATE, PERIOD FOR app(s,e), UNIQUE(b)) ENGINE=MyISAM PARTITION BY HASH(a) PARTITIONS 2;
|
|
INSERT INTO t1 VALUES (1,'foo','2022-01-01', '2025-01-01');
|
|
DELETE FROM t1 FOR PORTION OF app FROM '2023-01-01' TO '2024-01-01';
|
|
ERROR 23000: Duplicate entry 'foo' for key 'b'
|
|
DROP TABLE t1;
|