Pascal Betz

Results 16 comments of Pascal Betz
trafficstars

**Begin/Endless Ranges** Postgres supports "infinite" values for lower/upper boundary. This corresponds to begin/endless Ranges in Crystal. E.g.: `[, 50)` => `nil..50` This makes the Range that gets created `Range(T |...

@will I plan on fixing the build and adding multiranges (Postgres 14) support if this can get merged. Let me know what you think.

I can work on this, if it is stalled. Got a prototype working, need some guidance though.

Should be possible by supplying a Proc like so: https://github.com/jtrupiano/rack-rewrite#arbitrary-rewriting

Same for me: ``` ➜ pgloader --version pgloader version "3.6.2" compiled with SBCL 2.0.11 ``` Happends when I do ``` ➜ pgloader -E ``` or use `WITH ENCODING` Installed via...

As a workaround i use `iconv` ``` iconv -f iso-8859-1 -t utf-8 input.csv > output.csv ``` to convert from iso-8859-1 to utf8 (or whatever your input/putput encodings are)

Hi I'm struggling with this as well. Is there a way to influence the ordering on the cross axis? Assuming I have a "UD" hierarchical layout, I could solve my...

How about providing these functionalities through lookup strategy classes? I.e. something like this: ``` # Failover to maxmind if google times out failover = new FailoverLookupStrategy([:google, :maxmind], :failover_on_timeout => true,...

@alexreisner Thanks. Some more Lookup Strategies could include "round robin" (to use multiple free plans) and crazy stuff where you select a lookup by time. If geocoder provides for a...

@sayap i think this can already be achieved by instantiating the lookups yourself. The static references ar just needed for the "hey it works out of the box" stuff like...