Zacharias Knudsen
Zacharias Knudsen
Hi there! This is related to #44 and mostly intended to initiate a discussion about integers larger than `MAX_SAFE_INTEGER`. It is also the result of me trying to figure out...
### Describe your environment * Operating System version: Linux 5.7.5-arch1-1 x86_64 * Browser version: Firefox 79.0b3 (64-bit) * Firebase SDK version: 7.15.5 * Firebase Product: auth ### Describe the problem...
The populate exchange is causing TypeErrors after upgrading from `0.1.8`. I've made a [sandbox reproducing the issue](https://codesandbox.io/s/adoring-mcclintock-kocwy?file=/src/Problem.js). It only throws when using a fragment with nested fields. If I remove...
I'm implementing (SP-)GiST index support for our PostgreSQL bindings and I find myself copying over macros for inspecting and manipulating index digits and resolution. I need these because I'm encoding...
This PR is for aligning with H3 core v4, while they work on finalizing naming and APIs. I've renamed functions in SQL and C, as well as updated tests. Deprecated...
Replaces #7. Part of #5. I have closed the old PR which contained code for both GiST and SP-GiST, splitting it into two separate PRs. Currently the tests do not...
This is an experiment using CMake instead of PGXS (since CMake is already a hard dependency from H3), to make it easier to build h3-pg for Windows.
GiST support
Replaces #7. Part of #5. References: * [GiST bible](http://www.sai.msu.su/~megera/postgres/gist/) * PostGIS implementation (gserialized_gist*.* a bit spread over [here](https://github.com/postgis/postgis/tree/master/libpgcommon) and [here](https://github.com/postgis/postgis/tree/master/postgis)). I have closed the old PR which contained code for...
We should support GiST and SP-GiST indexes for operations like contains and contained by. Ongoing work in separate PRs: * GiST in #42 * SP-GiST in #43
Resolves #101. This enforces string input as suggested by @dougwilson. Two considerations: * Is input a string if wrapped in `String` constructor? I suggest *no*, as do [Node](https://github.com/nodejs/node/blob/a0e2c6d2843ea6e37035a949827cdcc7949026d6/lib/internal/validators.js#L112). That is...