engine
engine copied to clipboard
Numeric column type
- With configurable
precisionandscale(def.numericColumn(20, 2)). - Transported as string (
'-123456789123.456').- Currently postgres sends trailing
0filling the precision (123.450000000) - maybe Contember might transport shorter variant (123.45), or maybe make this behavior configurable.
- Currently postgres sends trailing
- Default might match JavaScript
Numberprecision (I believe that would be(17, 15)). Not sure. - Filter as numbers (
gt,lt, …). Currently works as expected. - Order as numbers. Currently works as expected.