Skip to content

Commit

Permalink
selecting non-null, non-empty converted_date (#447)
Browse files Browse the repository at this point in the history
  • Loading branch information
joker2411 authored Sep 13, 2024
1 parent b2630b1 commit 10fed4a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ def register_dependencies(self, this: WhtMaterial):
)

from_info = f"FROM {{{{entity_var_table}}}}"
where_info = f"WHERE {conversion_info_column_name_timestamp} is not NULL"
where_info = f"WHERE {conversion_info_column_name_timestamp} is not NULL and {conversion_info_column_name_timestamp} != '' "

conversion_query = f"""
{select_info}
Expand Down

0 comments on commit 10fed4a

Please sign in to comment.