Skip to content

Commit

Permalink
Consider system.views as system table in mongodb
Browse files Browse the repository at this point in the history
system.views is not queryable collection
  • Loading branch information
mayankvadariya authored and ebyhr committed Feb 5, 2023
1 parent 457b264 commit ca157bc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -116,7 +116,7 @@
public class MongoSession
{
private static final Logger log = Logger.get(MongoSession.class);
private static final List<String> SYSTEM_TABLES = Arrays.asList("system.indexes", "system.users", "system.version");
private static final List<String> SYSTEM_TABLES = Arrays.asList("system.indexes", "system.users", "system.version", "system.views");

private static final String TABLE_NAME_KEY = "table";
private static final String COMMENT_KEY = "comment";
Expand Down

0 comments on commit ca157bc

Please sign in to comment.