NOTE(renming):: we should avoid using this function since it didn't handle catalog correctly.
| 450 | |
| 451 | // NOTE(renming):: we should avoid using this function since it didn't handle catalog correctly. |
| 452 | void ASTSelectQuery::replaceDatabaseAndTable(const String & database_name, const String & table_name) |
| 453 | { |
| 454 | assert(database_name != "_temporary_and_external_tables"); |
| 455 | replaceDatabaseAndTable(StorageID(database_name, table_name)); |
| 456 | } |
| 457 | |
| 458 | void ASTSelectQuery::replaceDatabaseAndTable(const StorageID & table_id) |
| 459 | { |
no test coverage detected