mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-24 15:05:03 +08:00
This patch adds a check that all c functions link to the correct library after an update.
16 lines
358 B
SQL
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;
|
|
|