Gilles Darold
Gilles Darold
What are the name and version of your operating system?
I don't know which Perl distribution you use on your Windows box but package File::Spec is missing.
I can't help much more on Windows OS, I would recommend you to use Linux instead.
Hi, the problem comes from the following setting: ``` log_statement = 'all' log_min_duration_statement = 0 ``` Remove the log_statement declaration, this is why you have duplicates.
I've explain to you that log_min_duration_statement = 0 already logs all statement but with the duration time. In your case log_statement = 'all' is useless. I don't understand why you...
There is a pgbadger option for that: ``` -Z | --timezone +/-XX : Set the number of hours from GMT of the timezone. Use this to adjust date/time in JavaScript...
There must be a file name FKEYS_ddl.sql in the schema/tables/ sub directory, it it is not present that could mean that there is no foreign keys defined. Can you confirm...
Actually this was not related to windows but from file input. Commit e848289 fixes this issue.
Commit cce998b fixes this issue.
Usually BLOBs are binary objects so using FTS on it is probably useless. What type of document do you stored as large object? If they are text like documents and...