Skip to content

Commit e672af4

Browse files
authored
Merge pull request #1335 from joto/fix-compatible-lua
Set correct default for hstore_match_only in compatible.lua
2 parents 66b6454 + 213b400 commit e672af4

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

flex-config/compatible.lua

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@ local hstore_all = false
2929
-- Only keep objects that have a value in one of the non-hstore columns
3030
-- (normal action with --hstore is to keep all objects). Equivalent to
3131
-- what used to be set through option --hstore-match-only.
32-
local hstore_match_only = true
32+
local hstore_match_only = false
3333

3434
-- Set this to add an additional hstore (key/value) column containing all tags
3535
-- that start with the specified string, eg "name:". Will produce an extra
3636
-- hstore column that contains all "name:xx" tags. Equivalent to what used to
37-
-- be set through option -z|--hstore-column.
37+
-- be set through option -z|--hstore-column. Unlike the -z option which can
38+
-- be specified multiple time, this does only support a single additional
39+
-- hstore column.
3840
local hstore_column = nil
3941

4042
-- There is some very old specialized handling of route relations in osm2pgsql,

0 commit comments

Comments
 (0)