Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Owner info from smalljoins.dump #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions Datasets/smalljoins.dump
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ SET default_tablespace = '';
SET default_with_oids = false;

--
-- Name: customers; Type: TABLE; Schema: public; Owner: ben
-- Name: customers; Type: TABLE; Schema: public;
--

CREATE TABLE public.customers (
Expand All @@ -32,10 +32,9 @@ CREATE TABLE public.customers (
);


ALTER TABLE public.customers OWNER TO ben;

--
-- Name: order_info; Type: TABLE; Schema: public; Owner: ben
-- Name: order_info; Type: TABLE; Schema: public;
--

CREATE TABLE public.order_info (
Expand All @@ -46,10 +45,9 @@ CREATE TABLE public.order_info (
);


ALTER TABLE public.order_info OWNER TO ben;

--
-- Name: products; Type: TABLE; Schema: public; Owner: ben
-- Name: products; Type: TABLE; Schema: public;
--

CREATE TABLE public.products (
Expand All @@ -59,10 +57,9 @@ CREATE TABLE public.products (
);


ALTER TABLE public.products OWNER TO ben;

--
-- Data for Name: customers; Type: TABLE DATA; Schema: public; Owner: ben
-- Data for Name: customers; Type: TABLE DATA; Schema: public;
--

COPY public.customers (customer_id, first_name, last_name, address) FROM stdin;
Expand All @@ -75,7 +72,7 @@ COPY public.customers (customer_id, first_name, last_name, address) FROM stdin;


--
-- Data for Name: order_info; Type: TABLE DATA; Schema: public; Owner: ben
-- Data for Name: order_info; Type: TABLE DATA; Schema: public;
--

COPY public.order_info (order_id, customer_id, product_code, qty) FROM stdin;
Expand All @@ -88,7 +85,7 @@ COPY public.order_info (order_id, customer_id, product_code, qty) FROM stdin;


--
-- Data for Name: products; Type: TABLE DATA; Schema: public; Owner: ben
-- Data for Name: products; Type: TABLE DATA; Schema: public;
--

COPY public.products (product_code, name, stock) FROM stdin;
Expand Down