Files
osm2pgsql/tests/data/test_output_flex_relation_combinations.lua
Jochen Topf 3ad48b7f59 Replace add_row() by insert() in some tests
At some point we'll deprecate add_row(), tests that don't explicitly
test add_row() should use insert().
2023-01-23 11:47:33 +01:00

16 lines
347 B
Lua

local rel_table = osm2pgsql.define_relation_table('osm2pgsql_test_relations', {
{ column = 'tags', type = 'hstore' }
})
function osm2pgsql.select_relation_members(relation)
return { ways = osm2pgsql.way_member_ids(relation) }
end
function osm2pgsql.process_relation(object)
rel_table:insert({
tags = object.tags
})
end