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?>.
The text was updated successfully, but these errors were encountered:
Failing ANSI SQL
Description
If
:categoryIds
is a list, this leads to an error since the first appearance is interpreted as aLong
while the second is interpreted asCollection<Long?>
.The text was updated successfully, but these errors were encountered: