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
8d37132e
Commit
8d37132e
authored
Jun 19, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename to vararg_format().
parent
326d8658
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
20 deletions
+20
-20
src/backend/libpq/portalbuf.c
src/backend/libpq/portalbuf.c
+9
-9
src/backend/utils/error/format.c
src/backend/utils/error/format.c
+3
-3
src/backend/utils/mmgr/portalmem.c
src/backend/utils/mmgr/portalmem.c
+3
-3
src/include/c.h
src/include/c.h
+5
-5
No files found.
src/backend/libpq/portalbuf.c
View file @
8d37132e
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portalbuf.c,v 1.1
5 1999/06/19 04:54:13
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portalbuf.c,v 1.1
6 1999/06/19 05:00:27
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -89,7 +89,7 @@ portals_realloc(size_t size)
portals
=
newp
;
else
libpq_raise
(
&
PortalError
,
vararg
form
(
"Cannot alloc more memory in portals_realloc"
));
vararg
_format
(
"Cannot alloc more memory in portals_realloc"
));
for
(
i
=
oldsize
;
i
<
portals_array_size
;
i
++
)
portals
[
i
]
=
(
PortalEntry
*
)
NULL
;
...
...
@@ -109,11 +109,11 @@ pbuf_alloc(size_t size)
caddr_t
addr
;
if
(
size
<=
0
)
libpq_raise
(
&
MemoryError
,
vararg
form
(
"Invalid argument to pbuf_alloc()."
));
libpq_raise
(
&
MemoryError
,
vararg
_format
(
"Invalid argument to pbuf_alloc()."
));
addr
=
(
caddr_t
)
palloc
(
size
);
if
(
addr
==
(
caddr_t
)
NULL
)
libpq_raise
(
&
MemoryError
,
vararg
form
(
"Cannot Allocate space."
));
libpq_raise
(
&
MemoryError
,
vararg
_format
(
"Cannot Allocate space."
));
return
addr
;
}
...
...
@@ -131,7 +131,7 @@ pbuf_free(caddr_t pointer)
if
(
pointer
)
pfree
(
pointer
);
else
libpq_raise
(
&
MemoryError
,
vararg
form
(
"Tried to free NULL memory pointer"
));
libpq_raise
(
&
MemoryError
,
vararg
_format
(
"Tried to free NULL memory pointer"
));
}
...
...
@@ -437,7 +437,7 @@ pbuf_close(char *pname)
int
i
;
if
((
i
=
pbuf_getIndex
(
pname
))
==
-
1
)
libpq_raise
(
&
PortalError
,
vararg
form
(
"Portal %s does not exist."
,
pname
));
libpq_raise
(
&
PortalError
,
vararg
_format
(
"Portal %s does not exist."
,
pname
));
pbuf_freePortal
(
portals
[
i
]
->
portal
);
pbuf_freeEntry
(
i
);
...
...
@@ -462,7 +462,7 @@ pbuf_findGroup(PortalBuffer *portal,
if
(
group
==
NULL
)
libpq_raise
(
&
PortalError
,
vararg
form
(
"Group index %d out of bound."
,
group_index
));
vararg
_format
(
"Group index %d out of bound."
,
group_index
));
return
group
;
}
...
...
@@ -485,7 +485,7 @@ pbuf_findFnumber(GroupBuffer *group,
return
i
;
libpq_raise
(
&
PortalError
,
vararg
form
(
"Field-name %s does not exist."
,
field_name
));
vararg
_format
(
"Field-name %s does not exist."
,
field_name
));
/* not reached, here to make compiler happy */
return
0
;
...
...
@@ -502,7 +502,7 @@ pbuf_checkFnumber(GroupBuffer *group,
{
if
(
field_number
<
0
||
field_number
>=
group
->
no_fields
)
libpq_raise
(
&
PortalError
,
vararg
form
(
"Field number %d out of bound."
,
field_number
));
vararg
_format
(
"Field number %d out of bound."
,
field_number
));
}
/* --------------------------------
...
...
src/backend/utils/error/format.c
View file @
8d37132e
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/format.c,v 1.1
2 1999/06/19 04:54:19
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/format.c,v 1.1
3 1999/06/19 05:00:28
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -22,11 +22,11 @@ static char FormBuf[FormMaxSize];
/* ----------------
* vararg
form
* vararg
_format
* ----------------
*/
char
*
vararg
form
(
const
char
*
fmt
,...)
vararg
_format
(
const
char
*
fmt
,...)
{
va_list
args
;
...
...
src/backend/utils/mmgr/portalmem.c
View file @
8d37132e
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/mmgr/portalmem.c,v 1.2
2 1999/06/19 04:54:1
9 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/mmgr/portalmem.c,v 1.2
3 1999/06/19 05:00:2
9 momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -234,7 +234,7 @@ PortalVariableMemoryRealloc(PortalVariableMemory this,
static
char
*
PortalVariableMemoryGetName
(
PortalVariableMemory
this
)
{
return
vararg
form
(
"%s-var"
,
PortalVariableMemoryGetPortal
(
this
)
->
name
);
return
vararg
_format
(
"%s-var"
,
PortalVariableMemoryGetPortal
(
this
)
->
name
);
}
/* ----------------
...
...
@@ -312,7 +312,7 @@ PortalHeapMemoryRealloc(PortalHeapMemory this,
static
char
*
PortalHeapMemoryGetName
(
PortalHeapMemory
this
)
{
return
vararg
form
(
"%s-heap"
,
PortalHeapMemoryGetPortal
(
this
)
->
name
);
return
vararg
_format
(
"%s-heap"
,
PortalHeapMemoryGetPortal
(
this
)
->
name
);
}
/* ----------------
...
...
src/include/c.h
View file @
8d37132e
...
...
@@ -7,7 +7,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: c.h,v 1.5
6 1999/06/19 04:54:23
momjian Exp $
* $Id: c.h,v 1.5
7 1999/06/19 05:00:30
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -591,7 +591,7 @@ extern int assert_enabled;
#define LogTrap(condition, exception, printArgs) \
{ if ((assert_enabled) && (condition)) \
ExceptionalCondition(CppAsString(condition), &(exception), \
vararg
form
printArgs, __FILE__, __LINE__); }
vararg
_format
printArgs, __FILE__, __LINE__); }
/*
* LogTrapMacro is the same as LogTrap but it's intended for use in macros:
...
...
@@ -602,7 +602,7 @@ extern int assert_enabled;
((bool) ((! assert_enabled) || (! condition) || \
(ExceptionalCondition(CppAsString(condition), \
&(exception), \
vararg
form
printArgs, __FILE__, __LINE__))))
vararg
_format
printArgs, __FILE__, __LINE__))))
#ifndef USE_ASSERT_CHECKING
#define LogAssert(condition, printArgs)
...
...
@@ -711,10 +711,10 @@ extern int ExceptionalCondition(char *conditionName,
/* ----------------
* vararg
form
is used by assert and the exception handling stuff
* vararg
_format
is used by assert and the exception handling stuff
* ----------------
*/
extern
char
*
vararg
form
(
const
char
*
fmt
,...);
extern
char
*
vararg
_format
(
const
char
*
fmt
,...);
...
...
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