This repository was archived by the owner on May 14, 2026. It is now read-only.
This repository was archived by the owner on May 14, 2026. It is now read-only.
Description
Expected Behavior
INTERLEAVE IN PARENT ob_malware ON DELETE CASCADE;
Actual Behavior
INTERLEAVE IN PARENT ob_malware ON DELETE NO ACTION;
Steps to Reproduce the Problem
Create a table using a declarative base, and specify
__table_args__ = {
"spanner_interleave_in": "ob_malware",
"spanner_interleave_on_delete_cascade": True
}
The table is configured correctly to be interleaved, but cascade is set to NO ACTION
Specifications
Reactions are currently unavailable
Expected Behavior
INTERLEAVE IN PARENT ob_malware ON DELETE CASCADE;
Actual Behavior
INTERLEAVE IN PARENT ob_malware ON DELETE NO ACTION;
Steps to Reproduce the Problem
Create a table using a declarative base, and specify
__table_args__ = { "spanner_interleave_in": "ob_malware", "spanner_interleave_on_delete_cascade": True }The table is configured correctly to be interleaved, but cascade is set to NO ACTION
Specifications