Skip to content

Commit

Permalink
CS
Browse files Browse the repository at this point in the history
  • Loading branch information
jongotlin committed May 21, 2022
1 parent 92e1513 commit 99d3b4d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/Functional/Schema/PostgreSQL/SchemaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ public function testCreateTableWithSequenceInColumnDefinition(): void
$this->connection->executeStatement($sql);
}

$result = $this->connection->fetchAssociative('SELECT column_default FROM information_schema.columns WHERE table_name = ?', ['my_table']);
$result = $this->connection->fetchAssociative(
'SELECT column_default FROM information_schema.columns WHERE table_name = ?',
['my_table']
);

$this->assertNotFalse($result);
$this->assertEquals('nextval(\'my_table_id_seq\'::regclass)', $result['column_default']);
Expand Down

0 comments on commit 99d3b4d

Please sign in to comment.