Skip to content

Commit df232d4

Browse files
committed
bugfix
1 parent cb76509 commit df232d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

macros/utils/cross_db_utils/get_user_creation_query.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ GRANT VIEW REFLECTION ON {{ db_type }} "{{ db_name }}" TO USER "{{ parameters["u
155155

156156
{% set db_name_to_type = {} %}
157157
{% for row in elementary.agate_to_dicts(elementary.run_query(dremio_databases_query)) %}
158-
{% if row["database_name"] | lower in configured_dbs and (row["database_type"] not in db_name_to_type or row["database_type"] == "CATALOG") %}
158+
{% if row["database_name"] | lower in configured_dbs and (row["database_name"] not in db_name_to_type or row["database_type"] == "CATALOG") %}
159159
{% do db_name_to_type.update({row["database_name"]: row["database_type"]}) %}
160160
{% endif %}
161161
{% endfor %}

0 commit comments

Comments
 (0)