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
f61d70c2
Commit
f61d70c2
authored
May 18, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Undo \dT change. Not worth it.
parent
2fd831d3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
src/backend/parser/parse_func.c
src/backend/parser/parse_func.c
+5
-3
src/backend/utils/adt/format_type.c
src/backend/utils/adt/format_type.c
+3
-3
No files found.
src/backend/parser/parse_func.c
View file @
f61d70c2
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.10
4 2001/05/18 22:35:50
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.10
5 2001/05/18 22:54:23
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -236,8 +236,10 @@ agg_select_candidate(Oid typeid, CandidateList candidates)
/*
* parse function
* This code is confusing code because the database can accept relation.column
* column.function, or relation.column.function.
* This code is confusing code because the database can accept
* relation.column, column.function, or relation.column.function.
* It can also be called as func(col) or func(col,col).
*
* Funcname is the first parameter, and fargs are the rest.
*/
Node
*
...
...
src/backend/utils/adt/format_type.c
View file @
f61d70c2
...
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/format_type.c,v 1.1
1 2001/05/18 22:35:51
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/format_type.c,v 1.1
2 2001/05/18 22:54:23
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -174,11 +174,11 @@ format_type_internal(Oid type_oid, int32 typemod)
break
;
case
TIMETZOID
:
buf
=
pstrdup
(
"time
&
time zone"
);
buf
=
pstrdup
(
"time
with
time zone"
);
break
;
case
TIMESTAMPOID
:
buf
=
pstrdup
(
"timestamp
&
time zone"
);
buf
=
pstrdup
(
"timestamp
with
time zone"
);
break
;
case
VARBITOID
:
...
...
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