You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ji...@apache.org on 2022/11/14 03:13:17 UTC

[arrow-rs] branch test-thrift-017 updated: fix async reader

This is an automated email from the ASF dual-hosted git repository.

jiayuliu pushed a commit to branch test-thrift-017
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/test-thrift-017 by this push:
     new 2acdbd185 fix async reader
2acdbd185 is described below

commit 2acdbd18573c3421d839ff60b05a33b770ed7d3c
Author: Jiayu Liu <ji...@hey.com>
AuthorDate: Mon Nov 14 11:12:51 2022 +0800

    fix async reader
---
 parquet/src/arrow/async_reader.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parquet/src/arrow/async_reader.rs b/parquet/src/arrow/async_reader.rs
index d52fa0406..e182cccbc 100644
--- a/parquet/src/arrow/async_reader.rs
+++ b/parquet/src/arrow/async_reader.rs
@@ -89,7 +89,7 @@ use bytes::{Buf, Bytes};
 use futures::future::{BoxFuture, FutureExt};
 use futures::ready;
 use futures::stream::Stream;
-use thrift::protocol::TCompactInputProtocol;
+use thrift::protocol::{TCompactInputProtocol, TSerializable};
 
 use tokio::io::{AsyncRead, AsyncReadExt, AsyncSeek, AsyncSeekExt};