Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ASKBOT#845 * setup_aggregates() used to conditionally DROP AGGREGATE concat_tsvectors(tsvector); - the condition SELECTs a field from an internal table that was removed in Postgresql 11, consequently the function definition, therefore the script, therefore the django migration fails - the problematic code section is a custom implementation of DROP AGGREGATE IF EXISTS - DROP AGGREGATE IF EXSITS has been supported (at least) since Postgres 8.2.23, released 2006 => replaced custom implementation with DROP AGGREGATE IF EXISTS * this patch removes the reference to the changed internal Postgresql table and therefore the issue which makes the script fail using Postgresql 11
- Loading branch information