Github user gatorsmile commented on the issue:

    https://github.com/apache/spark/pull/14955
  
    Also confirmed Oracle does not allow it too. When we rename a table, the 
table must belong to the current owner. 
    
    ```
    SQL> rename system.t1 to system.t2;
    rename system.t1 to system.t2
           *
    ERROR at line 1:
    ORA-01765: specifying owner's name of the table is not allowed
    
    SQL> rename t1 to system.t2;
    rename t1 to system.t2
                       *
    ERROR at line 1:
    ORA-01765: specifying owner's name of the table is not allowed
    
    SQL> rename t1 to t2;
    
    Table renamed.
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to