diff --git a/tests/Common/QuoterTest.php b/tests/Common/QuoterTest.php index dd0f4c2..60bbe91 100644 --- a/tests/Common/QuoterTest.php +++ b/tests/Common/QuoterTest.php @@ -37,6 +37,10 @@ public function testQuoteName() // star dot star $actual = $this->quoter->quoteName('*.*'); $this->assertSame('*.*', $actual); + + // table dot star + $actual = $this->quoter->quoteName('table.*'); + $this->assertSame('"table".*', $actual); } public function testQuoteNamesIn()