Single quotes give an error (#88)

of postgrest: ParseError "postgrest.config" "endOfInput"
This commit is contained in:
Chris Stryczynski
2017-07-08 00:14:30 -05:00
committed by Joe Nelson
parent aa6e3afc0e
commit 49a62772c0
+4 -4
View File
@@ -239,19 +239,19 @@ Once you've verified that requests are as you expect, you can get more informati
.. code:: sql
# send logs where the collector can access them
log_destination = 'stderr'
log_destination = "stderr"
# collect stderr output to log files
logging_collector = on
# save logs in pg_log/ under the pg data directory
log_directory = 'pg_log'
log_directory = "pg_log"
# (optional) new log file per day
log_filename = 'postgresql-%Y-%m-%d.log'
log_filename = "postgresql-%Y-%m-%d.log"
# log every kind of SQL statement
log_statement = 'all'
log_statement = "all"
Restart the database and watch the log file in real-time to understand how HTTP requests are being translated into SQL commands.