-
Notifications
You must be signed in to change notification settings - Fork 19
Fix avro serialize #261
Fix avro serialize #261
Conversation
Please rebase main branch and try again. cc @ZENOTME |
We need sync avro with main (to get the fix of custom attribute in RecordField) and an extra commit to fix list and map🥵. |
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.
Generally LGTM, thanks!
@@ -11,7 +11,7 @@ resolver = "2" | |||
anyhow = "1" | |||
async-trait = "0.1" | |||
# branch is icelake-dev | |||
apache-avro = { git = "https://github.com/icelake-io/avro.git", rev = "4866a4ad0ed5d6af7160c9b52af898ab6d0551f9", features = ["derive"] } |
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.
Please use rev
to pin to a version, otherwise downstream project maybe affected when we push changes to branch.
con1 = t1.scan().to_duckdb(table_name="t1") | ||
con2 = t2.scan().to_duckdb(table_name="t2") | ||
|
||
res1 = con1.execute("SELECT * from t1").fetchall() |
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.
Should we consider add order by
here to ensure correctness?
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 use sort
below.
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, thanks!
No description provided.