sqldelight
sqldelight copied to clipboard
Support ON CONFLICT in SQLite
trafficstars
SQLDelight Version
2.0.1
SQLDelight Dialect
Android SDK 33
Describe the Bug
Fro the upsert docs, this syntax is valid:
CREATE TABLE vocabulary(word TEXT PRIMARY KEY, count INT DEFAULT 1);
INSERT INTO vocabulary(word) VALUES('jovial')
ON CONFLICT(word) DO UPDATE SET count=count+1;
Stacktrace
No response
Any updates on this one ?