Nathaniel Cook

Results 97 comments of Nathaniel Cook

@rockstar Do you have any specific thoughts? My general plan (although its not well thought out yet) is to do a complete rewrite of the REPL as its exists in...

Does the CLI currently allow for a query to be executed without the REPL? To me the REPL is an experience above and beyond running a simple query. I don't...

I think this would require most users to then use a map function to cast values to the type they want. ``` from() |> map(fn:(r) => { if exists(r:r, key:"_int_value")...

@pauldix We do not have any conditional logic at this point. So even my above example with the `if` statement is not supported yet. For the most part the functions...

Once we have `null`s we can make that the default value.

@mark-rushakoff I know you did something around fuzzing Flux a while back, Is there anything public we can reference to incorporate?

@R-Studio We are currently working on this feature. It requires some fundamental changes to how certain parts of our system interact and so its going to take a while to...

@yellowpattern No, this isn't currently on our radar. Normally you can work around the problem by doing the difference/derivative before doing any window boundaries etc. Do you have a specific...

@roshie548 Can you take a look at the SPEC for the intervals function? https://github.com/influxdata/flux/blob/master/docs/SPEC.md#intervals I think it is capable of expressing disjoint time ranges. For example the first and last...

Would a PR to re-add `From` and `From` be accepted? I have run into the exact case mentioned above where I need `ByteBuf` to implement the `From` because it is...