Gilles Darold
Gilles Darold
Hi, It seems that you have compiled the extension using the 9.2 libraries. What does `pg_config --version` return on the same environment you've compiled pg_log_authfail?
Perhaps this is because you use the 7.4 Centos repository to install libraries and they are only give v9.2? I don't know but the better way is to exclude PostgreSQL...
Commit dab9e97 fixes this issue.
A new release will be published this week.
@shane-borden version 4.0 have been just published.
The external_file schema must be in your search_path. For example you can proceed as follow but it must be adapted to your current search_path. ``` SET search_path="$user",public,external_file; ```
Commit 887969f fixes this issue, thanks for the report.
Current code format INSERT like that: ``` INSERT INTO account_types (name) VALUES ('main'), ('sub'), ('foo'); ```
Commit 0b0aa10 applies this formatting.
1) you can not generate a report using an input file, this is the sens of the error message 2) There be a bug here, please send a DDL stored...