Skip to content

Commit 4b42f68

Browse files
dialect/sql: fixed comment
1 parent 9d21fbc commit 4b42f68

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dialect/sql/builder.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -847,8 +847,7 @@ func Delete(table string) *DeleteBuilder { return &DeleteBuilder{table: table} }
847847
// Note: BATCH DELETE is only supported in YDB dialect.
848848
//
849849
// BatchDelete("/local/my_table")
850-
//
851-
// .Where(GT("Key1", 1))
850+
// .Where(GT("Key1", 1))
852851
func BatchDelete(table string) *DeleteBuilder {
853852
return &DeleteBuilder{table: table, isBatch: true}
854853
}

0 commit comments

Comments
 (0)