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
3a1ed876
Commit
3a1ed876
authored
Aug 01, 2003
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix inconsistent static-vs-not-static declarations.
parent
38a412ec
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
10 deletions
+7
-10
src/backend/libpq/ip.c
src/backend/libpq/ip.c
+3
-3
src/backend/tcop/pquery.c
src/backend/tcop/pquery.c
+2
-2
src/backend/utils/adt/ruleutils.c
src/backend/utils/adt/ruleutils.c
+2
-2
src/interfaces/ecpg/pgtypeslib/dt.h
src/interfaces/ecpg/pgtypeslib/dt.h
+0
-3
No files found.
src/backend/libpq/ip.c
View file @
3a1ed876
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/ip.c,v 1.1
6 2003/07/23 23:30:40
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/ip.c,v 1.1
7 2003/08/01 17:53:41
tgl Exp $
*
* This file and the IPV6 implementation were initially provided by
* Nigel Kukard <nkukard@lbsd.net>, Linux Based Systems Design
...
...
@@ -376,7 +376,7 @@ static struct sockaddr_storage sock;
return
0
;
}
int
static
int
rangeSockAddrAF_INET
(
const
struct
sockaddr_in
*
addr
,
const
struct
sockaddr_in
*
netaddr
,
const
struct
sockaddr_in
*
netmask
)
{
...
...
@@ -389,7 +389,7 @@ rangeSockAddrAF_INET(const struct sockaddr_in *addr, const struct sockaddr_in *n
#ifdef HAVE_IPV6
int
static
int
rangeSockAddrAF_INET6
(
const
struct
sockaddr_in6
*
addr
,
const
struct
sockaddr_in6
*
netaddr
,
const
struct
sockaddr_in6
*
netmask
)
...
...
src/backend/tcop/pquery.c
View file @
3a1ed876
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/pquery.c,v 1.6
7 2003/07/22 19:00:1
2 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/pquery.c,v 1.6
8 2003/08/01 17:57:4
2 tgl Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -507,7 +507,7 @@ PortalRun(Portal portal, long count,
*
* Returns number of rows processed (suitable for use in result tag)
*/
long
static
long
PortalRunSelect
(
Portal
portal
,
bool
forward
,
long
count
,
...
...
src/backend/utils/adt/ruleutils.c
View file @
3a1ed876
...
...
@@ -3,7 +3,7 @@
* back to source text
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/ruleutils.c,v 1.14
7 2003/07/30 22:56:23
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/ruleutils.c,v 1.14
8 2003/08/01 18:00:19
tgl Exp $
*
* This software is copyrighted by Jan Wieck - Hamburg.
*
...
...
@@ -1298,7 +1298,7 @@ deparse_expression(Node *expr, List *dpcontext,
* The result is a palloc'd string.
* ----------
*/
char
*
static
char
*
deparse_expression_pretty
(
Node
*
expr
,
List
*
dpcontext
,
bool
forceprefix
,
bool
showimplicit
,
int
prettyFlags
,
int
startIndent
)
...
...
src/interfaces/ecpg/pgtypeslib/dt.h
View file @
3a1ed876
...
...
@@ -228,9 +228,6 @@ do { \
* Date/time validation
* Include check for leap year.
*/
extern
int
day_tab
[
2
][
13
];
#define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0))
/* Julian date support for date2j() and j2date()
...
...
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