From f1b4d2c5cc3e5c90e82841d8753ea5331704c065 Mon Sep 17 00:00:00 2001 From: Andy Grove Date: Sun, 24 Dec 2023 09:05:21 -0700 Subject: [PATCH] remove some TODO comments --- ballista/client/src/context.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ballista/client/src/context.rs b/ballista/client/src/context.rs index a1c0d7e3c..28904487d 100644 --- a/ballista/client/src/context.rs +++ b/ballista/client/src/context.rs @@ -210,7 +210,6 @@ impl BallistaContext { } /// Create a DataFrame representing an Json table scan - /// TODO fetch schema from scheduler instead of resolving locally pub async fn read_json( &self, paths: P, @@ -221,7 +220,6 @@ impl BallistaContext { } /// Create a DataFrame representing an Avro table scan - /// TODO fetch schema from scheduler instead of resolving locally pub async fn read_avro( &self, paths: P, @@ -232,7 +230,6 @@ impl BallistaContext { } /// Create a DataFrame representing a Parquet table scan - /// TODO fetch schema from scheduler instead of resolving locally pub async fn read_parquet( &self, paths: P, @@ -243,7 +240,6 @@ impl BallistaContext { } /// Create a DataFrame representing a CSV table scan - /// TODO fetch schema from scheduler instead of resolving locally pub async fn read_csv( &self, paths: P,