github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/pkg/ccl/importccl/testdata/pgdump/second.sql (about) 1 -- 2 -- PostgreSQL database dump 3 -- 4 5 -- Dumped from database version 9.6.9 6 -- Dumped by pg_dump version 9.6.9 7 8 SET statement_timeout = 0; 9 SET lock_timeout = 0; 10 SET idle_in_transaction_session_timeout = 0; 11 SET client_encoding = 'UTF8'; 12 SET standard_conforming_strings = on; 13 SELECT pg_catalog.set_config('search_path', '', false); 14 SET check_function_bodies = false; 15 SET client_min_messages = warning; 16 SET row_security = off; 17 18 SET default_tablespace = ''; 19 20 SET default_with_oids = false; 21 22 -- 23 -- Name: second; Type: TABLE; Schema: public; Owner: postgres 24 -- 25 26 CREATE TABLE public.second ( 27 i integer NOT NULL, 28 s text 29 ); 30 31 32 ALTER TABLE public.second OWNER TO postgres; 33 34 -- 35 -- Data for Name: second; Type: TABLE DATA; Schema: public; Owner: postgres 36 -- 37 38 COPY public.second (i, s) FROM stdin; 39 0 0 40 1 1 41 2 2 42 3 3 43 4 4 44 5 5 45 6 6 46 \. 47 48 49 -- 50 -- Name: second second_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres 51 -- 52 53 ALTER TABLE ONLY public.second 54 ADD CONSTRAINT second_pkey PRIMARY KEY (i); 55 56 57 -- 58 -- PostgreSQL database dump complete 59 -- 60