We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Related Issue: #18209 Design Doc: #35982 Draft PR: #36757
tidb_enable_foreign_key
ON DELETE
RESTRICT
NO ACTION
SET DEFAULT
CASCADE
SET NULL
ON UPDATE
INSERT ON DUPLICATE KEY
ON INSERT
INSERT IGNORE
UPDATE
REPLACE INTO
EXPLAIN
EXPLAIN ANALYZE
GORM
The text was updated successfully, but these errors were encountered:
crazycs520
No branches or pull requests
Support Foreign Key Dev Task
Related Issue: #18209
Design Doc: #35982
Draft PR: #36757
Dev Task
DDL Dev Task
tidb_enable_foreign_key
DML Dev Task
ON DELETE
ON DELETE
RESTRICT
,NO ACTION
,SET DEFAULT
action. support foreign key constrain check when execute delete statement #38221ON DELETE
CASCADE
action. support foreign key cascade delete #38376ON DELETE
SET NULL
action. support foreign key on delete set null #38594ON UPDATE
ON UPDATE
RESTRICT
,NO ACTION
,SET DEFAULT
action. support foreign key constrain check when execute update statement #38155ON UPDATE
CASCADE
action. support foreign key on update cascade and set null #38651ON UPDATE
SET NULL
action. support foreign key on update cascade and set null #38651INSERT ON DUPLICATE KEY
statement. support foreign key on update cascade in insert on duplicate update statement #38792ON INSERT
support foreign key constrain check when execute Insert statement #37465INSERT IGNORE
when foreign key constraints failed.UPDATE
child table. support foreign key constrain check when execute update statement #38155REPLACE INTO
statement support foreign key constraint when execute replace into statement #40068Enhancement
EXPLAIN
plan about DML with foreign key.EXPLAIN ANALYZE
info forINSERT IGNORE
statement. Refine EXPLAIN ANALYZE information for INSERT IGNORE statement. #38769Compatibility
After Foreign Key GA
tidb_enable_foreign_key
remove tidb_enable_foreign_key variable #39670Test
GORM
test about foreign key. https://github.com/pingcap/tidb-test/pull/1917User Doc
The text was updated successfully, but these errors were encountered: