Skip to content

Commit

Permalink
Stringify column name in data array.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Sep 2, 2016
1 parent 8065a18 commit cddaaa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/Database/QueryTest.php
Expand Up @@ -2942,7 +2942,7 @@ public function testInsertQuoteColumns()
$query->insert([123])
->into('articles')
->values([
123 => 'mark',
'123' => 'mark',
]);
$result = $query->sql();
$this->assertQuotedQuery(
Expand Down

0 comments on commit cddaaa4

Please sign in to comment.