You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2023/12/24 20:36:14 UTC

(arrow-ballista) branch main updated: remove some TODO comments (#946)

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

agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git


The following commit(s) were added to refs/heads/main by this push:
     new c31a9604 remove some TODO comments (#946)
c31a9604 is described below

commit c31a9604f7117273797bd77aa7c1cb1bd5def29c
Author: Andy Grove <an...@gmail.com>
AuthorDate: Sun Dec 24 13:36:08 2023 -0700

    remove some TODO comments (#946)
---
 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 a1c0d7e3..28904487 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<P: DataFilePaths>(
         &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<P: DataFilePaths>(
         &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<P: DataFilePaths>(
         &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<P: DataFilePaths>(
         &self,
         paths: P,