lidavidm commented on code in PR #38385:
URL: https://github.com/apache/arrow/pull/38385#discussion_r1383930753


##########
cpp/src/arrow/flight/sql/client.cc:
##########
@@ -256,6 +256,88 @@ arrow::Result<int64_t> 
FlightSqlClient::ExecuteSubstraitUpdate(
   return update_result.record_count();
 }
 
+arrow::Result<int64_t> FlightSqlClient::ExecuteIngest(
+      const FlightCallOptions& options,
+      const std::shared_ptr<RecordBatchReader>& reader,
+      const IngestMode& mode,
+      const std::string& table, const std::string& schema,
+      const std::string& catalog, const bool temporary,
+      const Transaction& transaction,
+      const std::map<std::string, std::string>& ingest_options) {
+  flight_sql_pb::CommandStatementIngest command;
+
+  flight_sql_pb::CommandStatementIngest_IngestMode pb_ingest_mode;
+  switch (mode)
+  {

Review Comment:
   Hmm, it doesn't print what happened?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to