Fix an extraneous comma which bugged the SQL introduced when merging PR #78

See commit 0de0311c22. The SQL for <9.2 had a
typo which we somehow missed, caught by integration testing.
This commit is contained in:
Will Rouesnel 2017-06-07 00:10:57 +10:00
parent 3f0fb9d3a4
commit 8877b69804

View File

@ -304,7 +304,7 @@ var queryOverrides = map[string][]OverrideQuery{
semver.MustParseRange("<9.2.0"),
`
SELECT *,
(case pg_is_in_recovery() when 't' then null else pg_current_xlog_location() end) AS pg_current_xlog_location,
(case pg_is_in_recovery() when 't' then null else pg_current_xlog_location() end) AS pg_current_xlog_location
FROM pg_stat_replication
`,
},