cds-dbs
cds-dbs copied to clipboard
test: align sqlite with typed databases on invalid expressions
It is not allowed in HANA
or Postgres
to use the +
operator on the boolean
data type. As SQLite
does not have a boolean
data type it is allowed to have the +
operator as the result of an comparison operator is 1 || 0
. Which is an Integer
and can be added to another Integer
.