Skip to content

Commit

Permalink
Modify interpolate() call in gapfill test (timescale#6146)
Browse files Browse the repository at this point in the history
To work fine on dev-cloud tests, in presence of other extensions.

Disable-check: force-changelog-file
  • Loading branch information
pallavisontakke authored Oct 4, 2023
1 parent 0b87a06 commit 0d6f5f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tsl/test/shared/expected/gapfill.out
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@ SELECT locf(NULL::int);

(1 row)

SELECT interpolate(NULL);
SELECT interpolate(NULL::bigint);
interpolate

(1 row)
Expand Down
2 changes: 1 addition & 1 deletion tsl/test/shared/sql/gapfill.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0d6f5f2

Please sign in to comment.