From b24848b5d46216f124ab5f4a35d09cd27dd73b82 Mon Sep 17 00:00:00 2001 From: Raphael Taylor-Davies Date: Tue, 28 May 2024 16:35:09 +0100 Subject: [PATCH] Remove println --- arrow-row/src/list.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/arrow-row/src/list.rs b/arrow-row/src/list.rs index 83d4493692ae..63ad29aadb0c 100644 --- a/arrow-row/src/list.rs +++ b/arrow-row/src/list.rs @@ -170,11 +170,8 @@ pub unsafe fn decode( }) .collect(); - println!("Decoded Child rows: {child_rows:?}"); - let child = converter.convert_raw(&mut child_rows, validate_utf8)?; assert_eq!(child.len(), 1); - println!("{child:?}"); let child_data = child[0].to_data();