inspektor-dev / inspektor

Inspektor is a protocol-aware proxy that is used to enforce access policies👮

Home Page:https://inspektor.cloud

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

table names are prefixed while using wild card select

poonai opened this issue · comments

Table names are prefixed if any column is considered as protected column.

eg:

select * from actors -> select actor.ssn as NULL, actor.first_name from actors

This may retrieve the results. But it's breaking orm clients.

Expected Behaviour:

Table name should not be prefixed if not required.