-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use reference keys instead of relations #4410
Conversation
integration tests won't really hit all the changes here. I'm going to make sure they pass locally with |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
It looks like the ListRelations event takes a list of relations, so we need to run the make_key thing on each element of the list |
@@ -2499,8 +2491,8 @@ def message(self) -> str: | |||
SQLQueryStatus(status="", elapsed=0.1) | |||
SQLCommit(conn_name="") | |||
ColTypeChange(orig_type="", new_type="", table="") | |||
SchemaCreation(relation=BaseRelation()) | |||
SchemaDrop(relation=BaseRelation()) | |||
SchemaCreation(relation=_make_key(BaseRelation())) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would have expected these lines to be: SchemaCreation(relation=_ReferenceKey). Is there some reason to call the _make_key function here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's just shorter. this code is never run, just evaluated by mypy. happy to change it though if you think it's better.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's fine for now :)
it's failing integration tests with json formatted logs locally so I'll be pushing a few more changes to fix those issues. |
now it hangs here when you can trigger this locally with |
I'm going to merge anyway to get these fixes in. I can open a new pr to fix this hang once I can nail it down. |
automatic commit by git-black, original commits: 9bdf5fe
Description
our Relation types override the behavior of deepcopy which means they cannot go through the json serialization pipeline which leverages asdict. This is because the dict_factory that asdict takes is not applied till the end of processing when deepcopy is internally used. The way we've overridden the behavior raises an exception when we try to serialize these values as part of a dataclass. Using reference keys instead is easier to serialize since it's just a named tuple.
Checklist
CHANGELOG.md
and added information about my change