HySoaKa / node-red-contrib-postgrestor

Yet another Node-RED node to query PostgreSQL
GNU Affero General Public License v3.0
10 stars 17 forks source link

Fixed a bug with mustache and single quotes #13

Open snuids opened 4 years ago

snuids commented 4 years ago

Mustache escapes single quotes with ' which is not recognized by postgres. The fix simply replaces ' by a single quote before forwarding the request to the postgres client.

Without that, it is impossible to use templating in order to generate insert statements.