Export Create Aggregate Functions from PostgreSQL

I created some custom aggregate functions. However, I see no way to export them to pgAdmin. Or in any other way.

I see basic functions, but not definitions CREATE AGGREGATE.

SquirrelSQL does not show anything useful!

+2
source share
1 answer

Most likely, you need to enable the display of aggregates in your settings:
File → Settings → Browser → Display

After updating the view in the object browser, you will get a separate node Aggregates:

Aggreagate node in object browser

CREATE script SQL.

+3

Source: https://habr.com/ru/post/1570847/


All Articles