Fix 182: properly quote tables with . in their names

This commit is contained in:
Victor Kryukov 2015-02-24 16:55:04 -08:00 committed by Dimitri Fontaine
parent eabfbb9cc8
commit 54997be2dd

View File

@ -26,7 +26,7 @@
(cond ((quoted-p identifier)
:none)
((cl-ppcre:scan "^[^A-Za-z_]" identifier)
((cl-ppcre:scan "[^A-Za-z_]" identifier)
:quote)
((member lowercase-identifier *pgsql-reserved-keywords*