```val totalRows: Long = resultSet.totalRows // ac...
# announcements
r
Copy code
val totalRows: Long = resultSet.totalRows // actually primitive long (big query java sdk)

if (totalRows == 0) { // doesn't compile
if (totalRows < 1) { // compiles
if (totalRows == 0L) { // compiles