StanleyP

Results 10 comments of StanleyP

Just FYI as I am experimenting with TDIGEST I quickly hacked function to convert TDIGEST to DOUBLE PRECISION[], where `[0,$count,$compression,$centroids(,$centroid,$centroid_count)+]`. With this function I will be able to fetch TDIGESTs...

Thanks for the reply! The API for trimmed means would be really great and maybe more people would appreciate it:) As for the serialization of TDIGEST to DOUBLE PRECISION[] you...

Ad cast and trimmed mean: great news, thank you very much! Will try to test it ASAP and let you know... Ad crossfilter: no, crossfilter does not support tdigest out...

I tried the json-output branch against official docker image postgres:12.4 and I can confirm that it builds, installs and works fine. For my use case it would be very beneficial...

Yes, new version also builds, installs and works fine on official docker postgres:12.4. I can confirm that trimmed means can now be applied to pre-calculated TDIGESTs and CAST to JSON...

This was really unfortunate change of behaviour, broke a lot of scripting in unpredictable way for my project. I suggest to avoid any automagic (detecting output format depending on input...

Here my patch: ``` diff --git a/backend/ftp/ftp.go b/backend/ftp/ftp.go index 01d686c8e..0da6d14be 100644 --- a/backend/ftp/ftp.go +++ b/backend/ftp/ftp.go @@ -4,11 +4,13 @@ package ftp import ( "context" "crypto/tls" + "crypto/x509" "errors" "fmt" "io"...

I added option for ftp backend to specify its own CA cert. It would be also very nice if all backends that utilize `fshttp.` have some common mechanism to specify...

Thanks for the tip, customizing `tls.Config` initialization might be the right way. I'll give it a try later and be back with the patch:)

Still using the patch I posted above, seems to work on rclone version 1.61.1. @bemoody