check permissions on range table
| 2064 | |
| 2065 | // check permissions on range table |
| 2066 | void |
| 2067 | gpdb::CheckRTPermissions(List *rtable) |
| 2068 | { |
| 2069 | GP_WRAP_START; |
| 2070 | { |
| 2071 | ExecCheckRTPerms(rtable, true); |
| 2072 | return; |
| 2073 | } |
| 2074 | GP_WRAP_END; |
| 2075 | } |
| 2076 | |
| 2077 | |
| 2078 | // check that a table doesn't have UPDATE triggers. |
nothing calls this directly
no test coverage detected