Skip to content

Commit 86719d7

Browse files
authored
esacped more dremio special chars (#860)
1 parent 6a5ea3e commit 86719d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

macros/utils/table_operations/insert_rows.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
{%- endmacro -%}
155155

156156
{%- macro dremio__escape_special_chars(string_value) -%}
157-
{{- return(string_value | replace("\'", "''")) -}}
157+
{{- return(string_value | replace("\'", "''") | replace("", "''") | replace("", "''") | replace("", " ")) -}}
158158
{%- endmacro -%}
159159

160160
{%- macro trino__escape_special_chars(string_value) -%}

0 commit comments

Comments
 (0)