-
Notifications
You must be signed in to change notification settings - Fork 108
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
bug: generating uuid for postgres gives 'incorrect binary data format' error #270
Comments
Are there any updates to this or workarounds? This tool seems like exactly what I'm looking for, but not being able to generate these uuids is stopping me from being able to use it |
You can generate the data into csvs and then import those into database using |
Thanks for the fast reply! |
It seems This means we can't give See the Currently UUIDs are generated using the "string" generator. I haven't managed to get my head around Synth's internal data model yet, but I'm wondering whether the |
I have same issue while trying to generate a uuid to a postgres. |
@ThomWright you are correct, |
This tool is apt for my needs. however I am struck with the same UUID problem. Since there are multiple parent-child relationships, i am unable to use the workaround like CSV, JSON etc. Can a fix be provided? |
Ditto ran into the same bug today. Bummer. If I knew Rust I'd chip in. I think Synth is such a great idea |
Yeah, this has been a problem for a while. I will have more time to work on this soon, so I hope this will be fixed soon. |
Our database uses alot of foreign keys, without supporting uuid, there's no way to use synth to generate https://www.getsynth.com/docs/content/same-as data for different tables, since our primary keys of our tables are UUID. |
Hi, any progress on it? Our db uses only UUID as a references (ids) so now we can't use synth at all :-(. |
Describe the bug
Trying to generate a uuid to a postgres uuid column fails with a 'incorrect binary data format' error
To Reproduce
Steps to reproduce the behavior:
Expected behavior
From the Postgres integrations page I expect the uuid postgres type to successfully populate from a synth string generator.
Environment (please complete the following information):
Additional context
A successful fix should restore the e2e test for this type
The text was updated successfully, but these errors were encountered: