CALL DOLT_MERGE now returns fast_forward and conflicts status columns (#3564)

* CALL DOLT_MERGE now returns fast_forward and conflicts columns

* fix tests

* fix sql integration tests

* fix sql-merge.bats

* pr comment
This commit is contained in:
Dhruv Sringari
2022-06-07 17:03:46 -07:00
committed by GitHub
parent 841b294841
commit 6488344abb
16 changed files with 139 additions and 126 deletions
@@ -20,7 +20,7 @@ QUERY_RESPONSE = [
{"insert into test (pk, `value`) values (1,1)": []},
{"select dolt_commit('-a', '-m', 'my commit2')": [('',)]},
{"select dolt_checkout('main')": [(0,)]},
{"select dolt_merge('mybranch')": [(1,)]},
{"select dolt_merge('mybranch')": [(0,)]},
{"select COUNT(*) FROM dolt_log": [(3,)]},
]