Skip to content

Commit 574cd55

Browse files
committed
graphql: Fix query
1 parent ca5286d commit 574cd55

File tree

1 file changed

+1
-1
lines changed
  • graphql-server/src/queryFactory/doltgres

1 file changed

+1
-1
lines changed

graphql-server/src/queryFactory/doltgres/queries.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export const getResolveConflicts = (numTables: number) =>
102102
).join(", ")})`;
103103

104104
export const getCommitMerge = (hasAuthor = false) =>
105-
`CALL DOLT_COMMIT("-Am", $1::text${getAuthorNameString(hasAuthor, "$2::text")})`;
105+
`SELECT DOLT_COMMIT('-Am', $1::text${getAuthorNameString(hasAuthor, "$2::text")})`;
106106

107107
// TAGS
108108

0 commit comments

Comments
 (0)