File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- ALTER TABLE stg_test_definition_updates ADD COLUMN IF NOT EXISTS threshold_value VARCHAR (1000 );
1+ SET SEARCH_PATH TO {SCHEMA_NAME};
2+
3+ ALTER TABLE stg_test_definition_updates
4+ ADD COLUMN IF NOT EXISTS threshold_value VARCHAR (1000 );
Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ def render(
8989 monitored_tables_page = []
9090 all_monitored_tables_count = 0
9191 monitor_changes_summary = None
92+ auto_open_table = None
9293
9394 current_page = int (current_page )
9495 items_per_page = int (items_per_page )
@@ -126,7 +127,6 @@ def render(
126127 monitor_changes_summary = summarize_monitor_changes (table_group_id )
127128
128129 monitored_table_names = {table ["table_name" ] for table in monitored_tables_page }
129- auto_open_table = None
130130 if table_name :
131131 if st .session_state .get (DIALOG_AUTO_OPENED_KEY ) != table_name :
132132 if table_name in monitored_table_names :
You can’t perform that action at this time.
0 commit comments