Assert nullable on columns->at(4). Assertion was being made twice at(3).
This commit is contained in:
parent
bba65d8f35
commit
4ca664cdd3
|
@ -55,7 +55,7 @@ TEST(CreateStatementTest) {
|
|||
ASSERT_EQ(stmt->columns->at(1)->nullable, false);
|
||||
ASSERT_EQ(stmt->columns->at(2)->nullable, true);
|
||||
ASSERT_EQ(stmt->columns->at(3)->nullable, false);
|
||||
ASSERT_EQ(stmt->columns->at(3)->nullable, false);
|
||||
ASSERT_EQ(stmt->columns->at(4)->nullable, false);
|
||||
}
|
||||
|
||||
TEST(CreateAsSelectStatementTest) {
|
||||
|
|
Loading…
Reference in New Issue