I'm using MySQL. After updating to 1.5.3, for a co...
# squarelibraries
p
I'm using MySQL. After updating to 1.5.3, for a column called
value
kotlin generated name is
value_
. In 1.5.2 it was
value
SQL code:
Copy code
CREATE TABLE Test (
    value INTEGER NOT NULL
);
Produces:
Copy code
public data class Test(
  public val value_: Int
) {
  public override fun toString(): String = """
  |Test [
  |  value_: $value_
  |]
  """.trimMargin()
}
Is this expected behaviour?
👌 1
p
Best commit description ever 😛