Skip to content

pgstuff/sys_syn_dblink

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sys_syn_dblink

A sys_syn processor.

To build it, just do this:

make
make installcheck
make install

If you encounter an error such as:

"Makefile", line 8: Need an operator

You need to use GNU make, which may well be installed on your system as gmake:

gmake
gmake install
gmake installcheck

If you encounter an error such as:

make: pg_config: Command not found

Be sure that you have pg_config installed and in your path. If you used a package management system such as RPM to install PostgreSQL, be sure that the -devel package is also installed. If necessary tell the build process where to find it:

env PG_CONFIG=/path/to/pg_config make && make installcheck && make install

If you encounter an error such as:

ERROR:  must be owner of database regression

You need to run the test suite using a super user, such as the default "postgres" super user:

make installcheck PGUSER=postgres

Once sys_syn_dblink is installed, you can add it to a database. PostgreSQL 9.5.0 or greater is required. Connect to a database as a super user and run:

CREATE EXTENSION sys_syn_dblink;

If you have asciidoc installed, you may make the HTML documentation with:

make doc-html-single

View the resulting .html file in the doc directory. If you do not have asciidoc installed, the .adoc file can be read with a standard text editor. The HTML file will be installed to this path: $(pg_config --docdir)/extension/sys_syn_dblink.html

Dependencies

The sys_syn_dblink extension has no dependencies other than PostgreSQL.

Copyright and License

Copyright (c) 2016-2017 sys_syn copyright is novated to PostgreSQL Global Development Group.

sys_syn_dblink is released under the PostgreSQL License, a liberal Open Source license, similar to the BSD or MIT licenses. See the COPYRIGHT file for the license.

About

System Synchronization Client via dblink

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors