LI3DS / api-li3ds

LI³DS Rest API
GNU General Public License v3.0
0 stars 3 forks source link

Install fdw-pointcloud in Docker image #21

Closed elemoine closed 7 years ago

elemoine commented 7 years ago

This PR extends the Dockerfile to install fdw-pointcloud.

elemoine commented 7 years ago

This is still WIP. I am currently testing it.

elemoine commented 7 years ago

This is now ready for review and testing.

The foreign data wrapper and foreign data servers are installed:

li3ds=# select * from  pg_foreign_data_wrapper;
  fdwname  | fdwowner | fdwhandler | fdwvalidator | fdwacl | fdwoptions
-----------+----------+------------+--------------+--------+------------
 multicorn |       10 |      18085 |        18084 |        |
(1 row)

li3ds=# select * from  pg_foreign_server;
  srvname  | srvowner | srvfdw | srvtype | srvversion | srvacl |            srvoptions
-----------+----------+--------+---------+------------+--------+-----------------------------------
 echopulse |       10 |  18086 |         |            |        | {wrapper=fdwpointcloud.EchoPulse}
 sbet      |       10 |  18086 |         |            |        | {wrapper=fdwpointcloud.Sbet}
(2 rows)
elemoine commented 7 years ago

@mbredif are you ok with it? Can I merge it?