A question about `Double` in sqldelight. I would l...
# squarelibraries
p
A question about
Double
in sqldelight. I would like to limit the decimal point to 6th place. In
SQL
I can write
Copy code
DOUBLE(3, 6)
where 3 is size of digits before decimal point and 6 is number of digits after decimal point. In
sqldelight
we have REAL, but
Copy code
REAL(3, 6)
do not compile.