We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
countDistinct was introduced in version 1.1.3. But i couldn't find a mapper function for Kotlin.
countDistinct
Currently i can make a work around by using SelectCompleter like this.
SelectCompleter
fun countDistinct(mapper: (SelectStatementProvider) -> Long, column: BasicColumn, table: SqlTable, completer: SelectCompleter) = mapper(select(countDistinct(column)).from(table, completer))
But it would be nice to have an official implementation using KotlinCountBuilder. :)
KotlinCountBuilder
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
countDistinct
was introduced in version 1.1.3. But i couldn't find a mapper function for Kotlin.Currently i can make a work around by using
SelectCompleter
like this.But it would be nice to have an official implementation using
KotlinCountBuilder
. :)The text was updated successfully, but these errors were encountered: