mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-07 19:30:22 -05:00
Removed deprecated dolt functions
This commit is contained in:
@@ -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,)]},
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user