jpacik

Results 9 comments of jpacik

DOD: Implement duration arrow buffer and update tableBuilder etc. (switch statements)

Is it valuable to be able to specify positional ***and*** named arguments? Specifically will I ever want to call a function using a mix of positional and named like so:...

@pauldix I'm still having trouble understanding the use case for mixing named and positional arguments. fn("hi", bar: "hi", asdf) seems really confusing to me. In my opinion, if it makes...

@pauldix @nathanielc just to clarify, I was not advocating for changing how pipe arguments are specified. I think pipe arguments should be treated specially as they are now. My concern...

@legomind I'll try and get this prioritized for you. We currently have some other things in progress at the moment, but I'll let you know when we start work on...

@legomind so if the dehumidifier is turned off for a period of time, currently `join` would not produce any rows for that time range. But you would like it to...

We will be addressing join's deficiencies at some point in the future. In the meantime we have added a new `join` function to the `internal/promql` package with a type signature...

Adding/subtracting durations with times will require the type system to support polymorphic literals. See #476 for a discussion. But duration or time arithmetic is already supported by the type system....

Clarification. Adding and subtracting duration values is supported by the by the type signature of `+` and `-`. Every binary arithmetic operator has the following type signature: forall ['a] ('a,...