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

« back to all changes in this revision

Viewing changes to src/test/resources/cz/startnet/utils/pgdiff/modify_sequence_minvalue_set_original.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
SET search_path = public, pg_catalog;
 
17
 
 
18
--
 
19
-- Name: testseq; Type: SEQUENCE; Schema: public; Owner: fordfrog
 
20
--
 
21
 
 
22
CREATE SEQUENCE testseq
 
23
    START WITH 1
 
24
    INCREMENT BY 10
 
25
    NO MAXVALUE
 
26
    NO MINVALUE
 
27
    CACHE 1;
 
28
 
 
29
 
 
30
ALTER TABLE public.testseq OWNER TO fordfrog;
 
31
 
 
32
--
 
33
-- Name: public; Type: ACL; Schema: -; Owner: postgres
 
34
--
 
35
 
 
36
REVOKE ALL ON SCHEMA public FROM PUBLIC;
 
37
REVOKE ALL ON SCHEMA public FROM postgres;
 
38
GRANT ALL ON SCHEMA public TO postgres;
 
39
GRANT ALL ON SCHEMA public TO PUBLIC;
 
40
 
 
41
 
 
42
--
 
43
-- PostgreSQL database dump complete
 
44
--
 
45