fix: ListTag not support omit params (#2366)

fix ListTag not support omit params
pull/2369/head
Athurg Gooth 1 year ago committed by GitHub
parent c00dac1bbf
commit 425b43b3bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -18,7 +18,12 @@ func (d *DB) UpsertTag(ctx context.Context, upsert *store.Tag) (*store.Tag, erro
}
func (d *DB) ListTags(ctx context.Context, find *store.FindTag) ([]*store.Tag, error) {
where, args := []string{"`creator_id` = ?"}, []any{find.CreatorID}
where, args := []string{"1 = 1"}, []any{}
if find.CreatorID != 0 {
where, args = append(where, "`creator_id` = ?"), append(args, find.CreatorID)
}
query := "SELECT `name`, `creator_id` FROM `tag` WHERE " + strings.Join(where, " AND ") + " ORDER BY name ASC"
rows, err := d.db.QueryContext(ctx, query, args...)
if err != nil {

@ -27,7 +27,12 @@ func (d *DB) UpsertTag(ctx context.Context, upsert *store.Tag) (*store.Tag, erro
}
func (d *DB) ListTags(ctx context.Context, find *store.FindTag) ([]*store.Tag, error) {
where, args := []string{"creator_id = ?"}, []any{find.CreatorID}
where, args := []string{"1 = 1"}, []any{}
if find.CreatorID != 0 {
where, args = append(where, "`creator_id` = ?"), append(args, find.CreatorID)
}
query := `
SELECT
name,

Loading…
Cancel
Save