Skip to content

Commit 3de3486

Browse files
committed
changed dremio datatypes to lowercase
1 parent 5a310e0 commit 3de3486

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

macros/utils/data_types/data_type_list.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,10 @@
153153
{% endmacro %}
154154

155155
{% macro dremio__data_type_list(data_type) %}
156-
{% set string_list = ['VARCHAR', 'CHARACTER VARYING'] | list %}
157-
{% set numeric_list = ['INT','INTEGER','BIGINT','DOUBLE','DECIMAL','FLOAT','SMALLINT','TINYINT'] | list %}
158-
{% set timestamp_list = ['DATE','TIME','TIMESTAMP', 'TIME WITH TIME ZONE', 'TIMESTAMP WITH TIME ZONE'] | list %}
159-
{% set boolean_list = ['BOOLEAN', 'BIT'] | list %}
156+
{% set string_list = ['varchar', 'character varying'] | list %}
157+
{% set numeric_list = ['int','integer','bigint','double','decimal','float','smallint','tinyint'] | list %}
158+
{% set timestamp_list = ['date','time','timestamp', 'time with time zone', 'timestamp with time zone'] | list %}
159+
{% set boolean_list = ['boolean', 'bit'] | list %}
160160

161161
{%- if data_type == 'string' %}
162162
{{ return(string_list) }}

0 commit comments

Comments
 (0)