diff options
author | Tom Lane | 2006-05-30 22:12:16 +0000 |
---|---|---|
committer | Tom Lane | 2006-05-30 22:12:16 +0000 |
commit | a0ffab351e2dca12200e95c45f6edf5ddebe78b0 (patch) | |
tree | 905fee345f116de536f72d8ff8507d093646d717 /contrib/spi/autoinc.c | |
parent | e95703eac3199a389cfeace07545ee10430193a8 (diff) |
Magic blocks don't do us any good unless we use 'em ... so install one
in every shared library.
Diffstat (limited to 'contrib/spi/autoinc.c')
-rw-r--r-- | contrib/spi/autoinc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/spi/autoinc.c b/contrib/spi/autoinc.c index bad7c527354..5904f1f4312 100644 --- a/contrib/spi/autoinc.c +++ b/contrib/spi/autoinc.c @@ -3,6 +3,8 @@ #include "commands/trigger.h" /* -"- and triggers */ #include "commands/sequence.h" /* for nextval() */ +PG_MODULE_MAGIC; + extern Datum autoinc(PG_FUNCTION_ARGS); PG_FUNCTION_INFO_V1(autoinc); |