Skip to content

Commit

Permalink
Model SQLStatementInformation as non-data class to avoid needing to o…
Browse files Browse the repository at this point in the history
…verride equals et al.

Signed-off-by: Kenneth J. Shackleton <[email protected]>
  • Loading branch information
kennethshackleton committed Apr 23, 2024
1 parent ac3bd60 commit 99ebb3d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ internal class SQLStatement private constructor(
}
}

@Suppress("ArrayInDataClass")
internal data class SQLStatementInformation(
@Suppress("UseDataClass")
internal class SQLStatementInformation(
val isReadOnly: Boolean,
val parameterCount: Int,
val columnNames: Array<out String>
Expand Down

0 comments on commit 99ebb3d

Please sign in to comment.