mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Fix NOT IN reserved names for status
This commit is contained in:
parent
b88ef81239
commit
0faa96658c
1 changed files with 4 additions and 0 deletions
|
|
@ -2297,6 +2297,10 @@ func subqueryAppleDeclarationStatus() (string, []any, error) {
|
|||
if err != nil {
|
||||
return "", nil, fmt.Errorf("subqueryAppleDeclarationStatus: %w", err)
|
||||
}
|
||||
query, args, err = sqlx.In(query, args...)
|
||||
if err != nil {
|
||||
return "", nil, fmt.Errorf("subqueryAppleDeclarationStatus resolve IN: %w", err)
|
||||
}
|
||||
|
||||
return query, args, nil
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue