From 0d6f5f26343619825a90ffb30e763d1dcae658fd Mon Sep 17 00:00:00 2001 From: Pallavi Sontakke Date: Wed, 4 Oct 2023 16:44:16 +0530 Subject: [PATCH] Modify interpolate() call in gapfill test (#6146) To work fine on dev-cloud tests, in presence of other extensions. Disable-check: force-changelog-file --- tsl/test/shared/expected/gapfill.out | 2 +- tsl/test/shared/sql/gapfill.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tsl/test/shared/expected/gapfill.out b/tsl/test/shared/expected/gapfill.out index 46ed6d5a3cb..b50d4ccf38e 100644 --- a/tsl/test/shared/expected/gapfill.out +++ b/tsl/test/shared/expected/gapfill.out @@ -926,7 +926,7 @@ SELECT locf(NULL::int); (1 row) -SELECT interpolate(NULL); +SELECT interpolate(NULL::bigint); interpolate (1 row) diff --git a/tsl/test/shared/sql/gapfill.sql b/tsl/test/shared/sql/gapfill.sql index 86e848f73ae..0f44c27a057 100644 --- a/tsl/test/shared/sql/gapfill.sql +++ b/tsl/test/shared/sql/gapfill.sql @@ -195,7 +195,7 @@ SELECT locf(1); SELECT interpolate(1); -- test locf and interpolate call with NULL input SELECT locf(NULL::int); -SELECT interpolate(NULL); +SELECT interpolate(NULL::bigint); \set ON_ERROR_STOP 0 -- test time_bucket_gapfill not top level function call