From d15014960f2998853ce88270296434082eed55db Mon Sep 17 00:00:00 2001 From: Matthew Gamble Date: Sun, 16 Apr 2017 11:51:35 +1000 Subject: [PATCH] Add "table dot star" assertion to quoter test --- tests/Common/QuoterTest.php | 4 ++++ 1 file changed, 4 insertions(+) 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()