File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 5
5
- Enh #320 : Minor refactoring of ` DDLQueryBuilder::getColumnDefinition() ` method (@Tigrov )
6
6
- Bug #320 : Change visibility of ` DDLQueryBuilder::getColumnDefinition() ` method to ` private ` (@Tigrov )
7
7
- Enh #321 : Implement ` SqlParser ` and ` ExpressionBuilder ` driver classes (@Tigrov )
8
+ - Chg #339 : Replace call of ` SchemaInterface::getRawTableName() ` to ` QuoterInterface::getRawTableName() ` (@Tigrov )
8
9
9
10
## 1.2.0 March 21, 2024
10
11
Original file line number Diff line number Diff line change @@ -415,7 +415,7 @@ protected function findViewNames(string $schema = ''): array
415
415
*/
416
416
protected function getCacheKey (string $ name ): array
417
417
{
418
- return array_merge ([self ::class], $ this ->generateCacheKey (), [$ this ->getRawTableName ($ name )]);
418
+ return array_merge ([self ::class], $ this ->generateCacheKey (), [$ this ->db -> getQuoter ()-> getRawTableName ($ name )]);
419
419
}
420
420
421
421
/**
You can’t perform that action at this time.
0 commit comments