You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@quickstep.apache.org by ji...@apache.org on 2018/05/28 01:15:10 UTC

[1/2] incubator-quickstep git commit: Fixes to bulk load

Repository: incubator-quickstep
Updated Branches:
  refs/heads/trace f477c5d31 -> bfe32cd70


Fixes to bulk load


Project: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/commit/d4355009
Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/tree/d4355009
Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/diff/d4355009

Branch: refs/heads/trace
Commit: d43550098c550fab3d9fba25ef8337bf7baa026c
Parents: f477c5d
Author: Jianqiao Zhu <ji...@cs.wisc.edu>
Authored: Sat May 26 21:23:53 2018 -0500
Committer: Jianqiao Zhu <ji...@cs.wisc.edu>
Committed: Sat May 26 21:27:02 2018 -0500

----------------------------------------------------------------------
 relational_operators/TextScanOperator.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/d4355009/relational_operators/TextScanOperator.hpp
----------------------------------------------------------------------
diff --git a/relational_operators/TextScanOperator.hpp b/relational_operators/TextScanOperator.hpp
index dfedb2b..3b5b2d2 100644
--- a/relational_operators/TextScanOperator.hpp
+++ b/relational_operators/TextScanOperator.hpp
@@ -138,7 +138,7 @@ class TextScanOperator : public RelationalOperator {
         options_(options),
         output_relation_(output_relation),
         output_destination_index_(output_destination_index),
-        serial_bulk_insert_(mem_data != nullptr),
+        serial_bulk_insert_(mem_data != nullptr && file_pattern == "$stdin"),
         num_remaining_chunks_(0),
         serial_worker_ready_(true),
         work_generated_(false) {}


[2/2] incubator-quickstep git commit: Client exit with -1 on RPC failure

Posted by ji...@apache.org.
Client exit with -1 on RPC failure


Project: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/commit/bfe32cd7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/tree/bfe32cd7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/diff/bfe32cd7

Branch: refs/heads/trace
Commit: bfe32cd70f8593f319295613fec1465a999c49aa
Parents: d435500
Author: Jianqiao Zhu <ji...@cs.wisc.edu>
Authored: Sun May 27 20:14:43 2018 -0500
Committer: Jianqiao Zhu <ji...@cs.wisc.edu>
Committed: Sun May 27 20:14:43 2018 -0500

----------------------------------------------------------------------
 cli/NetworkCliClient.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/bfe32cd7/cli/NetworkCliClient.hpp
----------------------------------------------------------------------
diff --git a/cli/NetworkCliClient.hpp b/cli/NetworkCliClient.hpp
index 5c11cb2..f3693f4 100644
--- a/cli/NetworkCliClient.hpp
+++ b/cli/NetworkCliClient.hpp
@@ -66,7 +66,7 @@ class NetworkCliClient {
     } else {
       std::cout << "RPC call failed with code " << status.error_code()
                 << " and message: " << status.error_message() << "\n";
-      return "RPC failed";
+      std::exit(-1);
     }
   }