You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Peter Eisentraut
e7128e8dbb
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
...
Because of gcc -Wmissing-prototypes, all functions in dynamically
loadable modules must have a separate prototype declaration. This is
meant to detect global functions that are not declared in header files,
but in cases where the function is called via dfmgr, this is redundant.
Besides filling up space with boilerplate, this is a frequent source of
compiler warnings in extension modules.
We can fix that by creating the function prototype as part of the
PG_FUNCTION_INFO_V1 macro, which such modules have to use anyway. That
makes the code of modules cleaner, because there is one less place where
the entry points have to be listed, and creates an additional check that
functions have the right prototype.
Remove now redundant prototypes from contrib and other modules.
11 years ago
..
data
Add missing newlines at end of files
15 years ago
expected
Reduce messages about implicit indexes and sequences to DEBUG1.
13 years ago
sql
Add KNNGIST support to contrib/btree_gist.
15 years ago
.gitignore
Support "make check" in contrib
14 years ago
Makefile
Add -lm to SHLIB_LINK for contrib/btree_gist.
15 years ago
btree_bit.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_bytea.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_cash.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_date.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_float4.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_float8.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_gist--1.0.sql
Throw a useful error message if an extension script file is fed to psql.
14 years ago
btree_gist--unpackaged--1.0.sql
Throw a useful error message if an extension script file is fed to psql.
14 years ago
btree_gist.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_gist.control
Convert contrib modules to use the extension facility.
15 years ago
btree_gist.h
Remove unnecessary #include references, per pgrminclude script.
14 years ago
btree_inet.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_int2.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_int4.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_int8.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_interval.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_macaddr.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_numeric.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_oid.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_text.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_time.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_ts.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_utils_num.c
pgindent run for release 9.3
12 years ago
btree_utils_num.h
Remove unnecessary #include references, per pgrminclude script.
14 years ago
btree_utils_var.c
Create function prototype as part of PG_FUNCTION_INFO_V1 macro
11 years ago
btree_utils_var.h
Remove unnecessary #include references, per pgrminclude script.
14 years ago