dimsuz
10/16/2023, 11:57 AMCREATE TABLE AnalysisHistoryEntry (
id INTEGER NOT NULL PRIMARY KEY,
...
)
insertOrReplace:
INSERT OR REPLACE
INTO AnalysisHistoryEntry
VALUES (?, ?, ?, ?, ?, ?, ?);
generates:
public fun insertOrReplace(
id: Long?,
...
)
Is this a bug?
Seeing this in all my tables.hfhbd
10/16/2023, 12:55 PMAndrew O'Hara
10/16/2023, 4:38 PMinsertOrReplace:
INSERT OR REPLACE
INTO AnalysisHistoryEntry (id, foo, bar, baz)
VALUES (:id, :foo, :bar, :baz);
dimsuz
10/17/2023, 11:07 AMAndrew O'Hara
10/17/2023, 4:07 PM