Skip to content

Commit

Permalink
Fix fix
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsdukai committed Mar 4, 2021
1 parent 7a31dc7 commit cb4c029
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cjio_dbexport/db3dnl.py
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,9 @@ def query_tiles_in_list(
"""
).format(**query_params)

sql_where_attr_intersects = sql.Composed("WHERE b.{tbl_tile} IN {tile_list}")
sql_where_attr_intersects = sql.SQL("""
WHERE {tbl_tile} IN {tile_list}
""").format(**query_params)

sql_extent = sql.Composed("")

Expand Down

0 comments on commit cb4c029

Please sign in to comment.