leppaott

Results 51 comments of leppaott

Would be nice to have this ignore ones with type guards if possible indeed because the rule seems useful. There seems to be a new PR to fix this on...

This would be nice to have in a new release? :pray: @Nevon @tulios

Better check how you install dependencies on docker for an example? Assuming you build from source? Is there pre-built package available on OS or could update some packages? Just today...

@davidkohn88 any workararounds as this quite related to https://github.com/timescale/timescaledb/issues/1324 I've understood state_agg only calculates deltas *within* the bucket. So original post makes sense. However seems to me that even if...

@omidh28 > I'm getting Argument of type '"query"' is not assignable to parameter of type '"beforeExit"'.ts(2345). This would be nice to get fixed? Examples provided on docs don't work without...

We just update from 4.2.1 into 4.3.1 and get this? We do have ``` "workspaces": [ "../common" ], ``` in the same package.json where `prisma generate` fails but this shouldn't...

related to https://github.com/drwpow/openapi-typescript/issues/1441 as well

`interpolated_duration_in` should work https://github.com/timescale/timescaledb-toolkit/blob/main/extension/src/state_aggregate.rs#L2383 almost works. Well I guess it does work except we can't gapfill more buckets where the interpolation would work. EDIT: Ok figured it out. We can...

An example from https://github.com/timescale/timescaledb-toolkit/blob/main/extension/src/state_aggregate.rs#L2021 r#"INSERT INTO test VALUES ('2020-01-01 00:00:00+00', 'one'), ('2020-01-01 00:02:00+00', 'one'), ('2020-01-01 00:01:00+00', 'two'), ('2020-12-31 00:02:00+00', 'end') where in the real world there is state `end`? Compact_state_agg...

Quick modification on your post, forgot that it was hierarchical caggs: ``` CREATE TABLE temperature ( time timestamptz NOT NULL, sensor int, value float ); SELECT create_hypertable('temperature', 'time'); INSERT INTO...