viirya commented on code in PR #7048: URL: https://github.com/apache/arrow-datafusion/pull/7048#discussion_r1269993285
########## datafusion/core/tests/sqllogictests/test_files/arrow_typeof.slt: ########## @@ -180,23 +180,29 @@ drop table foo statement ok create table foo as select - arrow_cast(100, 'Decimal128(5,2)') as col_d128 - -- Can't make a decimal 156: - -- This feature is not implemented: Can't create a scalar from array of type "Decimal256(3, 2)" - --arrow_cast(100, 'Decimal256(5,2)') as col_d256 + arrow_cast(100, 'Decimal128(5,2)') as col_d128, + arrow_cast(100, 'Decimal256(5,2)') as col_d256 Review Comment: Now it is okay to create table using decimal256. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
