Skip to content

Support sqlDelight 2.0.0-alpha04

Choose a tag to compare

@hfhbd hfhbd released this 05 Oct 08:42
· 226 commits to main since this release
fc8e45f

Known Issue

insert: 
INSERT INTO foo VALUES ?;

This statement does not work anymore, as a workaround until this issue is fixed you have to specify the columns explicitly:

insert: 
INSERT INTO foo VALUES (?, ?, ?, ?);

What's Changed

Full Changelog: v0.0.1...v0.0.2