koskimas
Inconsistent Typing of NUMERIC Fields with jsonBuildObject
The database + the driver are responsible for data types and conversions. Kysely never touches the output.
On type level, we also don't know your
string
type is numeric and will get turned into a number by the database JSON functions.10 replies
AggregateFunctionBuilder inside a SUM
This also works if you really want to use the literal there https://kyse.link/mSLWJ
8 replies
AggregateFunctionBuilder inside a SUM
But you can just swap the multiplication around and there's no need to use
eb.lit
https://kyse.link/pnjEU8 replies
AggregateFunctionBuilder inside a SUM
Here you go https://kyse.link/X1Vxc
Our types are a bit too strict and give the type
100
instead of number
for eb.lit(100)
8 replies
Query result type mismatch
I implemented
selectAll
that way because I think some dialects actually select the parent columns as well if you use *
. But I might've been wrong about that and it's actually just implemented wrong.
But It's better to use table.*
than *
anyway. It's more specific and often makes the query easier to read.7 replies