Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 768
Jack Gibson Avatar asked Jul 29 '13 22:07

Jack Gibson


1 Answers

As suggested by a_horse_with_no_name the solution was simple.

I just had to execute:

CREATE EXTENSION tablefunc;
like image 120
Jack Gibson Avatar answered Oct 08 '22 00:10

Jack Gibson