Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

qgis: support QGIS #52011

Open
1 of 2 tasks
otan opened this issue Jul 28, 2020 · 4 comments
Open
1 of 2 tasks

qgis: support QGIS #52011

otan opened this issue Jul 28, 2020 · 4 comments
Labels
A-spatial Spatial work that is *not* related to builtins. C-enhancement Solution expected to add code/behavior + preserve backward-compat (pg compat issues are exception) T-spatial Spatial Team X-nostale Marks an issue/pr that should be ignored by the stale bot

Comments

@otan
Copy link
Contributor

otan commented Jul 28, 2020

Current known blockers:

Jira issue: CRDB-3989

@otan otan added A-spatial Spatial work that is *not* related to builtins. C-enhancement Solution expected to add code/behavior + preserve backward-compat (pg compat issues are exception) labels Jul 28, 2020
@cockroachdb cockroachdb deleted a comment from blathers-crl bot Jul 28, 2020
@jlinder jlinder added the T-spatial Spatial Team label Jun 16, 2021
@ajwerner
Copy link
Contributor

@otan shall we close this?

@otan
Copy link
Contributor Author

otan commented Aug 31, 2022

i haven't tried QGIS recently to know the issues after these two blockers - i'll keep it open until someone does.

@otan otan added the X-nostale Marks an issue/pr that should be ignored by the stale bot label Sep 4, 2023
@goccert25
Copy link

Hey just following up here, does cockroachdb support QGIS yet? If not is it on the roadmap?

@goccert25
Copy link

goccert25 commented Mar 6, 2024

To follow up, I tested on a M3 MacBook Pro and it didn't work (QGIS crashed). The following is what I did:
docker pull cockroachdb/cockroach:v23.2.2
then
docker run -d \ --name=roach1 \ -p 26257:26257 -p 8080:8080 \ -v "${PWD}/cockroach-data:/cockroach/cockroach-data" \ cockroachdb/cockroach:v23.2.2 start-single-node \ --insecure

then connecting to the db with docker exec -it roach1 ./cockroach sql --insecure

then seeding the db with CREATE DATABASE gis_data;

USE gis_data; CREATE TABLE locations ( id SERIAL PRIMARY KEY, name STRING, location GEOGRAPHY );

INSERT INTO locations (name, location) VALUES ('Place A', 'SRID=4326;POINT(-74.0059413 40.7127837)'), ('Place B', 'SRID=4326;POINT(-73.935242 40.730610)'), ('Place C', 'SRID=4326;POINT(-74.0060 40.7128)'), ('Place D', 'SRID=4326;POINT(-73.985655 40.748817)'), ('Place E', 'SRID=4326;POINT(-73.977622 40.763896)');

I then tried to connect with QGIS using the steps in this link (https://scdm.geography.wisc.edu/2020/12/08/spatial-database-connect-to-postgresql-postgis-through-qgis/)

and it crashed after step 3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-spatial Spatial work that is *not* related to builtins. C-enhancement Solution expected to add code/behavior + preserve backward-compat (pg compat issues are exception) T-spatial Spatial Team X-nostale Marks an issue/pr that should be ignored by the stale bot
Projects
None yet
Development

No branches or pull requests

4 participants