mythix-orm 1.4.1 → 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -860,8 +860,9 @@ class QueryGeneratorBase {
|
|
|
860
860
|
return `SUM(${escapedFieldName})`;
|
|
861
861
|
}
|
|
862
862
|
|
|
863
|
+
// eslint-disable-next-line no-unused-vars
|
|
863
864
|
toConnectionString(queryEngine, options) {
|
|
864
|
-
return
|
|
865
|
+
return '<not supported by connection>';
|
|
865
866
|
}
|
|
866
867
|
}
|
|
867
868
|
|