Skip to content

Commit

Permalink
Improve error message for table formats.
Browse files Browse the repository at this point in the history
  • Loading branch information
VersusFacit committed Sep 24, 2024
1 parent 9cd00f4 commit 30842b3
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,7 @@

{% elif target_relation.table_format != existing_relation.table_format %}
{% do exceptions.raise_compiler_error(
"Unable to convert a " ~ existing_relation.table_format ~ " format table to " ~
target_relation.table_format ~ " without specifying --full-refresh."
"Was unable to create incremental model '" ~ target_relation.identifier ~ "' as " ~ target_relation.table_format ~ " table format. Cannot convert a " ~ existing_relation.table_format ~ " format table to " ~ target_relation.table_format ~ " without specifying --full-refresh."
)
%}

Expand Down

0 comments on commit 30842b3

Please sign in to comment.