Version: 17.0.0-alpha-32
Build #: 45476
Build Date: 2015-Aug-27 03:04:26 PM
Operating Environment: Windows 7 (6.1, amd64) / Cp1252 / en / US / Oracle Corporation 1.8.0_40-b26
Memory: Max=704,643,072; Total=370,671,616; Free=289,453,448; CPUs=8
Steps to reproduce:
Connect to SAP HANA
Craete a User and Table:
CREATE USER WORKER
PASSWORD "<password>"
VALID FROM '2015-08-24 09:28:58.285' UNTIL FOREVER
GO
GRANT "PUBLIC" TO WORKER
GO
CREATE ROW TABLE "test" (
"c1" VARCHAR(25),
"c2" VARCHAR(25)
)
UNLOAD PRIORITY 5
GO
Go to Table test and Select Alter Table
Go to Permissions Tab in Alter Table window
Grant some permission to WORKER user
Click on Alter
Table altered successfully.
Now Open Table properties window and look for Permissions
Actual Result: Given permissions does not display in Table Properties window.
Observation: This is also observed for View,Procedure,Sequences and Functions.
I reworked the objectpermissions extraction and forgot to return the sql statement. will work now.