diff --git a/src/main/kotlin/fr/postgresjson/connexion/EmbedExecutable.kt b/src/main/kotlin/fr/postgresjson/connexion/EmbedExecutable.kt index 79ce38b..c34cdd4 100644 --- a/src/main/kotlin/fr/postgresjson/connexion/EmbedExecutable.kt +++ b/src/main/kotlin/fr/postgresjson/connexion/EmbedExecutable.kt @@ -112,7 +112,7 @@ sealed interface EmbedExecutable { fun perform(values: Map) { exec(values) } fun perform(vararg values: Pair) = perform(values.toMap()) - fun sendQuery(values: List = emptyList()): Int + fun sendQuery(values: List): Int fun sendQuery(values: Map): Int fun sendQuery(vararg values: Pair): Int = sendQuery(values.toMap()) }