Jack Gibson
Jack Gibson

Reputation: 1841

How to install tablefunc in postgres on Mac OS X?

I used StackBuilder to install Postgres 9.2 on my Mac OS X machine.

Now I need to use tablefunc and it seems that the function is not available.

How do I install the contrib package on the Mac?

Upvotes: 11

Views: 15430

Answers (1)

Jack Gibson
Jack Gibson

Reputation: 1841

As suggested by a_horse_with_no_name the solution was simple.

I just had to execute:

CREATE EXTENSION tablefunc;

Upvotes: 25

Related Questions