Skip to content

Commit

Permalink
Added limit for select all keys query
Browse files Browse the repository at this point in the history
  • Loading branch information
sirekanian committed Dec 31, 2023
1 parent eecdffb commit 384be52
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ selectKeys:
SELECT * FROM KeyEntity WHERE serverId = ?;

selectAllKeys:
SELECT * FROM KeyWithServerEntity WHERE name LIKE ?;
SELECT * FROM KeyWithServerEntity WHERE name LIKE ? LIMIT 200;

insertKey:
INSERT OR REPLACE INTO KeyEntity VALUES ?;
Expand Down

0 comments on commit 384be52

Please sign in to comment.