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
{{ message }}
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
Currently, a user posting to /api/v1/query/{repo_base}/{repo_name}/ must also specify the repo_name in their query string. For example,
select * from repo_name.table rather than select * from repo.table
This is a limitation row level security. The trouble is that the RLS SQL parser has no way of knowing what schemas your query will be executed on unless it's specified with a period.
To fix this, we'd probably need to put a query parser and rewriter into the datahub manager.
It is useful to developers though, since it keeps their code portable.
The text was updated successfully, but these errors were encountered:
Currently, a user posting to /api/v1/query/{repo_base}/{repo_name}/ must also specify the repo_name in their query string. For example,
select * from repo_name.table
rather thanselect * from repo.table
This is a limitation row level security. The trouble is that the RLS SQL parser has no way of knowing what schemas your query will be executed on unless it's specified with a period.
To fix this, we'd probably need to put a query parser and rewriter into the datahub manager.
It is useful to developers though, since it keeps their code portable.
The text was updated successfully, but these errors were encountered: