(executor)
| 659 | |
| 660 | @dbtest |
| 661 | def test_function_definition(executor): |
| 662 | run( |
| 663 | executor, |
| 664 | """ |
| 665 | CREATE OR REPLACE FUNCTION public.the_number_three() |
| 666 | RETURNS int |
| 667 | LANGUAGE sql |
| 668 | AS $function$ |
| 669 | select 3; |
| 670 | $function$ |
| 671 | """, |
| 672 | ) |
| 673 | executor.function_definition("the_number_three") |
| 674 | |
| 675 | |
| 676 | @dbtest |
nothing calls this directly
no test coverage detected