You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/01/24 09:13:07 UTC

[GitHub] [arrow-datafusion] hengaini2055 opened a new issue #1661: thread 'tokio-runtime-worker' panicked at 'not implemented: Take not supported for data type Decimal(18, 4)

hengaini2055 opened a new issue #1661:
URL: https://github.com/apache/arrow-datafusion/issues/1661


   **Describe the bug**
   I use datafusion-cli using sql. When I select sum(amount) as amount from my_table; , then everything is OK. When I use sql "select dept, sum(amount) as amount from my_table group by dept;', I get the error:
   
   **To Reproduce**
   Steps to reproduce the behavior:
   
   **Expected behavior**
   A clear and concise description of what you expected to happen.
   
   **Additional context**
   Add any other context about the problem here.
   


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-datafusion] alamb commented on issue #1661: thread 'tokio-runtime-worker' panicked at 'not implemented: Take not supported for data type Decimal(18, 4)

Posted by GitBox <gi...@apache.org>.
alamb commented on issue #1661:
URL: https://github.com/apache/arrow-datafusion/issues/1661#issuecomment-1021097346






-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-datafusion] alamb closed issue #1661: thread 'tokio-runtime-worker' panicked at 'not implemented: Take not supported for data type Decimal(18, 4)

Posted by GitBox <gi...@apache.org>.
alamb closed issue #1661:
URL: https://github.com/apache/arrow-datafusion/issues/1661


   


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-datafusion] alamb commented on issue #1661: thread 'tokio-runtime-worker' panicked at 'not implemented: Take not supported for data type Decimal(18, 4)

Posted by GitBox <gi...@apache.org>.
alamb commented on issue #1661:
URL: https://github.com/apache/arrow-datafusion/issues/1661#issuecomment-1021097346


   I am waiting on the final approval needed to release 8.0.0. I hope I can get this today


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-datafusion] hengaini2055 commented on issue #1661: thread 'tokio-runtime-worker' panicked at 'not implemented: Take not supported for data type Decimal(18, 4)

Posted by GitBox <gi...@apache.org>.
hengaini2055 commented on issue #1661:
URL: https://github.com/apache/arrow-datafusion/issues/1661#issuecomment-1019881219


   The parquet file is exported using odbc2parquet tool from SQLServer Database.
   ```
   odbc2parquet query --dsn wd_bi_test --password "888888" --user "88" e:\temp\bi_test_jd2.parquet "select Period, dept cast(amount as decimal(18,4)) as amount, yw1_name, yw2_name, yw3_name from my_table"
   ```


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-datafusion] liukun4515 commented on issue #1661: thread 'tokio-runtime-worker' panicked at 'not implemented: Take not supported for data type Decimal(18, 4)

Posted by GitBox <gi...@apache.org>.
liukun4515 commented on issue #1661:
URL: https://github.com/apache/arrow-datafusion/issues/1661#issuecomment-1020740520


   > amount
   
   This https://github.com/apache/arrow-rs/pull/1172 has been merged, and the [group by supported](https://github.com/apache/arrow-datafusion/pull/1640) merged.
   But we need to wait for the arrow-rs to upgrade which is doing by @alamb.
   I think this feature will support soon after the arrow-rs 8.0.0 is released.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-datafusion] liukun4515 commented on issue #1661: thread 'tokio-runtime-worker' panicked at 'not implemented: Take not supported for data type Decimal(18, 4)

Posted by GitBox <gi...@apache.org>.
liukun4515 commented on issue #1661:
URL: https://github.com/apache/arrow-datafusion/issues/1661#issuecomment-1021777881


   thanks @alamb 
   Maybe we can close this ticket


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-datafusion] hengaini2055 commented on issue #1661: thread 'tokio-runtime-worker' panicked at 'not implemented: Take not supported for data type Decimal(18, 4)

Posted by GitBox <gi...@apache.org>.
hengaini2055 commented on issue #1661:
URL: https://github.com/apache/arrow-datafusion/issues/1661#issuecomment-1019877681


   My parquet file has a decimal(18,4) column named amount.  The exact error is 
   ```
   thread 'tokio-runtime-worker' panicked at 'not implemented: Take not supported for data type Decimal(18, 4)', C:\Users\hengaini2055\.cargo\registry\src\mirrors.ustc.edu.cn-12df342d903acd47\arrow-7.0.0\src\compute\kernels\take.rs:297:14
   ```


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-datafusion] alamb commented on issue #1661: thread 'tokio-runtime-worker' panicked at 'not implemented: Take not supported for data type Decimal(18, 4)

Posted by GitBox <gi...@apache.org>.
alamb commented on issue #1661:
URL: https://github.com/apache/arrow-datafusion/issues/1661#issuecomment-1021208551


   Released https://lists.apache.org/thread/b803mt0g8czbz3l31230053o2q728mqw 🎉 
   
   I will get a PR up to upgrade datafusion


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-datafusion] liukun4515 commented on issue #1661: thread 'tokio-runtime-worker' panicked at 'not implemented: Take not supported for data type Decimal(18, 4)

Posted by GitBox <gi...@apache.org>.
liukun4515 commented on issue #1661:
URL: https://github.com/apache/arrow-datafusion/issues/1661#issuecomment-1020740520


   > amount
   
   This https://github.com/apache/arrow-rs/pull/1172 has been merged, and the [group by supported](https://github.com/apache/arrow-datafusion/pull/1640) merged.
   But we need to wait for the arrow-rs to upgrade which is doing by @alamb.
   I think this feature will support soon after the arrow-rs 8.0.0 is released.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-datafusion] alamb commented on issue #1661: thread 'tokio-runtime-worker' panicked at 'not implemented: Take not supported for data type Decimal(18, 4)

Posted by GitBox <gi...@apache.org>.
alamb commented on issue #1661:
URL: https://github.com/apache/arrow-datafusion/issues/1661#issuecomment-1020115707


   This will likely be fixed as soon as we can upgrade to arrow 8.0.0 (due to be released today): https://github.com/apache/arrow-rs/pull/1172 
   
   Sorry for the delay
   
   cc @liukun4515 


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org