Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
7bf25f12
Commit
7bf25f12
authored
25 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Make bpchar == char() clearer in \dT display.
parent
b7d49a42
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/include/catalog/pg_type.h
+3
-3
3 additions, 3 deletions
src/include/catalog/pg_type.h
with
3 additions
and
3 deletions
src/include/catalog/pg_type.h
+
3
−
3
View file @
7bf25f12
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: pg_type.h,v 1.6
6
1999/10/1
5
1
6:19
:4
0
momjian Exp $
* $Id: pg_type.h,v 1.6
7
1999/10/1
8
1
1:36
:4
5
momjian Exp $
*
*
* NOTES
* NOTES
* the genbki.sh script reads this file and generates .bki
* the genbki.sh script reads this file and generates .bki
...
@@ -352,10 +352,10 @@ DATA(insert OID = 1040 ( _macaddr PGUID -1 -1 f b t \054 0 829 array_in array
...
@@ -352,10 +352,10 @@ DATA(insert OID = 1040 ( _macaddr PGUID -1 -1 f b t \054 0 829 array_in array
DATA
(
insert
OID
=
1041
(
_inet
PGUID
-
1
-
1
f
b
t
\
054
0
869
array_in
array_out
array_in
array_out
i
_null_
));
DATA
(
insert
OID
=
1041
(
_inet
PGUID
-
1
-
1
f
b
t
\
054
0
869
array_in
array_out
array_in
array_out
i
_null_
));
DATA
(
insert
OID
=
651
(
_cidr
PGUID
-
1
-
1
f
b
t
\
054
0
650
array_in
array_out
array_in
array_out
i
_null_
));
DATA
(
insert
OID
=
651
(
_cidr
PGUID
-
1
-
1
f
b
t
\
054
0
650
array_in
array_out
array_in
array_out
i
_null_
));
DATA
(
insert
OID
=
1042
(
bpchar
PGUID
-
1
-
1
f
b
t
\
054
0
18
bpcharin
bpcharout
bpcharin
bpcharout
i
_null_
));
DATA
(
insert
OID
=
1042
(
bpchar
PGUID
-
1
-
1
f
b
t
\
054
0
18
bpcharin
bpcharout
bpcharin
bpcharout
i
_null_
));
DESCR
(
"blank-padded characters, length specified when created"
);
DESCR
(
"blank-padded characters, length specified when created
-- char()
"
);
#define BPCHAROID 1042
#define BPCHAROID 1042
DATA
(
insert
OID
=
1043
(
varchar
PGUID
-
1
-
1
f
b
t
\
054
0
18
varcharin
varcharout
varcharin
varcharout
i
_null_
));
DATA
(
insert
OID
=
1043
(
varchar
PGUID
-
1
-
1
f
b
t
\
054
0
18
varcharin
varcharout
varcharin
varcharout
i
_null_
));
DESCR
(
"non-blank-padded-length string, length specified when created"
);
DESCR
(
"non-blank-padded-length string, length specified when created
-- varchar()
"
);
#define VARCHAROID 1043
#define VARCHAROID 1043
DATA
(
insert
OID
=
1082
(
date
PGUID
4
10
t
b
t
\
054
0
0
date_in
date_out
date_in
date_out
i
_null_
));
DATA
(
insert
OID
=
1082
(
date
PGUID
4
10
t
b
t
\
054
0
0
date_in
date_out
date_in
date_out
i
_null_
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment