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
6a605cd6
Commit
6a605cd6
authored
Jul 10, 2014
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjust blank lines around PG_MODULE_MAGIC defines, for consistency
Report by Robert Haas
parent
5b214c5d
Changes
24
Show whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
3 additions
and
27 deletions
+3
-27
contrib/dict_int/dict_int.c
contrib/dict_int/dict_int.c
+0
-1
contrib/earthdistance/earthdistance.c
contrib/earthdistance/earthdistance.c
+0
-1
contrib/intarray/_int_op.c
contrib/intarray/_int_op.c
+0
-1
contrib/lo/lo.c
contrib/lo/lo.c
+0
-1
contrib/passwordcheck/passwordcheck.c
contrib/passwordcheck/passwordcheck.c
+0
-1
contrib/pg_buffercache/pg_buffercache_pages.c
contrib/pg_buffercache/pg_buffercache_pages.c
+0
-1
contrib/pg_freespacemap/pg_freespacemap.c
contrib/pg_freespacemap/pg_freespacemap.c
+0
-1
contrib/pg_stat_statements/pg_stat_statements.c
contrib/pg_stat_statements/pg_stat_statements.c
+0
-1
contrib/pg_trgm/trgm_op.c
contrib/pg_trgm/trgm_op.c
+0
-1
contrib/pgrowlocks/pgrowlocks.c
contrib/pgrowlocks/pgrowlocks.c
+0
-1
contrib/pgstattuple/pgstattuple.c
contrib/pgstattuple/pgstattuple.c
+0
-1
contrib/postgres_fdw/postgres_fdw.c
contrib/postgres_fdw/postgres_fdw.c
+0
-1
contrib/sslinfo/sslinfo.c
contrib/sslinfo/sslinfo.c
+0
-2
contrib/tcn/tcn.c
contrib/tcn/tcn.c
+0
-2
contrib/test_decoding/test_decoding.c
contrib/test_decoding/test_decoding.c
+0
-1
contrib/test_parser/test_parser.c
contrib/test_parser/test_parser.c
+0
-1
contrib/test_shm_mq/test.c
contrib/test_shm_mq/test.c
+3
-1
contrib/uuid-ossp/uuid-ossp.c
contrib/uuid-ossp/uuid-ossp.c
+0
-2
contrib/xml2/xpath.c
contrib/xml2/xpath.c
+0
-1
src/backend/snowball/dict_snowball.c
src/backend/snowball/dict_snowball.c
+0
-1
src/pl/plperl/plperl.c
src/pl/plperl/plperl.c
+0
-1
src/tutorial/complex.c
src/tutorial/complex.c
+0
-1
src/tutorial/funcs.c
src/tutorial/funcs.c
+0
-1
src/tutorial/funcs_new.c
src/tutorial/funcs_new.c
+0
-1
No files found.
contrib/dict_int/dict_int.c
View file @
6a605cd6
...
@@ -17,7 +17,6 @@
...
@@ -17,7 +17,6 @@
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
typedef
struct
typedef
struct
{
{
int
maxlen
;
int
maxlen
;
...
...
contrib/earthdistance/earthdistance.c
View file @
6a605cd6
...
@@ -10,7 +10,6 @@
...
@@ -10,7 +10,6 @@
#define M_PI 3.14159265358979323846
#define M_PI 3.14159265358979323846
#endif
#endif
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
/* Earth's radius is in statute miles. */
/* Earth's radius is in statute miles. */
...
...
contrib/intarray/_int_op.c
View file @
6a605cd6
...
@@ -6,7 +6,6 @@
...
@@ -6,7 +6,6 @@
#include "_int.h"
#include "_int.h"
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
PG_FUNCTION_INFO_V1
(
_int_different
);
PG_FUNCTION_INFO_V1
(
_int_different
);
...
...
contrib/lo/lo.c
View file @
6a605cd6
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
#include "libpq/be-fsstubs.h"
#include "libpq/be-fsstubs.h"
#include "utils/rel.h"
#include "utils/rel.h"
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
#define atooid(x) ((Oid) strtoul((x), NULL, 10))
#define atooid(x) ((Oid) strtoul((x), NULL, 10))
...
...
contrib/passwordcheck/passwordcheck.c
View file @
6a605cd6
...
@@ -24,7 +24,6 @@
...
@@ -24,7 +24,6 @@
#include "fmgr.h"
#include "fmgr.h"
#include "libpq/md5.h"
#include "libpq/md5.h"
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
/* passwords shorter than this will be rejected */
/* passwords shorter than this will be rejected */
...
...
contrib/pg_buffercache/pg_buffercache_pages.c
View file @
6a605cd6
...
@@ -19,7 +19,6 @@
...
@@ -19,7 +19,6 @@
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
/*
/*
* Record structure holding the to be exposed cache data.
* Record structure holding the to be exposed cache data.
*/
*/
...
...
contrib/pg_freespacemap/pg_freespacemap.c
View file @
6a605cd6
...
@@ -11,7 +11,6 @@
...
@@ -11,7 +11,6 @@
#include "funcapi.h"
#include "funcapi.h"
#include "storage/freespace.h"
#include "storage/freespace.h"
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
/*
/*
...
...
contrib/pg_stat_statements/pg_stat_statements.c
View file @
6a605cd6
...
@@ -76,7 +76,6 @@
...
@@ -76,7 +76,6 @@
#include "utils/builtins.h"
#include "utils/builtins.h"
#include "utils/memutils.h"
#include "utils/memutils.h"
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
/* Location of permanent stats file (valid when database is shut down) */
/* Location of permanent stats file (valid when database is shut down) */
...
...
contrib/pg_trgm/trgm_op.c
View file @
6a605cd6
...
@@ -11,7 +11,6 @@
...
@@ -11,7 +11,6 @@
#include "tsearch/ts_locale.h"
#include "tsearch/ts_locale.h"
#include "utils/memutils.h"
#include "utils/memutils.h"
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
float4
trgm_limit
=
0
.
3
f
;
float4
trgm_limit
=
0
.
3
f
;
...
...
contrib/pgrowlocks/pgrowlocks.c
View file @
6a605cd6
...
@@ -38,7 +38,6 @@
...
@@ -38,7 +38,6 @@
#include "utils/snapmgr.h"
#include "utils/snapmgr.h"
#include "utils/tqual.h"
#include "utils/tqual.h"
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
PG_FUNCTION_INFO_V1
(
pgrowlocks
);
PG_FUNCTION_INFO_V1
(
pgrowlocks
);
...
...
contrib/pgstattuple/pgstattuple.c
View file @
6a605cd6
...
@@ -36,7 +36,6 @@
...
@@ -36,7 +36,6 @@
#include "utils/builtins.h"
#include "utils/builtins.h"
#include "utils/tqual.h"
#include "utils/tqual.h"
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
PG_FUNCTION_INFO_V1
(
pgstattuple
);
PG_FUNCTION_INFO_V1
(
pgstattuple
);
...
...
contrib/postgres_fdw/postgres_fdw.c
View file @
6a605cd6
...
@@ -37,7 +37,6 @@
...
@@ -37,7 +37,6 @@
#include "utils/lsyscache.h"
#include "utils/lsyscache.h"
#include "utils/memutils.h"
#include "utils/memutils.h"
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
/* Default CPU cost to start up a foreign query. */
/* Default CPU cost to start up a foreign query. */
...
...
contrib/sslinfo/sslinfo.c
View file @
6a605cd6
...
@@ -18,10 +18,8 @@
...
@@ -18,10 +18,8 @@
#include <openssl/x509.h>
#include <openssl/x509.h>
#include <openssl/asn1.h>
#include <openssl/asn1.h>
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
static
Datum
X509_NAME_field_to_text
(
X509_NAME
*
name
,
text
*
fieldName
);
static
Datum
X509_NAME_field_to_text
(
X509_NAME
*
name
,
text
*
fieldName
);
static
Datum
X509_NAME_to_text
(
X509_NAME
*
name
);
static
Datum
X509_NAME_to_text
(
X509_NAME
*
name
);
static
Datum
ASN1_STRING_to_text
(
ASN1_STRING
*
str
);
static
Datum
ASN1_STRING_to_text
(
ASN1_STRING
*
str
);
...
...
contrib/tcn/tcn.c
View file @
6a605cd6
...
@@ -23,10 +23,8 @@
...
@@ -23,10 +23,8 @@
#include "utils/rel.h"
#include "utils/rel.h"
#include "utils/syscache.h"
#include "utils/syscache.h"
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
/*
/*
* Copy from s (for source) to r (for result), wrapping with q (quote)
* Copy from s (for source) to r (for result), wrapping with q (quote)
* characters and doubling any quote characters found.
* characters and doubling any quote characters found.
...
...
contrib/test_decoding/test_decoding.c
View file @
6a605cd6
...
@@ -30,7 +30,6 @@
...
@@ -30,7 +30,6 @@
#include "utils/syscache.h"
#include "utils/syscache.h"
#include "utils/typcache.h"
#include "utils/typcache.h"
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
/* These must be available to pg_dlsym() */
/* These must be available to pg_dlsym() */
...
...
contrib/test_parser/test_parser.c
View file @
6a605cd6
...
@@ -16,7 +16,6 @@
...
@@ -16,7 +16,6 @@
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
/*
/*
* types
* types
*/
*/
...
...
contrib/test_shm_mq/test.c
View file @
6a605cd6
...
@@ -18,7 +18,9 @@
...
@@ -18,7 +18,9 @@
#include "test_shm_mq.h"
#include "test_shm_mq.h"
PG_MODULE_MAGIC
;
PG_FUNCTION_INFO_V1
(
test_shm_mq
);
PG_MODULE_MAGIC
;
PG_FUNCTION_INFO_V1
(
test_shm_mq
);
PG_FUNCTION_INFO_V1
(
test_shm_mq_pipelined
);
PG_FUNCTION_INFO_V1
(
test_shm_mq_pipelined
);
void
_PG_init
(
void
);
void
_PG_init
(
void
);
...
...
contrib/uuid-ossp/uuid-ossp.c
View file @
6a605cd6
...
@@ -108,10 +108,8 @@ do { \
...
@@ -108,10 +108,8 @@ do { \
#endif
/* !HAVE_UUID_OSSP */
#endif
/* !HAVE_UUID_OSSP */
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
PG_FUNCTION_INFO_V1
(
uuid_nil
);
PG_FUNCTION_INFO_V1
(
uuid_nil
);
PG_FUNCTION_INFO_V1
(
uuid_ns_dns
);
PG_FUNCTION_INFO_V1
(
uuid_ns_dns
);
PG_FUNCTION_INFO_V1
(
uuid_ns_url
);
PG_FUNCTION_INFO_V1
(
uuid_ns_url
);
...
...
contrib/xml2/xpath.c
View file @
6a605cd6
...
@@ -23,7 +23,6 @@
...
@@ -23,7 +23,6 @@
#include <libxml/xmlerror.h>
#include <libxml/xmlerror.h>
#include <libxml/parserInternals.h>
#include <libxml/parserInternals.h>
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
/* exported for use by xslt_proc.c */
/* exported for use by xslt_proc.c */
...
...
src/backend/snowball/dict_snowball.c
View file @
6a605cd6
...
@@ -58,7 +58,6 @@
...
@@ -58,7 +58,6 @@
#include "snowball/libstemmer/stem_UTF_8_swedish.h"
#include "snowball/libstemmer/stem_UTF_8_swedish.h"
#include "snowball/libstemmer/stem_UTF_8_turkish.h"
#include "snowball/libstemmer/stem_UTF_8_turkish.h"
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
PG_FUNCTION_INFO_V1
(
dsnowball_init
);
PG_FUNCTION_INFO_V1
(
dsnowball_init
);
...
...
src/pl/plperl/plperl.c
View file @
6a605cd6
...
@@ -60,7 +60,6 @@ EXTERN_C void boot_PostgreSQL__InServer__SPI(pTHX_ CV *cv);
...
@@ -60,7 +60,6 @@ EXTERN_C void boot_PostgreSQL__InServer__SPI(pTHX_ CV *cv);
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
/**********************************************************************
/**********************************************************************
* Information associated with a Perl interpreter. We have one interpreter
* Information associated with a Perl interpreter. We have one interpreter
* that is used for all plperlu (untrusted) functions. For plperl (trusted)
* that is used for all plperlu (untrusted) functions. For plperl (trusted)
...
...
src/tutorial/complex.c
View file @
6a605cd6
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
#include "fmgr.h"
#include "fmgr.h"
#include "libpq/pqformat.h"
/* needed for send/recv functions */
#include "libpq/pqformat.h"
/* needed for send/recv functions */
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
typedef
struct
Complex
typedef
struct
Complex
...
...
src/tutorial/funcs.c
View file @
6a605cd6
...
@@ -18,7 +18,6 @@
...
@@ -18,7 +18,6 @@
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
/* These prototypes just prevent possible warnings from gcc. */
/* These prototypes just prevent possible warnings from gcc. */
int
add_one
(
int
arg
);
int
add_one
(
int
arg
);
...
...
src/tutorial/funcs_new.c
View file @
6a605cd6
...
@@ -16,7 +16,6 @@
...
@@ -16,7 +16,6 @@
#include "executor/executor.h"
/* for GetAttributeByName() */
#include "executor/executor.h"
/* for GetAttributeByName() */
#include "utils/geo_decls.h"
/* for point type */
#include "utils/geo_decls.h"
/* for point type */
PG_MODULE_MAGIC
;
PG_MODULE_MAGIC
;
/* These prototypes just prevent possible warnings from gcc. */
/* These prototypes just prevent possible warnings from gcc. */
...
...
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