We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bca804a commit e71cc70Copy full SHA for e71cc70
src/database/core/PersistentConnection.ts
@@ -290,11 +290,9 @@ export class PersistentConnection extends ServerActions {
290
'".indexOn": "' + query.getQueryParams().getIndex().toString() + '"';
291
const indexPath = query.path.toString();
292
warn(
293
- 'Using an unspecified index. Consider adding ' +
294
- indexSpec +
295
- ' at ' +
296
- indexPath +
297
- ' to your security rules for better performance'
+ `Using an unspecified index. Your data will be downloaded and ` +
+ `filtered on the client. Consider adding ${indexSpec} at ` +
+ `${indexPath} to your security rules for better performance.`
298
);
299
}
300
0 commit comments