Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions explorer/schema.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from django.core.cache import cache
from django.db import ProgrammingError
from django.db import NotSupportedError, ProgrammingError

from explorer.app_settings import (
EXPLORER_SCHEMA_EXCLUDE_TABLE_PREFIXES,
Expand Down Expand Up @@ -108,7 +108,7 @@ def build_schema_info(db_connection):
cursor, table_name
)
# Issue 675. A connection maybe not have permissions to access some tables in the DB.
except ProgrammingError:
except (NotSupportedError, ProgrammingError):
continue

td = []
Expand Down