| 40 | } |
| 41 | |
| 42 | String getQuotedTable(const String & database, const String & table) |
| 43 | { |
| 44 | if (database.empty()) |
| 45 | return backQuoteIfNeed(table); |
| 46 | |
| 47 | return backQuoteIfNeed(database) + "." + backQuoteIfNeed(table); |
| 48 | } |
| 49 | |
| 50 | String getQuotedTable(const DatabaseAndTableName & db_and_table) |
| 51 | { |
no test coverage detected