Victor Perez

Results 45 comments of Victor Perez

In case someone is still looking for this. There is a PR https://github.com/timescale/timescaledb-parallel-copy/pull/114 that adds support for idempotency. It basically adds support for what you are asking for 🎉

First of all, Thank you very much for your interest in the project and the contribution :heart: I understand why this function may be useful, but I believe it is...

Closing now to keep the repository clean, feel free to reopen

What do you thing about the generics approach? You can define the type for anything you want and use it the same way it uses strings and float64.

I added another case with a custom color struct , again, just as an example of what it can be done

And last but not least, a case to reflect null values

Damm, I'm just reading from my phone and now I understand the problem. I will think about this

One idea is ```go package main import ( "github.com/MetalBlueberry/go-plotly/graph_objects" "github.com/MetalBlueberry/go-plotly/offline" "github.com/MetalBlueberry/go-plotly/types" ) func main() { trace1 := &graph_objects.Scatter{ X: types.ArrayOK{Array: []interface{}{1, 2, 3, 4, 5, 6, 7, 8}}, Y: types.ArrayOK{Array:...

Well, it has been a while. But i finally found time and inspiration to finish this PR. I think the arrayOK implementation meets the requirements you had when you first...

Also I realised the ArrayOK is not used for X and Y values. those are data_arrays that will require a difirent implementation