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
64514626
Commit
64514626
authored
Apr 06, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup of compiler warnings.
parent
6d708c69
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
10 deletions
+9
-10
src/backend/optimizer/geqo/geqo_pool.c
src/backend/optimizer/geqo/geqo_pool.c
+3
-3
src/backend/regex/regcomp.c
src/backend/regex/regcomp.c
+1
-1
src/backend/storage/page/bufpage.c
src/backend/storage/page/bufpage.c
+2
-2
src/interfaces/ecpg/preproc/ecpg.c
src/interfaces/ecpg/preproc/ecpg.c
+3
-4
No files found.
src/backend/optimizer/geqo/geqo_pool.c
View file @
64514626
...
...
@@ -5,7 +5,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: geqo_pool.c,v 1.
6 1998/03/30 16:46:35
momjian Exp $
* $Id: geqo_pool.c,v 1.
7 1998/04/06 02:38:04
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -42,7 +42,7 @@
#include "optimizer/geqo_recombination.h"
static
int
compare
(
void
*
arg1
,
void
*
arg2
);
static
int
compare
(
const
void
*
arg1
,
const
void
*
arg2
);
/*
* alloc-pool--
...
...
@@ -136,7 +136,7 @@ sort_pool(Pool *pool)
* don't change them!
*/
static
int
compare
(
void
*
arg1
,
void
*
arg2
)
compare
(
const
void
*
arg1
,
const
void
*
arg2
)
{
Chromosome
chromo1
=
*
(
Chromosome
*
)
arg1
;
Chromosome
chromo2
=
*
(
Chromosome
*
)
arg2
;
...
...
src/backend/regex/regcomp.c
View file @
64514626
...
...
@@ -256,7 +256,7 @@ int cflags;
#ifdef MB
p
->
next
=
wcp
;
#else
p
->
next
=
pattern
;
/* convenience; we do not modify it */
p
->
next
=
(
pg_wchar
*
)
pattern
;
/* convenience; we do not modify it */
#endif
p
->
end
=
p
->
next
+
len
;
p
->
error
=
0
;
...
...
src/backend/storage/page/bufpage.c
View file @
64514626
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/page/bufpage.c,v 1.1
5 1998/03/30 16:47:18
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/page/bufpage.c,v 1.1
6 1998/04/06 02:38:17
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -257,7 +257,7 @@ struct itemIdSortData
};
static
int
itemidcompare
(
void
*
itemidp1
,
void
*
itemidp2
)
itemidcompare
(
const
void
*
itemidp1
,
const
void
*
itemidp2
)
{
if
(((
struct
itemIdSortData
*
)
itemidp1
)
->
itemiddata
.
lp_off
==
((
struct
itemIdSortData
*
)
itemidp2
)
->
itemiddata
.
lp_off
)
...
...
src/interfaces/ecpg/preproc/ecpg.c
View file @
64514626
...
...
@@ -91,7 +91,7 @@ main(int argc, char *const argv[])
/* after the options there must not be anything but filenames */
for
(
fnr
=
optind
;
fnr
<
argc
;
fnr
++
)
{
char
*
output_filename
,
*
ptr2ext
;
char
*
ptr2ext
;
input_filename
=
mm_alloc
(
strlen
(
argv
[
fnr
])
+
5
);
...
...
@@ -113,7 +113,7 @@ main(int argc, char *const argv[])
if
(
out_option
==
0
)
/* calculate the output name */
{
output_filename
=
strdup
(
input_filename
);
char
*
output_filename
=
strdup
(
input_filename
);
ptr2ext
=
strrchr
(
output_filename
,
'.'
);
/* make extension = .c */
...
...
@@ -128,6 +128,7 @@ main(int argc, char *const argv[])
free
(
input_filename
);
continue
;
}
free
(
output_filename
);
}
yyin
=
fopen
(
input_filename
,
"r"
);
...
...
@@ -149,8 +150,6 @@ main(int argc, char *const argv[])
if
(
out_option
==
0
)
fclose
(
yyout
);
}
free
(
output_filename
);
free
(
input_filename
);
}
}
...
...
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