@biref/scanner 0.1.0 → 0.1.1

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/index.cjs CHANGED
@@ -935,10 +935,10 @@ var MySQLQueryEngine = class {
935
935
  sql += ` ORDER BY ${orderPieces.join(", ")}`;
936
936
  }
937
937
  if (spec.limit !== void 0) {
938
- sql += ` LIMIT ${params.add(spec.limit)}`;
938
+ sql += ` LIMIT ${Number(spec.limit)}`;
939
939
  }
940
940
  if (spec.offset !== void 0) {
941
- sql += ` OFFSET ${params.add(spec.offset)}`;
941
+ sql += ` OFFSET ${Number(spec.offset)}`;
942
942
  }
943
943
  return {
944
944
  command: sql,