Browse Source
Merge pull request #2218 from combineads/fix_sql_for_batch_delete
Fix mysql sql for batch delete
pull/2221/head
Chris Lu
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
weed/filer/mysql/mysql_sql_gen.go
|
|
@ -38,7 +38,7 @@ func (gen *SqlGenMysql) GetSqlDelete(tableName string) string { |
|
|
|
} |
|
|
|
|
|
|
|
func (gen *SqlGenMysql) GetSqlDeleteFolderChildren(tableName string) string { |
|
|
|
return fmt.Sprintf("DELETE FROM `%s` WHERE dirhash=? AND directory=? LIMIT ?", tableName) |
|
|
|
return fmt.Sprintf("DELETE FROM `%s` WHERE dirhash=? AND directory=?", tableName) |
|
|
|
} |
|
|
|
|
|
|
|
func (gen *SqlGenMysql) GetSqlListExclusive(tableName string) string { |
|
|
|