Details
-
Bug
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
None
-
Unexpected results
-
Q4/2026 Server Maintenance
Description
For the following scenario, the recorded context doesn't capture the DDL for sequence s1
CREATE SEQUENCE s1; |
CREATE TABLE t1 (a INT PRIMARY KEY DEFAULT nextval(s1), b INT); |
set optimizer_record_context=1; |
select * from t1 where b < 10; |