Skip to content
ptrb edited this page Jun 9, 2013 · 2 revisions

PostTIME makes use of the PostgreSQL extension feature so you need PostgreSQL version 9.1 or higher. For more information see the PostgreSQL documentation. Additionally PostTIME requires PostGIS at least version 2.0 - also as PostgreSQL extension.

To make PostTIME available as an extension module please download the TimeCoding and the pg_extension_makefile folder in the same directory. Then run make and make install.

You can run local regression tests of your PostTIME installation with make installcheck.

Now you can easily add the PostTIME extension to a database with a CREATE EXTENSION statement like:

CREATE EXTENSION posttime;

You can remove the extension with:

DROP EXTENSION posttime;

If you want to undo the installation just remove all files naming posttime from your PostgreSQL extension directory and the shared library object from PostgreSQL's $libdir.