1
0
Fork 0

fixed up syntax error

This commit is contained in:
ERYoung11 2024-02-04 20:34:58 -06:00
parent a146a920bf
commit 7992426d07
1 changed files with 2 additions and 2 deletions

View File

@ -695,7 +695,7 @@ def test_function_notice_order(executor):
run(
executor,
"""
CREATE OR REPLACE FUNCTION pgcli_demo_order() RETURNS VOID AS
CREATE OR REPLACE FUNCTION demo_order() RETURNS VOID AS
$$
BEGIN
RAISE NOTICE 'first';
@ -709,7 +709,7 @@ def test_function_notice_order(executor):
LANGUAGE plpgsql;
""",
)
result = executor.function_definition("pgcli_demo_order")
result = executor.function_definition("demo_order")
result = run(executor, "select demo_order()")
assert (