Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
Add Postgres version requirement to README #138
Comments
|
Materialized views require 9.4 too.. it might be worth adding a unit test On Oct 7, 2016 12:34 PM, "tnaumann" notifications@github.com wrote:
|
|
I think materialized view exists in Postgres 9.3 (https://www.postgresql.org/docs/9.3/static/sql-creatematerializedview.html). A unit test would be even better. Overall idea is to give the user warning that the build is failing because of an insufficient Postgres version rather than discovering this from a slew syntax errors. |
|
Have you tested on 9.5+? If so, we can use something like:
Otherwise, if it has to be exactly 9.4, we can use something like:
|
|
Yeah I use 9.5 and everything works smoothly. We can probably require>=9.4 On Fri, Oct 7, 2016 at 12:53 PM, tnaumann notifications@github.com wrote:
|
tnaumann commentedOct 7, 2016
The addition of queries that use
percentile_contmove the minimum Postgres version to 9.4. Adding this to the README would result in less confusion during.