Skip to content

Commit

Permalink
fix: improve get_partition_batches to treat integers properly (#425)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicor88 authored Sep 26, 2023
1 parent 6f61530 commit 64fddef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
{%- if col is none -%}
{%- set value = 'null' -%}
{%- set comp_func = ' is ' -%}
{%- elif column_type == 'integer' -%}
{%- elif column_type == 'integer' or column_type is none -%}
{%- set value = col | string -%}
{%- elif column_type == 'string' -%}
{%- set value = "'" + col + "'" -%}
Expand Down

0 comments on commit 64fddef

Please sign in to comment.