Use a prepared function and get a result

This commit is contained in:
Eli Ribble 2025-12-02 22:44:51 +00:00
parent eac240af51
commit b488730177
No known key found for this signature in database
2 changed files with 17 additions and 10 deletions

View file

@ -1,3 +1,3 @@
PREPARE test_function AS
SELECT version();
PREPARE test_function(int) AS
SELECT 2*$1 AS result;