You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Andrew Lamb (Jira)" <ji...@apache.org> on 2021/04/26 13:32:03 UTC

[jira] [Closed] (ARROW-11731) [Rust][DataFusion] Crash on parsing sql query with Cyrillic letters

     [ https://issues.apache.org/jira/browse/ARROW-11731?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrew Lamb closed ARROW-11731.
-------------------------------
    Resolution: Invalid

> [Rust][DataFusion] Crash on parsing sql query with Cyrillic letters
> -------------------------------------------------------------------
>
>                 Key: ARROW-11731
>                 URL: https://issues.apache.org/jira/browse/ARROW-11731
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: Rust - DataFusion
>    Affects Versions: 4.0.0
>            Reporter: AlexNav73
>            Priority: Minor
>         Attachments: StackTrace.txt
>
>
> Hello,
> I'm using DataFusion to query data from my csv file. The file contains columns with Cyrillic letters and when I write query like this one, I get a crash.
> Code sample:
> {code}
> let mut ctx = ExecutionContext::new();
> let csv_file = CsvFile::try_new(args.input.as_path().to_str().unwrap(), CsvReadOptions::new())?;
> ctx.register_table("transactions", Arc::new(csv_file));
> let df = ctx.sql("SELECT \"ДАТА\" FROM transactions")?;
> let results = df.collect().await?;
> log::info!("result: {:?}", results);
> {code}
> Stack trace: [^StackTrace.txt]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)