Skip to content

Commit

Permalink
Fixed SQL query that caused the runtime error
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanRuzavin committed Jul 30, 2024
1 parent 7d70268 commit b894b5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/recursive_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ def query_database(changes_dict):
FROM SDKToDevice
INNER JOIN Devices ON SDKToDevice.device_uid = Devices.uid
WHERE SDKToDevice.sdk_uid = 'mikrosdk_v{sdk_version}'
AND Devices.sdk_support = '1';
AND Devices.sdk_support = '1'
AND SDKToDevice.device_uid NOT LIKE '%PIM%'
AND SDKToDevice.device_uid NOT LIKE '%CARD%'
AND SDKToDevice.device_uid NOT LIKE '%SPARKFUN%'
Expand Down

0 comments on commit b894b5f

Please sign in to comment.