You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
defget_table_list(self) ->list[Table]:
...
forrowinresponse:
...
# if column is primary keyifrow["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
The text was updated successfully, but these errors were encountered:
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:
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 classTable
(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
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
The text was updated successfully, but these errors were encountered: