@kengic/uni 0.6.3-beta.12 → 0.6.3-beta.13
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.
- package/dist/util/kg.ts +1 -1
- package/package.json +1 -1
package/dist/util/kg.ts
CHANGED
|
@@ -383,7 +383,7 @@ export class Kg {
|
|
|
383
383
|
|
|
384
384
|
//region WHERE
|
|
385
385
|
// ----------------------------------------------------------------------------------------------------
|
|
386
|
-
let whereSql = `WHERE (1 = 1)${whereSqlSegment}`.
|
|
386
|
+
let whereSql = `WHERE (1 = 1)${whereSqlSegment}`.replace('(1 = 1) AND ', '');
|
|
387
387
|
whereSql = encodeURIComponent(whereSql);
|
|
388
388
|
//endregion
|
|
389
389
|
|