Results 3 comments of XiaoYang

> we have DBTableController for list tables, what is the expected behaivior for DBTableController after current change? The API in `DBTableController` and `DBTableControllerV1` will be kept as before. The **list**...

I can reproduce this issue by executing: ```sql create or replace type ty is object(a int, b varchar2(10)); create or replace type ty1 is table of ty; ``` or ```sql...

More information: - These two SQLs can execute successfully in DMS. - You can walk around by declare delimiter as following: ```sql delimiter // create or replace type ty is...