Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb976b8a

Browse files
committed
Back out domain patch until it works properly.
1 parent609f71b commitb976b8a

32 files changed

+270
-1654
lines changed

‎doc/dominfo.txt

Lines changed: 0 additions & 87 deletions
This file was deleted.

‎doc/src/sgml/catalogs.sgml

Lines changed: 1 addition & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
Documentation of the system catalogs, directed toward PostgreSQL developers
3-
$Header: /cvsroot/pgsql/doc/src/sgml/catalogs.sgml,v 2.32 2002/03/06 20:34:43 momjian Exp $
3+
$Header: /cvsroot/pgsql/doc/src/sgml/catalogs.sgml,v 2.33 2002/03/07 16:35:32 momjian Exp $
44
-->
55

66
<chapter id="catalogs">
@@ -2510,53 +2510,6 @@
25102510
</para></entry>
25112511
</row>
25122512

2513-
<row>
2514-
<entry>typbasetype</entry>
2515-
<entry><type>oid</type></entry>
2516-
<entry></entry>
2517-
<entry><para>
2518-
<structfield>typbasetype</structfield> is the type that this one is based
2519-
off of. Normally references the domains parent type, and is 0 otherwise.
2520-
</para></entry>
2521-
</row>
2522-
2523-
<row>
2524-
<entry>typnotnull</entry>
2525-
<entry><type>boolean</type></entry>
2526-
<entry></entry>
2527-
<entry><para>
2528-
<structfield>typnotnull</structfield> represents a NOT NULL
2529-
constraint on a type. Normally used only for domains.
2530-
</para></entry>
2531-
</row>
2532-
2533-
<row>
2534-
<entry>typmod</entry>
2535-
<entry><type>integer</type></entry>
2536-
<entry></entry>
2537-
<entry><para>
2538-
<structfield>typmod</structfield> records type-specific data
2539-
supplied at table creation time (for example, the maximum
2540-
length of a <type>varchar</type> column). It is passed to
2541-
type-specific input and output functions as the third
2542-
argument. The value will generally be -1 for types that do not
2543-
need typmod. This data is copied to
2544-
<structfield>pg_attribute.atttypmod</structfield> on creation
2545-
of a table using a domain as it's field type.
2546-
</para></entry>
2547-
</row>
2548-
2549-
<row>
2550-
<entry>typdefaultbin</entry>
2551-
<entry><type>text</type></entry>
2552-
<entry></entry>
2553-
<entry><para>
2554-
<structfield>typdefaultbin</structfield> is NULL for types without a
2555-
default value. If it's not NULL, it contains the internal string
2556-
representation of the default expression node.
2557-
</para></entry>
2558-
</row>
2559-
25602513
<row>
25612514
<entry>typdefault</entry>
25622515
<entry><type>text</type></entry>

‎doc/src/sgml/ref/allfiles.sgml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/allfiles.sgml,v 1.34 2002/03/06 20:34:44 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/allfiles.sgml,v 1.35 2002/03/07 16:35:32 momjian Exp $
33
PostgreSQL documentation
44
Complete list of usable sgml source files in this directory.
55
-->
@@ -52,7 +52,6 @@ Complete list of usable sgml source files in this directory.
5252
<!entity createAggregate system "create_aggregate.sgml">
5353
<!entity createConstraint system "create_constraint.sgml">
5454
<!entity createDatabase system "create_database.sgml">
55-
<!entity createDomain system "create_domain.sgml">
5655
<!entity createFunction system "create_function.sgml">
5756
<!entity createGroup system "create_group.sgml">
5857
<!entity createIndex system "create_index.sgml">
@@ -70,7 +69,6 @@ Complete list of usable sgml source files in this directory.
7069
<!entity delete system "delete.sgml">
7170
<!entity dropAggregate system "drop_aggregate.sgml">
7271
<!entity dropDatabase system "drop_database.sgml">
73-
<!entity dropDomain system "drop_domain.sgml">
7472
<!entity dropFunction system "drop_function.sgml">
7573
<!entity dropGroup system "drop_group.sgml">
7674
<!entity dropIndex system "drop_index.sgml">

