rdbms: deprecate ISQLPlatform::tableNamesN()

Change-Id: I838af610047bcb71e4155cd0e1f52a0062f6f651
This commit is contained in:
Aaron Schulz 2024-04-05 10:09:25 -07:00
parent 1695548326
commit 995cc0982e
2 changed files with 3 additions and 0 deletions

View file

@ -114,6 +114,7 @@ because of Phabricator reports.
* Using the "post" source in parameter declarations returned from
Handler::getParamSettings() is deprecated, use "body" instead.
* IMaintainableDatabase::textFieldSize() is now deprecated.
* ISQLPlatform::tableNamesN() is now deprecated.
* …
=== Other changes in 1.43 ===

View file

@ -590,6 +590,8 @@ interface ISQLPlatform {
*
* @param string ...$tables
* @return array
* @deprecated Since 1.43; if you must format table names,
* write several calls to {@link tableName}.
*/
public function tableNamesN( ...$tables );