This is an automated email from the ASF dual-hosted git repository. houqp pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/master by this push: new 17fb707 Add ticket reference to clippy allow (#1978) 17fb707 is described below commit 17fb707111819cf2b61407c0fa915b5ce8c610f9 Author: Andrew Lamb <and...@nerdnetworks.org> AuthorDate: Fri Mar 11 01:42:52 2022 -0500 Add ticket reference to clippy allow (#1978) --- datafusion-proto/src/from_proto.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/datafusion-proto/src/from_proto.rs b/datafusion-proto/src/from_proto.rs index 2bf65d4..013196c 100644 --- a/datafusion-proto/src/from_proto.rs +++ b/datafusion-proto/src/from_proto.rs @@ -155,6 +155,7 @@ impl TryFrom<&protobuf::DfSchema> for DFSchema { .iter() .map(|c| c.try_into()) .collect::<Result<Vec<DFField>, _>>()?; + // https://github.com/apache/arrow-datafusion/issues/1977 #[allow(deprecated)] Ok(DFSchema::new(fields)?) }