Eugene Lazutkin
Eugene Lazutkin
Again, if it is considered worthwhile, I can code a PR for that like I did for `br` before.
They all return 4269. Example: ```sql SELECT public.ST_Srid(the_geom) FROM tiger.place LIMIT 1; ``` Returns: | st_srid | |----------:| | 4269 |
Obviously, `tabblock20` doesn't return anything: it is empty. (I tried it just in case).
OK. Please tell me how to do it manually. What table should I modify and how?
Well, it is not a `Point`. Usually it is a different kind, like `Multipolygon`.
It helped. The code: ```sql ALTER TABLE tiger.state ALTER COLUMN the_geom TYPE public.Geometry(Multipolygon, 4269); ALTER TABLE tiger.county ALTER COLUMN the_geom TYPE public.Geometry(Multipolygon, 4269); ALTER TABLE tiger.cousub ALTER COLUMN the_geom TYPE...
I am not sure we have a use case here: [buf.subarray([start[, end]])](https://nodejs.org/api/buffer.html#bufsubarraystart-end) "returns a new Buffer that references the same memory as the original, but offset and cropped by the...
That is strange. Conceptually it should be a pointer and two numbers like in your proposal. Would it help if I create such object in the library, so it can...
Your `Slice` was exactly what I was thinking about.
> @wrmedford: Ran a small bench across different implementations. Could you share code of your benchmark? I plan to add a benchmarking utility.