Bug 359 - Change in PG HEAD to GetConfigOptionByName() parameters
Summary: Change in PG HEAD to GetConfigOptionByName() parameters
Status: ASSIGNED
Alias: None
Product: Slony-I
Classification: Unclassified
Component: stored procedures (show other bugs)
Version: devel
Hardware: PC Linux
: low enhancement
Assignee: Steve Singer
URL:
Depends on:
Blocks:
 
Reported: 2015-07-13 12:11 UTC by Christopher Browne
Modified: 2016-07-26 13:19 UTC (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Christopher Browne 2015-07-13 12:11:52 UTC
In a post-9.5 change, GetConfigOptionByName() has been augmented with a true/false option...


extern char *GetConfigOptionByName(const char *name, const char **varname,
                                          bool missing_ok);

The call done in src/backend/slony1-funcs.c needs to offer the new parameter.
Comment 1 Christopher Browne 2015-07-13 12:15:35 UTC
Patch in HEAD...

http://git.postgresql.org/gitweb/?p=slony1-engine.git;a=commit;h=104b74588334ff85fc8540c37d68256446424ff5

It is likely desirable to add this to some back branches too.