Hello! I’m trying to use Exposed with PostgreSQL a...
# exposed
f
Hello! I’m trying to use Exposed with PostgreSQL and keep getting this exception:
Exception in thread "main" java.lang.NoSuchMethodError: 'void kotlin.jvm.internal.PropertyReference1Impl.<init>(java.lang.Class, java.lang.String, java.lang.String, int)'.
I have simple IntIdTable: 
Copy code
object Items : IntIdTable() {
  override val primaryKey = PrimaryKey(id)
  val category = reference("category", Categories)
  val name: Column<String> = varchar("name", 200)
  val description: Column<String?> = text("description").nullable()
  val imageLink: Column<String?> = varchar("img", 200).nullable()
  val price: Column<BigDecimal?> = decimal("price", 9, 2).nullable()
  val isHidden: Column<Boolean> = bool("hide").default(false)
}
Query I’m trying to use is: 
Copy code
transaction {
  Items.selectAll()
}