Skip to content

Commit

Permalink
Add Add line to CHANGELOG.md, update test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Sep 26, 2023
1 parent b824b71 commit 194aa67
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
## 1.1.2 under development

- Bug #751: Fix collected debug actions (@xepozz)
- Enh #756: Refactor Quoter (@Tigrov)
- Bug #756: Fix `quoteSql()` for sql containing table with prefix (@Tigrov)
- Bug #756: Fix `getTableNameParts()` for cases when different quotes for tables and columns (@Tigrov)
- Bug #756: Fix `quoteTableName()` for sub-query with alias (@Tigrov)

## 1.1.1 August 16, 2023

Expand Down
2 changes: 1 addition & 1 deletion tests/Db/Schema/QuoterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public function testQuoteSqlWithTablePrefix(): void

public function testQuoteTableNameWithQueryAlias()
{
$quoter = new Quoter('`', '`', 'prefix_');
$quoter = new Quoter('`', '`');
$name = '(SELECT * FROM table) alias';

$this->assertSame($name, $quoter->quoteTableName($name));
Expand Down

0 comments on commit 194aa67

Please sign in to comment.