[pdal-commits] [PDAL/PDAL] 6b3df6: Fix PgWriter DROP TABLE statement (#1540)
GitHub
noreply at github.com
Fri Mar 24 22:10:04 PDT 2017
Branch: refs/heads/master
Home: https://github.com/PDAL/PDAL
Commit: 6b3df6620d9ba98a8bcb8e71a8b3fea59b987066
https://github.com/PDAL/PDAL/commit/6b3df6620d9ba98a8bcb8e71a8b3fea59b987066
Author: Éric Lemoine <eric.lemoine at gmail.com>
Date: 2017-03-25 (Sat, 25 Mar 2017)
Changed paths:
M plugins/pgpointcloud/io/PgWriter.cpp
Log Message:
-----------
Fix PgWriter DROP TABLE statement (#1540)
When a schema is specified the following statement is currently issued:
DROP TABLE IF EXISTS "public.table_name"
which is not correct. With this patch the following statement is created:
DROP TABLE IF EXISTS "public"."table_name"
More information about the pdal-commits
mailing list