Skip to content

Commit 5c9a1ee

Browse files
committed
Add skipped test for function parameter aliases
1 parent 5d5f55f commit 5c9a1ee

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

test/proc/declare_block.test.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,17 @@ describe("DECLARE..BEGIN..END", () => {
6363
END
6464
`);
6565
});
66+
67+
it.skip("supports declaring aliases for function parameters", () => {
68+
testWc(`
69+
DECLARE
70+
name1 ALIAS FOR $1;
71+
name2 ALIAS FOR $2;
72+
BEGIN
73+
SELECT 1;
74+
END
75+
`);
76+
});
6677
});
6778

6879
dialect(["sqlite", "bigquery", "postgresql", "mysql", "mariadb"], () => {

0 commit comments

Comments
 (0)