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
e92bec28
Commit
e92bec28
authored
Sep 24, 2002
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update some obsolete comments and column descriptions.
parent
12bb3679
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
67 additions
and
70 deletions
+67
-70
doc/src/sgml/catalogs.sgml
doc/src/sgml/catalogs.sgml
+60
-61
src/include/catalog/pg_type.h
src/include/catalog/pg_type.h
+7
-9
No files found.
doc/src/sgml/catalogs.sgml
View file @
e92bec28
This diff is collapsed.
Click to expand it.
src/include/catalog/pg_type.h
View file @
e92bec28
...
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: pg_type.h,v 1.13
3 2002/09/04 20:31:42 momjian
Exp $
* $Id: pg_type.h,v 1.13
4 2002/09/24 21:26:44 tgl
Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
...
...
@@ -153,18 +153,16 @@ CATALOG(pg_type) BOOTSTRAP
Oid
typbasetype
;
/*
* typtypmod records type-specific data supplied at domain creation
* time (for example, the max length of a varchar field). It is
* passed to type-specific input and output functions as the third
* argument. The value will generally be -1 for types that do not need
* typmod. This value is copied to pg_attribute.atttypmod when
* creating a column of a domain type.
* Domains use typtypmod to record the typmod to be applied to their
* base type (-1 if base type does not use a typmod). -1 if this type
* is not a domain.
*/
int4
typtypmod
;
/*
* typndims is the declared number of dimensions for a domain type
* that is an array (with element type typbasetype). Otherwise zero.
* typndims is the declared number of dimensions for an array domain type
* (i.e., typbasetype is an array type; the domain's typelem will match
* the base type's typelem). Otherwise zero.
*/
int4
typndims
;
...
...
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