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
@@ -16,14 +16,14 @@ QUERY_RESPONSE = [
{"select * from test; ": [(0, 0)]},
{"select * from test; ": [(0, 0)]},
# Test the Dolt SQL functions
{"select dolt_add('-A');": [(0,)]},
{"select dolt_commit('-m', 'my commit')": [('',)]},
{"call dolt_add('-A');": [(0,)]},
{"call dolt_commit('-m', 'my commit')": [('',)]},
{"select COUNT(*) FROM dolt_log": [(2,)]},
{"select dolt_checkout('-b', 'mybranch')": [(0,)]},
{"call dolt_checkout('-b', 'mybranch')": [(0,)]},
{"insert into test (pk, `value`) values (1,1)": []},
{"select dolt_commit('-a', '-m', 'my commit2')": [('',)]},
{"select dolt_checkout('main')": [(0,)]},
{"select dolt_merge('mybranch')": [(0,)]},
{"call dolt_commit('-a', '-m', 'my commit2')": [('',)]},
{"call dolt_checkout('main')": [(0,)]},
{"call dolt_merge('mybranch')": [(1,0,)]},
{"select COUNT(*) FROM dolt_log": [(3,)]},
]
@@ -9,14 +9,14 @@ QUERY_RESPONSE = [
)},
{"insert into test (pk, `value`) values (0,0)": ()},
{"select * from test": ((0, 0),)},
{"select dolt_add('-A');": ((0,),)},
{"select dolt_commit('-m', 'my commit')": (('',),)},
{"call dolt_add('-A');": ((0,),)},
{"call dolt_commit('-m', 'my commit')": (('',),)},
{"select COUNT(*) FROM dolt_log": ((2,),)},
{"select dolt_checkout('-b', 'mybranch')": ((0,),)},
{"call dolt_checkout('-b', 'mybranch')": ((0,),)},
{"insert into test (pk, `value`) values (1,1)": ()},
{"select dolt_commit('-a', '-m', 'my commit2')": (('',),)},
{"select dolt_checkout('main')": ((0,),)},
{"select dolt_merge('mybranch')": ((0,),)},
{"call dolt_commit('-a', '-m', 'my commit2')": (('',),)},
{"call dolt_checkout('main')": ((0,),)},
{"call dolt_merge('mybranch')": ((1,0,),)},
{"select COUNT(*) FROM dolt_log": ((3,),)},
]
@@ -13,14 +13,14 @@ QUERY_RESPONSE = [
]},
{"insert into test (pk, `value`) values (0,0)": ()},
{"select * from test": [(0, 0)]},
{"select dolt_add('-A');": [(0,)]},
{"select dolt_commit('-m', 'my commit')": [('',)]},
{"call dolt_add('-A');": [(0,)]},
{"call dolt_commit('-m', 'my commit')": [('',)]},
{"select COUNT(*) FROM dolt_log": [(2,)]},
{"select dolt_checkout('-b', 'mybranch')": [(0,)]},
{"call dolt_checkout('-b', 'mybranch')": [(0,)]},
{"insert into test (pk, `value`) values (1,1)": []},
{"select dolt_commit('-a', '-m', 'my commit2')": [('',)]},
{"select dolt_checkout('main')": [(0,)]},
{"select dolt_merge('mybranch')": [(0,)]},
{"call dolt_commit('-a', '-m', 'my commit2')": [('',)]},
{"call dolt_checkout('main')": [(0,)]},
{"call dolt_merge('mybranch')": [(1,0,)]},
{"select COUNT(*) FROM dolt_log": [(3,)]},
]