arkormx 2.8.1 → 2.9.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/cli.mjs CHANGED
@@ -2712,6 +2712,10 @@ var PrismaDatabaseAdapter = class PrismaDatabaseAdapter {
2712
2712
  operation: "adapter.select",
2713
2713
  meta: { feature: "groupBy" }
2714
2714
  });
2715
+ if (spec.having) throw new UnsupportedAdapterFeatureException("Having clauses are not supported by the Prisma compatibility adapter; use a SQL-backed adapter.", {
2716
+ operation: "adapter.select",
2717
+ meta: { feature: "having" }
2718
+ });
2715
2719
  if (spec.joins?.length) throw new UnsupportedAdapterFeatureException("Join clauses are not supported by the Prisma compatibility adapter; use a SQL-backed adapter or DB.raw().", {
2716
2720
  operation: "adapter.select",
2717
2721
  meta: { feature: "joins" }