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
Kotlin Version: 1.3.21 Exposed Version: 0.13.3
Valid code:
val row = MyTable .slice( MyTable.description, MyTable.itemId ) .selectAll().first() println(row)
my_table.description=MyDesc, my_table.item_id=MyItemId
Invalid code:
val row = MyTable .slice( MyTable.description, MyTable.description, MyTable.itemId ) .selectAll().first() println(row)
my_table.description=MyDesc, my_table.item_id=MyDesc
The value of MyTable.itemId was replaced in silence.
The text was updated successfully, but these errors were encountered:
#581 Duplicated columns in the parameter list of slice() caused unexp…
6cce054
…ected value in ResultRow
No branches or pull requests
Kotlin Version: 1.3.21
Exposed Version: 0.13.3
Valid code:
Invalid code:
The value of MyTable.itemId was replaced in silence.
The text was updated successfully, but these errors were encountered: