Merge "Enable cache_ok on custom sqlalchemy UUID type"

This commit is contained in:
Zuul 2022-07-23 01:31:43 +00:00 committed by Gerrit Code Review
commit d9eec803ca
1 changed files with 1 additions and 0 deletions

View File

@ -27,6 +27,7 @@ class UUID(TypeDecorator):
Copied verbatim from SQLAlchemy documentation.
"""
cache_ok = True
impl = CHAR
def load_dialect_impl(self, dialect):