-
Notifications
You must be signed in to change notification settings - Fork 18
Hotfix/int32 config maxfee #403
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
Changes from all commits
2977b42
407e30d
30fc146
0e0a7f4
54aba98
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -51,7 +51,7 @@ type TransactionOutputParquet struct { | |||||
| FeeAccount string `parquet:"name=fee_account, type=BYTE_ARRAY, convertedtype=UTF8, encoding=PLAIN_DICTIONARY"` | ||||||
| FeeAccountMuxed string `parquet:"name=fee_account_muxed, type=BYTE_ARRAY, convertedtype=UTF8, encoding=PLAIN_DICTIONARY"` | ||||||
| InnerTransactionHash string `parquet:"name=inner_transaction_hash, type=BYTE_ARRAY, convertedtype=UTF8, encoding=PLAIN_DICTIONARY"` | ||||||
| NewMaxFee int64 `parquet:"name=new_max_fee, type=INT64, convertedtype=UINT_64"` | ||||||
| NewMaxFee int64 `parquet:"name=new_max_fee, type=INT64"` | ||||||
|
||||||
| NewMaxFee int64 `parquet:"name=new_max_fee, type=INT64"` | |
| NewMaxFee int64 `parquet:"name=new_max_fee, type=INT64, convertedtype=UINT_64"` |
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.
Changing
new_max_feefromuint32toint64is a schema/API breaking change for any consumers that deserializeTransactionOutput(and any downstream BigQuery schema expectations). If this is intentional, it should be accompanied by a documented migration/compatibility plan (e.g., schema version bump, backfill/reload notes, or explicit downstream consumer updates).