Skip to content

Commit

Permalink
correct collumn name
Browse files Browse the repository at this point in the history
  • Loading branch information
lequangphu committed Dec 5, 2024
1 parent ab36cfc commit 561e083
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ select
{% for field in bridge_data_fields %}
{% if field in ['transactionId', 'referrer', 'sendingAssetId', 'receiver'] %}
from_hex(json_extract_scalar(bridgedata, '$.{{ field }}')) as {{ field }},
{% elif field == 'minamount' %}
{% elif field == 'minAmount' %}
cast(json_extract_scalar(bridgedata, '$.{{ field }}') as double) as {{ field }},
{% else %}
json_extract_scalar(bridgedata, '$.{{ field }}') as {{ field }},
Expand Down

0 comments on commit 561e083

Please sign in to comment.