Thursday, March 3, 2011

Howto check for existing aggregate functions in Postgres?

In Postgresql you can create additional Aggregate Functions with

CREATE AGGREGATE name(...);

But this gives an error if the aggregate already exists inside the database, so how can I check if a Aggregate already exists in the Postgres Database?

From stackoverflow

0 comments:

Post a Comment