File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 22 "name" : " http" ,
33 "abstract" : " HTTP client for PostgreSQL" ,
44 "description" : " HTTP allows you to get the content of a web page in a SQL function call." ,
5- "version" : " 1.7.0 " ,
5+ "version" : " 1.7.1 " ,
66 "maintainer" : [
7788 ],
2323 "http" : {
2424 "file" : " http--1.7.sql" ,
2525 "docfile" : " README.md" ,
26- "version" : " 1.7.0 " ,
26+ "version" : " 1.7.1 " ,
2727 "abstract" : " HTTP client for PostgreSQL"
2828 }
2929 },
Original file line number Diff line number Diff line change 8989#include <curl/curl.h>
9090
9191/* Set up PgSQL */
92+ #ifdef PG_MODULE_MAGIC_EXT
93+ PG_MODULE_MAGIC_EXT (
94+ .name = "http" ,
95+ .version = HTTP_VERSION
96+ );
97+ #else
9298PG_MODULE_MAGIC ;
99+ #endif
93100
94101/* HTTP request methods we support */
95102typedef enum {
You can’t perform that action at this time.
0 commit comments