diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test-e2e.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-e2e.cpp b/test/test-e2e.cpp index 67436ab..e16627a 100644 --- a/test/test-e2e.cpp +++ b/test/test-e2e.cpp @@ -322,7 +322,7 @@ replication_data_type_impl(Test * test) // read test records auto rs {MyGrate::DbStmt<"SELECT val FROM testout.test ORDER BY id">::execute(&test->pqm)}; std::vector<O> outs; - vals.reserve(ROWS); + outs.reserve(ROWS); for (auto v : *rs) { outs.push_back(v[0]); } |