Lines Matching refs:b2
171 WriteBatch b1, b2; in TEST_F() local
173 WriteBatchInternal::SetSequence(&b2, 300); in TEST_F()
174 WriteBatchInternal::Append(&b1, &b2); in TEST_F()
178 b2.Put("a", "va"); in TEST_F()
179 WriteBatchInternal::Append(&b1, &b2); in TEST_F()
183 b2.Clear(); in TEST_F()
184 b2.Put("b", "vb"); in TEST_F()
185 WriteBatchInternal::Append(&b1, &b2); in TEST_F()
190 b2.Delete("foo"); in TEST_F()
191 WriteBatchInternal::Append(&b1, &b2); in TEST_F()
198 b2.Clear(); in TEST_F()
199 b2.Put("c", "cc"); in TEST_F()
200 b2.Put("d", "dd"); in TEST_F()
201 b2.MarkWalTerminationPoint(); in TEST_F()
202 b2.Put("e", "ee"); in TEST_F()
203 WriteBatchInternal::Append(&b1, &b2, /*wal only*/ true); in TEST_F()
217 PrintContents(&b2)); in TEST_F()
218 ASSERT_EQ(3u, b2.Count()); in TEST_F()