You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any functionality that is specific to the external DB requirements should take place within the adapters. The Relation object should not handle quoting since that varies across DB flavors.
Also, the Relation.quoted function doesn't work. The all({val.isupper(), val.islower()}) located here will always return False
Who does this impact?
SnowShu will actually support quoting
Reducing the number of objects connected with external dependencies should make maintaining and contributing easier.
The text was updated successfully, but these errors were encountered:
Why?
Any functionality that is specific to the external DB requirements should take place within the adapters. The
Relation
object should not handle quoting since that varies across DB flavors.Also, the
Relation.quoted
function doesn't work. Theall({val.isupper(), val.islower()})
located here will always returnFalse
Who does this impact?
The text was updated successfully, but these errors were encountered: