postgrespro / vops

Other
166 stars 22 forks source link

Is there any install guide for vops? #20

Closed ctyytc closed 4 years ago

ctyytc commented 4 years ago

Is there any install guide for vops?

knizhnik commented 4 years ago

VOPS is standard Postgres extension: there are no differences in building andinstallation of VOPS comparing with most of other Postgres extension. And procedure of building Postgres extension is explained in many places, including Postgres documentation.

The only small specific of VOPS is that you may want to include in shared_preload_libraries (although it is not required) to force registration of VOPS post analyze hook (otherwise it will be registered lazily only on first explicit VOPS function invocation).

ctyytc commented 4 years ago

@knizhnik Thanks for your answer😁