1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-14650 Assertion 0 failed in TABLE::vers_update_fields [fixes #402]

SQL: fixed selecion of handlerton by respecting partitioning
This commit is contained in:
Aleksey Midenkov
2017-12-14 19:41:28 +03:00
parent ab5ec0f346
commit 27187443ef
7 changed files with 26 additions and 25 deletions

View File

@ -1,13 +1,4 @@
drop table if exists t1;
create function if not exists non_default_engine()
returns varchar(255)
deterministic
begin
if default_engine() = 'InnoDB' then
return 'MyISAM';
end if;
return 'InnoDB';
end~~
create table t1 (
x1 int unsigned,
Sys_start SYS_DATATYPE generated always as row start comment 'start',