jrgemignani commented on issue #761:
URL: https://github.com/apache/age/issues/761#issuecomment-1481530424

   When you pull down the repo, build and install the AGE extension, you should 
generally do it the following way. Note, this is from my personal build script 
and **$path** is specific to my server.
   
   ```
   make PG_CONFIG=$path/pg_config clean
   
   make PG_CONFIG=$path/pg_config
   
   make PG_CONFIG=$path/pg_config install
   
   make PG_CONFIG=$path/pg_config installcheck
   ```
   
   make **clean** - cleans up the build so that it starts from scratch. 
   make - builds everything
   make **install** - installs the extension
   make **installcheck** - runs the regression tests against the install
   
   You will then need to load the extension from PostgreSQL. You may, or may 
not, need to drop the extension. Generally, I don't need to drop it, unless 
there are significant changes to the extension.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to