Anyway, this means the table is dumped like this:
SET SESSION AUTHORIZATION 'auadmin';
SET search_path = public, pg_catalog;
COPY ...
Which give this error upon restoring:
ERROR: relation "pg_ts_cfg" does not exist
CONTEXT: COPY food_categories, line 1: "79 102 Vegetables, Salads & Legumes \N 'legum':3 'salad':2 'veget':1"
It's because the search_path needs to be like this for it to work:
SET search_path = public, contrib, pg_catalog;
Chris
---------------------------(end of broadcast)--------------------------- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])