Home | History | Annotate | Download | only in sql

Lines Matching full:rows

26 // columns and |row_sep| between rows.
442 size_t rows = 0;
443 EXPECT_TRUE(recovery->AutoRecoverTable("x", 0, &rows));
444 EXPECT_EQ(2u, rows);
465 size_t rows = 0;
466 EXPECT_FALSE(recovery->AutoRecoverTable("y", 0, &rows));
481 // rows. The row with 17 will get the default injected at insert
504 // defaults coming from the recovery system. The two %5 rows should
522 size_t rows = 0;
523 EXPECT_TRUE(recovery->AutoRecoverTable("x", 0, &rows));
524 EXPECT_EQ(4u, rows);
536 // Test that rows with NULL in a NOT NULL column are filtered
558 size_t rows = 0;
559 EXPECT_TRUE(recovery->AutoRecoverTable("x", 0, &rows));
560 EXPECT_EQ(1u, rows);
597 size_t rows = 0;
598 EXPECT_TRUE(recovery->AutoRecoverTable("x", 0, &rows));
599 EXPECT_EQ(2u, rows);
642 size_t rows = 0;
643 EXPECT_TRUE(recovery->AutoRecoverTable("x", 0, &rows));
644 EXPECT_EQ(3u, rows);
677 size_t rows = 0;
678 EXPECT_TRUE(recovery->AutoRecoverTable("x", 1, &rows));
679 EXPECT_EQ(2u, rows);
710 size_t rows = 0;
711 EXPECT_TRUE(recovery->AutoRecoverTable("x", 0, &rows));
712 EXPECT_EQ(43u, rows);