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

don't allow TIMESTAMP(6) versioning and FK with CASCADE or SET NULL

This commit is contained in:
Sergei Golubchik
2018-02-23 13:42:34 +01:00
parent 794f71cbc4
commit 485325e7e3
10 changed files with 236 additions and 119 deletions

View File

@ -11,7 +11,7 @@ name varchar(100),
salary int(10),
constraint `dept-emp-fk`
foreign key (dept_id) references dept (dept_id)
on delete cascade
on delete restrict
on update restrict
)
with system versioning;