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

SQL primary key detenction and composite key management #1105

Open
yalexbadan opened this issue Mar 25, 2025 · 1 comment
Open

SQL primary key detenction and composite key management #1105

yalexbadan opened this issue Mar 25, 2025 · 1 comment
Labels
bug Something isn't working

Comments

@yalexbadan
Copy link

yalexbadan commented Mar 25, 2025

Bug description
Trying the product using the compose defined in docker-compose.yaml, I noticed that primary keys was not detected for PostgreSQL connections.
Investigating on postgres.py I noticed that primary keys are not manged (same for Oracle), while the implementations for MySql and MsSql consider only the last detected column in composite primary key:

def get_table_list(self) -> list[Table]:
  ...      
  for row in response:
    ...   
    # if column is primary key
    if row["column_key"] == "PRI":
      unique_tables[schema_table].primaryKey = row["column_name"]

The if at the end of for loops takes only the last detected column.
I don't know Trino nor Snowflakes to determine if both implementations are affected from the same problem.

How to Reproduce
Run the ibis-server, and try to invoke the /v2/connector/{dbms}/metadata/tables endpoints for all the connectors.

Expected behavior
In my proposal, the primaryKey field of class Table (dto.py) should be a list of strings, with all fields belonging to the key.

Desktop (please complete the following information):
Test were perfomed using only docker images

Wren AI Information

  • Versions:
    • WREN_PRODUCT_VERSION=0.17.0
    • WREN_ENGINE_VERSION=0.14.8
    • WREN_AI_SERVICE_VERSION=0.17.1
    • IBIS_SERVER_VERSION=0.14.8
    • WREN_UI_VERSION=0.22.1
    • WREN_BOOTSTRAP_VERSION=0.1.5
@yalexbadan
Copy link
Author

I opened PR #1106 with an implementation proposal

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant