From f1d85fbbf6f300e51f21299a70bc86750edc1329 Mon Sep 17 00:00:00 2001 From: Xiaozhen Liu Date: Sun, 28 Jun 2026 09:49:12 -0700 Subject: [PATCH 1/4] feat(dao): add operator_port_cache table Adds the operator_port_cache table (texera_ddl.sql + Liquibase migration sql/updates/26.sql), keyed by (workflow_id, global_port_id, cache_key) with ON DELETE CASCADE to workflow. The cache read/write logic and its tests land with the cache service that uses it. Part of #5882. --- sql/changelog.xml | 5 +++++ sql/texera_ddl.sql | 19 +++++++++++++++++++ sql/updates/26.sql | 47 ++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 71 insertions(+) create mode 100644 sql/updates/26.sql diff --git a/sql/changelog.xml b/sql/changelog.xml index e216caf3d00..0aebde4ddb2 100644 --- a/sql/changelog.xml +++ b/sql/changelog.xml @@ -38,6 +38,11 @@ + + + + +