You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATETABLEtransactionEntity (
id INTEGERPRIMARY KEY AUTOINCREMENT,
transactionDate INTEGERAS ZonedDateTime NOT NULL,
transactionType TEXTNOT NULL,
accountId INTEGER,
categoryId INTEGER,
);
SELECT*FROM transactionEntity
WHERE :categoryIds IS NOT NULLAND categoryId IN :categoryIds;
Description
If :categoryIds is a list, this leads to an error since the first appearance is interpreted as a Long while the second is interpreted as Collection<Long?>.