Home | History | Annotate | Download | only in sql

Lines Matching full:rows

23 // columns and |row_sep| between rows.
439 size_t rows = 0;
440 EXPECT_TRUE(recovery->AutoRecoverTable("x", 0, &rows));
441 EXPECT_EQ(2u, rows);
462 size_t rows = 0;
463 EXPECT_FALSE(recovery->AutoRecoverTable("y", 0, &rows));
478 // rows. The row with 17 will get the default injected at insert
501 // defaults coming from the recovery system. The two %5 rows should
519 size_t rows = 0;
520 EXPECT_TRUE(recovery->AutoRecoverTable("x", 0, &rows));
521 EXPECT_EQ(4u, rows);
533 // Test that rows with NULL in a NOT NULL column are filtered
555 size_t rows = 0;
556 EXPECT_TRUE(recovery->AutoRecoverTable("x", 0, &rows));
557 EXPECT_EQ(1u, rows);
594 size_t rows = 0;
595 EXPECT_TRUE(recovery->AutoRecoverTable("x", 0, &rows));
596 EXPECT_EQ(2u, rows);
639 size_t rows = 0;
640 EXPECT_TRUE(recovery->AutoRecoverTable("x", 0, &rows));
641 EXPECT_EQ(3u, rows);
674 size_t rows = 0;
675 EXPECT_TRUE(recovery->AutoRecoverTable("x", 1, &rows));
676 EXPECT_EQ(2u, rows);