WIP: Compiled SQL function #33

Draft
flecomte wants to merge 37 commits from compiled_sql_function into master
Showing only changes of commit ee89ffcb1d - Show all commits

View File

@@ -55,7 +55,7 @@ class Function(
fun getDefinition(): String { fun getDefinition(): String {
return parameters return parameters
.filter { it.direction == Parameter.Direction.IN } .filter { it.direction == Parameter.Direction.IN }
.joinToString(", ") { "${it.name} ${it.type}" } .joinToString(", ") { it.type }
.let { "$name ($it)" } .let { "$name ($it)" }
} }