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()` (#348)
  • Loading branch information
Tigrov committed May 10, 2024
1 parent e047dd4 commit 19c98cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 2.0.0 under development

- Enh #336: Implement `SqlParser` and `ExpressionBuilder` driver classes (@Tigrov)
- Chg #348: Replace call of `SchemaInterface::getRawTableName()` to `QuoterInterface::getRawTableName()` (@Tigrov)

## 1.3.0 March 21, 2024

Expand Down
2 changes: 1 addition & 1 deletion src/Schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -1067,7 +1067,7 @@ private function createColumnSchema(string $name): ColumnSchema
*/
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 19c98cd

Please sign in to comment.