support for hstore polygons

This commit is contained in:
Darafei Praliaskouski 2012-07-15 02:53:48 +03:00
parent c16be61d0d
commit 7460469d9c

View file

@ -120,7 +120,7 @@ if options.osm2pgsqlstyle != "-":
mf = open(options.osm2pgsqlstyle, "r")
for line in mf:
line = line.strip().split()
if line and line[0][0] != "#":
if line and line[0][0] != "#" and not ("phstore" in line):
osm2pgsql_avail_keys[line[1]] = tuple(line[0].split(","))
osm2pgsql_avail_keys["tags"] = ("node","way")