Initial commit

This commit is contained in:
Paul Reeves 2023-01-23 15:31:32 +01:00
parent 890d4918cf
commit 136ccaad30
1 changed files with 16 additions and 0 deletions

16
sql/MyFirstUDRKit.sql Normal file
View File

@ -0,0 +1,16 @@
/*
* This demonstrates how to declare the UDRs globally
*/
create or alter function div (
anumerator integer, adenominator integer
)
returns double precision
external name 'udf_compat!UC_div!Divide anumerator by adenominator' engine udr;
create or alter function flagged (
flags integer, flag integer
)
returns integer
external name 'my_first_udr_kit!MFK_flagged!How is this function used?' engine udr;