whitespace

This commit is contained in:
Paul Reeves 2023-01-24 15:58:30 +01:00
parent 2e17461048
commit ef3462cbe2
1 changed files with 4 additions and 0 deletions

View File

@ -8,12 +8,16 @@ create or alter function div (
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;
-- Add some grants here perhaps?
grant execute on function div to public;
grant execute on function flagged to public;