feat: add object ids to firebird queries

This commit is contained in:
Pavel
2025-05-27 18:49:27 +02:00
parent c20cac621a
commit 1568dfc183
8 changed files with 48 additions and 19 deletions

View File

@@ -9,7 +9,8 @@ SELECT
FROM
RDB$FUNCTIONS F
WHERE
COALESCE(F.RDB$SYSTEM_FLAG, 0) = 0 -- User-defined functions
COALESCE(F.RDB$SYSTEM_FLAG, 0) = 0 -- User-defined functions
AND ('funcitons:' || TRIM(F.RDB$FUNCTION_NAME)) =OBJECT_ID_CONDITION
ORDER BY
"pureName";
`;