DB IO rename dbGetQueryHash to dbBuildQueryHash, store last query hash

This commit is contained in:
Clemens Schwaighofer
2025-04-09 11:40:07 +09:00
parent 2e101d55d2
commit 1c66ee34a1
4 changed files with 43 additions and 29 deletions

View File

@@ -379,9 +379,9 @@ interface SqlFunctions
* Undocumented function
*
* @param string $query
* @return int
* @return array<string>
*/
public function __dbCountQueryParams(string $query): int;
public function __dbGetQueryParams(string $query): array;
}
// __END__