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
d79b9a1b
Commit
d79b9a1b
authored
Nov 26, 1997
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Re-order args for TypeCreate() to be clearer.
parent
7c00ffb8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
src/backend/catalog/heap.c
src/backend/catalog/heap.c
+2
-2
src/backend/catalog/pg_type.c
src/backend/catalog/pg_type.c
+2
-2
src/backend/commands/define.c
src/backend/commands/define.c
+3
-3
src/include/catalog/pg_type.h
src/include/catalog/pg_type.h
+2
-2
No files found.
src/backend/catalog/heap.c
View file @
d79b9a1b
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.3
6 1997/11/26 04:37:53
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.3
7 1997/11/26 04:50:19
momjian Exp $
*
* INTERFACE ROUTINES
* heap_creatr() - Create an uncataloged heap relation
...
...
@@ -729,8 +729,8 @@ addNewRelationType(char *typeName, Oid new_rel_oid)
','
,
/* default array delimiter */
"int4in"
,
/* input procedure */
"int4out"
,
/* output procedure */
"int4out"
,
/* send procedure */
"int4in"
,
/* receive procedure */
"int4out"
,
/* send procedure */
NULL
,
/* array element type - irrelevent */
"-"
,
/* default type value */
(
bool
)
1
,
/* passed by value */
...
...
src/backend/catalog/pg_type.c
View file @
d79b9a1b
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_type.c,v 1.1
4 1997/11/25 21:58:50
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_type.c,v 1.1
5 1997/11/26 04:50:21
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -290,8 +290,8 @@ TypeCreate(char *typeName,
char
typDelim
,
char
*
inputProcedure
,
char
*
outputProcedure
,
char
*
sendProcedure
,
char
*
receiveProcedure
,
char
*
sendProcedure
,
char
*
elementTypeName
,
char
*
defaultTypeValue
,
/* internal rep */
bool
passedByValue
,
...
...
src/backend/commands/define.c
View file @
d79b9a1b
...
...
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/define.c,v 1.1
7 1997/10/28 14:54:46 vadim
Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/define.c,v 1.1
8 1997/11/26 04:50:28 momjian
Exp $
*
* DESCRIPTION
* The "DefineFoo" routines take the parse tree and pick out the
...
...
@@ -730,8 +730,8 @@ DefineType(char *typeName, List *parameters)
delimiter
,
/* array element delimiter */
inputName
,
/* input procedure */
outputName
,
/* output procedure */
sendName
,
/* send procedure */
receiveName
,
/* receive procedure */
sendName
,
/* send procedure */
elemName
,
/* element type name */
defaultValue
,
/* default type value */
byValue
,
/* passed by value */
...
...
@@ -752,8 +752,8 @@ DefineType(char *typeName, List *parameters)
DEFAULT_TYPDELIM
,
/* array element delimiter */
"array_in"
,
/* input procedure */
"array_out"
,
/* output procedure */
"array_out"
,
/* send procedure */
"array_in"
,
/* receive procedure */
"array_out"
,
/* send procedure */
typeName
,
/* element type name */
defaultValue
,
/* default type value */
false
,
/* never passed by value */
...
...
src/include/catalog/pg_type.h
View file @
d79b9a1b
...
...
@@ -7,7 +7,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: pg_type.h,v 1.2
5 1997/11/18 05:22:51
momjian Exp $
* $Id: pg_type.h,v 1.2
6 1997/11/26 04:50:47
momjian Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
...
...
@@ -378,8 +378,8 @@ TypeCreate(char *typeName,
char
typDelim
,
char
*
inputProcedure
,
char
*
outputProcedure
,
char
*
sendProcedure
,
char
*
receiveProcedure
,
char
*
sendProcedure
,
char
*
elementTypeName
,
char
*
defaultTypeValue
,
bool
passedByValue
,
char
alignment
);
...
...
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