forked from huawei/openGauss-server
!36 Fix fastcheck error when platform doesn't support codegen.
Merge pull request !36 from TotaJ/bugfix/fastcheck
This commit is contained in:
commit
3d6f21fdbf
|
@ -1,4 +1,5 @@
|
||||||
--INT4
|
--INT4
|
||||||
|
\set VERBOSITY terse
|
||||||
CREATE TABLE vint4_test(a INT4, b INT4, c INT4) with (orientation = column) ;
|
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 '';
|
copy vint4_test from '@abs_srcdir@/tmp_check/datanode1/pg_copydir/vint4_normal.data' delimiter '|' NULL '';
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
--INT8
|
--INT8
|
||||||
|
\set VERBOSITY terse
|
||||||
CREATE TABLE vint8_test(a INT8, b INT8, c INT8) with (orientation = column) ;
|
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 '';
|
copy vint8_test from '@abs_srcdir@/tmp_check/datanode1/pg_copydir/vint8_normal.data' delimiter '|' NULL '';
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
--INT4
|
--INT4
|
||||||
|
\set VERBOSITY terse
|
||||||
CREATE TABLE vint4_test(a INT4, b INT4, c INT4) with (orientation = column) ;
|
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 '';
|
copy vint4_test from '@abs_srcdir@/tmp_check/datanode1/pg_copydir/vint4_normal.data' delimiter '|' NULL '';
|
||||||
select * from vint4_test order by a;
|
select * from vint4_test order by a;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
--INT8
|
--INT8
|
||||||
|
\set VERBOSITY terse
|
||||||
CREATE TABLE vint8_test(a INT8, b INT8, c INT8) with (orientation = column) ;
|
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 '';
|
copy vint8_test from '@abs_srcdir@/tmp_check/datanode1/pg_copydir/vint8_normal.data' delimiter '|' NULL '';
|
||||||
--test vint8pl
|
--test vint8pl
|
||||||
|
|
Loading…
Reference in New Issue