Hi team,
My client upgraded the database to 26ai and I'm planning to start using database assertions asap. For those who don't know, assertions are brand new objects in 26ai, kind of multi-table , multi-row check constraints. For example, a primitive version of assertion may look like that:
CREATE ASSERTION check_president_salary CHECK (
EXISTS (SELECT 1 FROM emp WHERE job = 'PRESIDENT' AND sal BETWEEN 4000 AND 10000)
);
My question: Are there any plans to support assertions in project export and project stage commands in the near future?
Best,
Alex