Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
a4d69a41
Commit
a4d69a41
authored
Dec 25, 2005
by
Neil Conway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor doc tweak: "NOT NULL" is redundant with "SERIAL" in example.
parent
c45eb536
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
doc/src/sgml/ref/create_domain.sgml
doc/src/sgml/ref/create_domain.sgml
+3
-3
No files found.
doc/src/sgml/ref/create_domain.sgml
View file @
a4d69a41
<!--
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/create_domain.sgml,v 1.2
6 2005/11/04 23:14:02 petere
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/create_domain.sgml,v 1.2
7 2005/12/25 01:41:15 neilc
Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -20,7 +20,7 @@ PostgreSQL documentation
...
@@ -20,7 +20,7 @@ PostgreSQL documentation
<refsynopsisdiv>
<refsynopsisdiv>
<synopsis>
<synopsis>
CREATE DOMAIN <replaceable class="parameter">name</replaceable> [
AS
] <replaceable class="parameter">data_type</replaceable>
CREATE DOMAIN <replaceable class="parameter">name</replaceable> [
AS
] <replaceable class="parameter">data_type</replaceable>
[ DEFAULT <replaceable>expression</> ]
[ DEFAULT <replaceable>expression</> ]
[ <replaceable class="PARAMETER">constraint</replaceable> [ ... ] ]
[ <replaceable class="PARAMETER">constraint</replaceable> [ ... ] ]
...
@@ -185,7 +185,7 @@ OR VALUE ~ '^\\d{5}-\\d{4}$'
...
@@ -185,7 +185,7 @@ OR VALUE ~ '^\\d{5}-\\d{4}$'
);
);
CREATE TABLE us_snail_addy (
CREATE TABLE us_snail_addy (
address_id SERIAL
NOT NULL
PRIMARY KEY
address_id SERIAL PRIMARY KEY
, street1 TEXT NOT NULL
, street1 TEXT NOT NULL
, street2 TEXT
, street2 TEXT
, street3 TEXT
, street3 TEXT
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment