Skip to content

Commit

Permalink
improve no schema upgrade path exception (#1125)
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-rp committed Mar 21, 2024
1 parent 3a815bc commit 3990973
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dlt/common/schema/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ def __init__(
self.to_engine = to_engine
super().__init__(
f"No engine upgrade path in schema {schema_name} from {init_engine} to {to_engine},"
f" stopped at {from_engine}"
f" stopped at {from_engine}. You possibly tried to run an older dlt"
" version against a destination you have previously loaded data to with a newer dlt"
" version."
)


Expand Down

0 comments on commit 3990973

Please sign in to comment.