You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(pgpm): update partition defaults to use public schema for execution tables
The execution tables moved from constructive_compute_private to
constructive_compute_public, but the default partition declarations
in constructive-infra-seed still referenced the old private schema.
Copy file name to clipboardExpand all lines: pgpm/constructive-infra-seed/sql/constructive-infra-seed--0.0.1.sql
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,11 @@ CREATE TABLE IF NOT EXISTS constructive_compute_public.org_function_execution_lo
9
9
10
10
CREATETABLEIF NOT EXISTS constructive_infra_public.platform_namespace_events_default PARTITION OF constructive_infra_public.platform_namespace_events DEFAULT;
11
11
12
-
CREATETABLEIF NOT EXISTS constructive_compute_private.platform_function_graph_executions_default PARTITION OF constructive_compute_private.platform_function_graph_executions DEFAULT;
12
+
CREATETABLEIF NOT EXISTS constructive_compute_public.platform_function_graph_executions_default PARTITION OF constructive_compute_public.platform_function_graph_executions DEFAULT;
13
13
14
-
CREATETABLEIF NOT EXISTS constructive_compute_private.platform_function_graph_execution_outputs_default PARTITION OF constructive_compute_private.platform_function_graph_execution_outputs DEFAULT;
14
+
CREATETABLEIF NOT EXISTS constructive_compute_public.platform_function_graph_execution_outputs_default PARTITION OF constructive_compute_public.platform_function_graph_execution_outputs DEFAULT;
15
15
16
-
CREATETABLEIF NOT EXISTS constructive_compute_private.platform_function_graph_execution_node_states_default PARTITION OF constructive_compute_private.platform_function_graph_execution_node_states DEFAULT;
16
+
CREATETABLEIF NOT EXISTS constructive_compute_public.platform_function_graph_execution_node_states_default PARTITION OF constructive_compute_public.platform_function_graph_execution_node_states DEFAULT;
17
17
18
18
CREATETABLEIF NOT EXISTS constructive_compute_public.platform_compute_log_default PARTITION OF constructive_compute_public.platform_compute_log DEFAULT;
0 commit comments