Hongxu Ma created HAWQ-1365:
-------------------------------
Summary: Print out detailed schema information for tables which
the user doesn't have privileges
Key: HAWQ-1365
URL: https://issues.apache.org/jira/browse/HAWQ-1365
Project: Apache HAWQ
Issue Type: Improvement
Reporter: Hongxu Ma
Assignee: Ed Espino
Fix For: 2.2.0.0-incubating
Business Value:
Current output information for the table name which user doesn't have
privileges doesn't include schema output. We should print out the schema
information out, otherwise it's difficult for users to identify the identified
table.
{code}
postgres=# select * from public.a, s1.a;
ERROR: permission denied for relation(s): a, a
{code}
Criteria:
Should print out the schema information for the table.
{code}
postgres=# select * from public.a, s1.a;
ERROR: permission denied for relation(s): public.a, s1.a
{code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)