You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that if you have multiple plugins defined, PGSync will use alphabetical order of the file name(s) instead of the order defined in the schema.json.
I noticed that if you have multiple plugins defined, PGSync will use alphabetical order of the file name(s) instead of the order defined in the schema.json.
Example:
What's Wrong?
First
ASerializer
is executed first, followed byZSerializer
. This is becausea_serializer.py
comes beforez_serializer.py
.What Should Happen
The
schema.json
clearly defined the order to beZSerializer
first, thenASerializer
. Therefore, it should respect that order.The text was updated successfully, but these errors were encountered: