Hello, when I use the Export Grid Rows and choose SQL Inserts. The resulting SQL code has the table schema and name quoted. Postgresql doesn't allow quoted tables and schema names.
INSERT INTO "config.ui_staff_portal_page_entry" ("id", "page_col", "col_pos", "entry_type", "label", "image_url", "target_url", "entry_text", "owner") VALUES (1, 1, 0, 'header', 'Circulation and Patrons', NULL, NULL, NULL, 1);
Trying to execute this results in the error.
5: ERROR: relation "config.ui_staff_portal_page_entry" does not exist LINE 1: INSERT INTO "config.ui_staff_portal_page_entry" ("id", "page...
select * from "config.ui_staff_portal_page_entry" ;
ERROR: relation "config.ui_staff_portal_page_entry" does not exist LINE 1: select * from "config.ui_staff_portal_page_entry" ;
This works fine
select * from config.ui_staff_portal_page_entry limit 1;