Skip to content

Commit

Permalink
Replace call of SchemaInterface::getRawTableName() to `QuoterInterf…
Browse files Browse the repository at this point in the history
…ace::getRawTableName()`
  • Loading branch information
Tigrov committed May 10, 2024
1 parent f959dbe commit 94663f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,7 @@

- Enh #293: Implement `SqlParser` and `ExpressionBuilder` driver classes (@Tigrov)
- Chg #306: Remove parameter `$withColumn` from `Quoter::getTableNameParts()` method (@Tigrov)
- Chg #308: Replace call of `SchemaInterface::getRawTableName()` to `QuoterInterface::getRawTableName()` (@Tigrov)

## 1.2.0 March 21, 2024

Expand Down
2 changes: 1 addition & 1 deletion src/Schema.php
Expand Up @@ -907,7 +907,7 @@ private function loadTableConstraints(string $tableName, string $returnType): mi
*/
protected function getCacheKey(string $name): array
{
return array_merge([self::class], $this->generateCacheKey(), [$this->getRawTableName($name)]);
return array_merge([self::class], $this->generateCacheKey(), [$this->db->getQuoter()->getRawTableName($name)]);
}

/**
Expand Down

0 comments on commit 94663f5

Please sign in to comment.