test is added

This commit is contained in:
Yakov Olkhovskiy 2022-06-09 13:51:50 -04:00
parent 11e6b37ea6
commit 5a08ebd213
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,9 @@
1 A
2 AA
3 AAA
4 AAAA
5 Hello
6 HelloA
7 HelloAA
8 HelloAAA
9 HelloAAAA

View File

@ -0,0 +1,4 @@
SELECT x, s FROM (
SELECT 5 AS x, 'Hello' AS s ORDER BY x WITH FILL FROM 1 TO 10 INTERPOLATE (s AS s||'A')
) ORDER BY s;