You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2021/04/26 21:34:35 UTC

[arrow-datafusion] branch master updated: Add query 19 to TPC-H regression tests (#59)

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

alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/master by this push:
     new 8380c5d  Add query 19 to TPC-H regression tests (#59)
8380c5d is described below

commit 8380c5dc9d3d9e98e3c6ceeb61db1d0a78371fef
Author: Daniƫl Heres <da...@gmail.com>
AuthorDate: Mon Apr 26 23:34:26 2021 +0200

    Add query 19 to TPC-H regression tests (#59)
---
 benchmarks/src/bin/tpch.rs | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/benchmarks/src/bin/tpch.rs b/benchmarks/src/bin/tpch.rs
index deaca49..cee555f 100644
--- a/benchmarks/src/bin/tpch.rs
+++ b/benchmarks/src/bin/tpch.rs
@@ -681,6 +681,11 @@ mod tests {
         run_query(14).await
     }
 
+    #[tokio::test]
+    async fn run_q19() -> Result<()> {
+        run_query(19).await
+    }
+
     /// Specialised String representation
     fn col_str(column: &ArrayRef, row_index: usize) -> String {
         if column.is_null(row_index) {