timescaledb/test/sql/updates/post.functions.sql
Sven Klemm 336d8f9c47 Check function linkage in update test
This patch adds a check that all c functions link to the correct
library after an update.
2020-10-13 18:06:28 +02:00

16 lines
358 B
SQL

-- This file and its contents are licensed under the Apache License 2.0.
-- Please see the included NOTICE for copyright information and
-- LICENSE-APACHE for a copy of the license.
-- check all functions point to the correct library
SELECT
oid::REGPROCEDURE,
probin
FROM
pg_proc
WHERE
probin LIKE '%timescale%'
ORDER BY
oid::REGPROCEDURE::TEXT;