~ubuntu-branches/ubuntu/karmic/apgdiff/karmic

« back to all changes in this revision

Viewing changes to src/test/resources/cz/startnet/utils/pgdiff/drop_function_args_new.sql

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2008-09-09 15:42:54 UTC
  • Revision ID: james.westby@ubuntu.com-20080909154254-458sv7ew1rczdal1
Tags: upstream-1.2
ImportĀ upstreamĀ versionĀ 1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--
 
2
-- PostgreSQL database dump
 
3
--
 
4
 
 
5
SET client_encoding = 'UTF8';
 
6
SET check_function_bodies = false;
 
7
SET client_min_messages = warning;
 
8
 
 
9
--
 
10
-- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: postgres
 
11
--
 
12
 
 
13
COMMENT ON SCHEMA public IS 'Standard public schema';
 
14
 
 
15
 
 
16
--
 
17
-- Name: plpgsql; Type: PROCEDURAL LANGUAGE; Schema: -; Owner: 
 
18
--
 
19
 
 
20
CREATE PROCEDURAL LANGUAGE plpgsql;
 
21
 
 
22
 
 
23
SET search_path = public, pg_catalog;
 
24
 
 
25
SET default_tablespace = '';
 
26
 
 
27
SET default_with_oids = false;
 
28
 
 
29
--
 
30
-- Name: test_table; Type: TABLE; Schema: public; Owner: fordfrog; Tablespace: 
 
31
--
 
32
 
 
33
CREATE TABLE test_table (
 
34
    id serial NOT NULL
 
35
);
 
36
 
 
37
 
 
38
ALTER TABLE public.test_table OWNER TO fordfrog;
 
39
 
 
40
--
 
41
-- Name: test_table_pkey; Type: CONSTRAINT; Schema: public; Owner: fordfrog; Tablespace: 
 
42
--
 
43
 
 
44
ALTER TABLE ONLY test_table
 
45
    ADD CONSTRAINT test_table_pkey PRIMARY KEY (id);
 
46
 
 
47
 
 
48
--
 
49
-- Name: public; Type: ACL; Schema: -; Owner: postgres
 
50
--
 
51
 
 
52
REVOKE ALL ON SCHEMA public FROM PUBLIC;
 
53
REVOKE ALL ON SCHEMA public FROM postgres;
 
54
GRANT ALL ON SCHEMA public TO postgres;
 
55
GRANT ALL ON SCHEMA public TO PUBLIC;
 
56
 
 
57
 
 
58
--
 
59
-- PostgreSQL database dump complete
 
60
--
 
61