add selector functionality to generate script

This commit is contained in:
2021-08-28 19:00:49 +02:00
parent 4ec28e6064
commit a63076c07c
4 changed files with 57 additions and 19 deletions

View File

@ -10,6 +10,14 @@ SELECT
,$column.name
#end for
FROM ${table.name}_t
#if $table.selectors
ORDER BY
#set $sep = ""
#for $selector in $table.selectors
$sep$selector
#set $sep = ","
#end for
#end if
""",
"params": ()
}