‎doc/src/sgml/ref/comment.sgml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/comment.sgml,v 1.13 2002/03/06 20:34:44 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/comment.sgml,v 1.14 2002/03/07 16:35:33 momjian Exp $
33
PostgreSQL documentation
44
-->
55

@@ -25,15 +25,15 @@ PostgreSQL documentation
2525
<synopsis>
2626
COMMENT ON
2727
[
28-
[ DATABASE |DOMAIN |INDEX | RULE | SEQUENCE | TABLE | TYPE | VIEW ] <replaceable class="PARAMETER">object_name</replaceable> |
28+
[ DATABASE | INDEX | RULE | SEQUENCE | TABLE | TYPE | VIEW ] <replaceable class="PARAMETER">object_name</replaceable> |
2929
COLUMN <replaceable class="PARAMETER">table_name</replaceable>.<replaceable class="PARAMETER">column_name</replaceable> |
3030
AGGREGATE <replaceable class="PARAMETER">agg_name</replaceable> (<replaceable class="PARAMETER">agg_type</replaceable>) |
3131
FUNCTION <replaceable class="PARAMETER">func_name</replaceable> (<replaceable class="PARAMETER">arg1</replaceable>, <replaceable class="PARAMETER">arg2</replaceable>, ...) |
3232
OPERATOR <replaceable class="PARAMETER">op</replaceable> (<replaceable class="PARAMETER">leftoperand_type</replaceable> <replaceable class="PARAMETER">rightoperand_type</replaceable>) |
3333
TRIGGER <replaceable class="PARAMETER">trigger_name</replaceable> ON <replaceable class="PARAMETER">table_name</replaceable>
3434
] IS <replaceable class="PARAMETER">'text'</replaceable>
3535
</synopsis>
36-
36+
3737
<refsect2 id="R2-SQL-COMMENT-1">
3838
<refsect2info>
3939
<date>1999-10-25</date>
@@ -64,7 +64,7 @@ COMMENT ON
6464
</variablelist>
6565
</para>
6666
</refsect2>
67-
67+
6868
<refsect2 id="R2-SQL-COMMENT-2">
6969
<refsect2info>
7070
<date>1998-09-08</date>
@@ -99,7 +99,7 @@ COMMENT
9999
</title>
100100
<para>
101101
<command>COMMENT</command> stores a comment about a database object.
102-
Comments can be
102+
Comments can be
103103
easily retrieved with <command>psql</command>'s
104104
<command>\dd</command>, <command>\d+</command>, or <command>\l+</command>
105105
commands. Other user interfaces to retrieve comments can be built atop
@@ -141,7 +141,6 @@ COMMENT ON mytable IS 'This is my table.';
141141

142142
<programlisting>
143143
COMMENT ON DATABASE my_database IS 'Development Database';
144-
COMMENT ON DOMAIN my_domain IS 'Domains are like abstracted fields';
145144
COMMENT ON INDEX my_index IS 'Enforces uniqueness on employee id';
146145
COMMENT ON RULE my_rule IS 'Logs UPDATES of employee records';
147146
COMMENT ON SEQUENCE my_sequence IS 'Used to generate primary keys';
@@ -156,12 +155,12 @@ COMMENT ON TRIGGER my_trigger ON my_table IS 'Used for R.I.';
156155
</programlisting>
157156
</para>
158157
</refsect1>
159-
158+
160159
<refsect1 id="R1-SQL-COMMENT-3">
161160
<title>
162161
Compatibility
163162
</title>
164-
163+
165164
<refsect2 id="R2-SQL-COMMENT-4">
166165
<refsect2info>
167166
<date>1998-09-08</date>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp