-
Hey @erezsh, hope you are doing well. I'm trying to find difference between trino DB's which is connected to a postgres database
Here is my code from reladiff import connect_to_table, diff_tables
table1 = connect_to_table("trino://admin@localhost/source/public", "raw", "custid")
table2 = connect_to_table("trino://admin@localhost/target/public", "raw", "custid")
for sign, row in diff_tables(table1, table2):
print(sign, row) Postgres Database rows Is there any fix? Thank you for your great work. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hello @Ryuk-me , Yes, it looks like Trino doesn't currently support UUID columns. I think it's relatively easy to add, but it needs to be added to the If you'd like to open a PR, I can explain to you how to fix it yourself. Otherwise, I'll try to get to it myself in the coming days. |
Beta Was this translation helpful? Give feedback.
@Ryuk-me I created a PR that is supposed to solved this. Can you give it a try and let me know if it works for you too?
#28