Removed deprecated dolt functions

This commit is contained in:
Daylon Wilkins
2023-01-03 00:20:02 -08:00
parent 0695d7a273
commit 8aeb1c659e
82 changed files with 3040 additions and 3943 deletions

View File

@@ -33,14 +33,14 @@ std::string queries[QUERIES_SIZE] =
"select * from test",
"insert into test (pk, `value`) values (0,0)",
"select * from test",
"select dolt_add('-A');",
"select dolt_commit('-m', 'my commit')",
"call dolt_add('-A');",
"call dolt_commit('-m', 'my commit')",
"select COUNT(*) FROM dolt_log",
"select dolt_checkout('-b', 'mybranch')",
"call dolt_checkout('-b', 'mybranch')",
"insert into test (pk, `value`) values (1,1)",
"select dolt_commit('-a', '-m', 'my commit2')",
"select dolt_checkout('main')",
"select dolt_merge('mybranch')",
"call dolt_commit('-a', '-m', 'my commit2')",
"call dolt_checkout('main')",
"call dolt_merge('mybranch')",
"select COUNT(*) FROM dolt_log",
};