diff --git a/streamlit/interface_2.py b/streamlit/interface_2.py index ec38e22..26a5e88 100644 --- a/streamlit/interface_2.py +++ b/streamlit/interface_2.py @@ -196,7 +196,7 @@ if client: fields = fields[fields['PRIORITY'] == 'E'] if st.button("Show Results"): - query = 'select * from "DOCZY_PIPELINE_RAW_OUTPUT"' + query = 'select * from "DOCZY_PIPELINE_RAW_OUTPUT_AC"' cur.execute(query) df2 = pd.DataFrame.from_records(iter(cur), columns=[x[0] for x in cur.description]) diff --git a/streamlit/multipage/pages/Interface_2.py b/streamlit/multipage/pages/Interface_2.py index 7323247..85a8a81 100644 --- a/streamlit/multipage/pages/Interface_2.py +++ b/streamlit/multipage/pages/Interface_2.py @@ -196,7 +196,7 @@ if client: fields = fields[fields['PRIORITY'] == 'E'] if st.button("Show Results"): - query = 'select * from "DOCZY_PIPELINE_RAW_OUTPUT"' + query = 'select * from "DOCZY_PIPELINE_RAW_OUTPUT_AC"' cur.execute(query) df2 = pd.DataFrame.from_records(iter(cur), columns=[x[0] for x in cur.description])