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

Support python uc_catalog #17

Open
chlimaferreira opened this issue Oct 16, 2024 · 2 comments
Open

Support python uc_catalog #17

chlimaferreira opened this issue Oct 16, 2024 · 2 comments

Comments

@chlimaferreira
Copy link

chlimaferreira commented Oct 16, 2024

Do you have an implementation plan to use uc_catalog with Python?

con.execute("""
INSTALL uc_catalog from core_nightly;
INSTALL delta;
LOAD delta;
LOAD uc_catalog;

    CREATE SECRET secret1 (
        TYPE S3,
        KEY_ID 'minio',
        SECRET 'minio123',
        REGION 'us-east-1',
        ENDPOINT 'localhost:9000',
        URL_STYLE 'path',
        USE_SSL 'false'

    );

    ATTACH 'my_catalog' AS my_catalog (TYPE UC_CATALOG);
    SHOW ALL TABLES;

    --select * from my_catalog.my_schema.test_table1;

"""
)

HTTPException Traceback (most recent call last)
Cell In[3], line 1
----> 1 con.execute("""
2 INSTALL uc_catalog from core_nightly; INSTALL delta; LOAD uc_catalog; LOAD delta;
3
4 """
5 )

HTTPException: HTTP Error: Failed to download extension "uc_catalog" at URL "http://nightly-extensions.duckdb.org/v1.1.2/windows_amd64/uc_catalog.duckdb_extension.gz" (HTTP 403)

Candidate extensions: "spatial", "excel", "autocomplete"

@samansmink
Copy link
Collaborator

windows is not yet supported for this extension

@nixent
Copy link

nixent commented Nov 12, 2024

@samansmink is Windows support somewhere on the roadmap?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants