From 37023a5ceb0e6334bf353666cf2973f4b5eecbb2 Mon Sep 17 00:00:00 2001 From: TotaJ Date: Tue, 21 Jul 2020 15:18:07 +0800 Subject: [PATCH] Fix fastcheck error when platform doesn't support codegen. --- src/test/regress/input/hw_vec_int4.source | 1 + src/test/regress/input/hw_vec_int8.source | 1 + src/test/regress/output/hw_vec_int4.source | 1 + src/test/regress/output/hw_vec_int8.source | 1 + 4 files changed, 4 insertions(+) diff --git a/src/test/regress/input/hw_vec_int4.source b/src/test/regress/input/hw_vec_int4.source index 859b24260c..6d6bf36853 100644 --- a/src/test/regress/input/hw_vec_int4.source +++ b/src/test/regress/input/hw_vec_int4.source @@ -1,4 +1,5 @@ --INT4 +\set VERBOSITY terse CREATE TABLE vint4_test(a INT4, b INT4, c INT4) with (orientation = column) ; copy vint4_test from '@abs_srcdir@/tmp_check/datanode1/pg_copydir/vint4_normal.data' delimiter '|' NULL ''; diff --git a/src/test/regress/input/hw_vec_int8.source b/src/test/regress/input/hw_vec_int8.source index 304aecf352..3a6d2d9aa2 100644 --- a/src/test/regress/input/hw_vec_int8.source +++ b/src/test/regress/input/hw_vec_int8.source @@ -1,4 +1,5 @@ --INT8 +\set VERBOSITY terse CREATE TABLE vint8_test(a INT8, b INT8, c INT8) with (orientation = column) ; copy vint8_test from '@abs_srcdir@/tmp_check/datanode1/pg_copydir/vint8_normal.data' delimiter '|' NULL ''; diff --git a/src/test/regress/output/hw_vec_int4.source b/src/test/regress/output/hw_vec_int4.source index 5ca8f64055..ce3e8a4f0b 100644 --- a/src/test/regress/output/hw_vec_int4.source +++ b/src/test/regress/output/hw_vec_int4.source @@ -1,4 +1,5 @@ --INT4 +\set VERBOSITY terse CREATE TABLE vint4_test(a INT4, b INT4, c INT4) with (orientation = column) ; copy vint4_test from '@abs_srcdir@/tmp_check/datanode1/pg_copydir/vint4_normal.data' delimiter '|' NULL ''; select * from vint4_test order by a; diff --git a/src/test/regress/output/hw_vec_int8.source b/src/test/regress/output/hw_vec_int8.source index 236b346d00..3de0529930 100644 --- a/src/test/regress/output/hw_vec_int8.source +++ b/src/test/regress/output/hw_vec_int8.source @@ -1,4 +1,5 @@ --INT8 +\set VERBOSITY terse CREATE TABLE vint8_test(a INT8, b INT8, c INT8) with (orientation = column) ; copy vint8_test from '@abs_srcdir@/tmp_check/datanode1/pg_copydir/vint8_normal.data' delimiter '|' NULL ''; --test vint8pl -- Gitee