BUG #15338: pg_restore --disable-triggers --data-only AND schema for table is not set.

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: nekomata(at)olegk(dot)ca
Subject: BUG #15338: pg_restore --disable-triggers --data-only AND schema for table is not set.
Date: 2018-08-17 16:49:47
Message-ID: 153452458706.1316.5328079417086507743@wrigleys.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 15338
Logged by: Oleg
Email address: nekomata(at)olegk(dot)ca
PostgreSQL version: 10.4
Operating system: ubuntu 18.04
Description:

for instance, there is a table "analytics.user_snapshot_data"
and it exists in its schema...

when i do the restore here what is in the script:
--
-- PostgreSQL database dump
--

-- Dumped from database version 10.5 (Ubuntu 10.5-1.pgdg16.04+1)
-- Dumped by pg_dump version 10.5 (Ubuntu 10.5-1.pgdg16.04+1)

SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;

--
-- Data for Name: user_snapshot_data; Type: TABLE DATA; Schema: analytics;
Owner: XXXXXXX
--

SET SESSION AUTHORIZATION DEFAULT;

ALTER TABLE user_snapshot_data DISABLE TRIGGER ALL;

COPY analytics.user_snapshot_data (report_date, user_id, company_id, tasks,
events) FROM stdin;
..... [data here] ....
-------------------------------------------------------------------------------------------------------------------

that fails with
ERROR: relation "user_snapshot_data" does not exist

so basically "ALTER TABLE user_snapshot_data DISABLE TRIGGER ALL;"
is missing proper schema.

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message PG Bug reporting form 2018-08-17 16:58:43 BUG #15339: ddd
Previous Message Andrew Gierth 2018-08-17 15:44:46 Re: BUG #15336: Wrong cursor's bacward fetch results in select with ALL(subquery)