From 75ead46a54f9cd7347f67e5fdf2f547ce26883d9 Mon Sep 17 00:00:00 2001 From: Dan Jabbour <1394696+picnicbob@users.noreply.github.com> Date: Wed, 11 Dec 2024 09:21:57 -0500 Subject: [PATCH] Specify PerfectCRUD.Expression Foundation.Expression was introduced in iOS 18.0 / macOS 15.0 --- Sources/MariaDB/MySQLCRUD.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/MariaDB/MySQLCRUD.swift b/Sources/MariaDB/MySQLCRUD.swift index d19ac49..1c70071 100644 --- a/Sources/MariaDB/MySQLCRUD.swift +++ b/Sources/MariaDB/MySQLCRUD.swift @@ -191,7 +191,7 @@ class MySQLGenDelegate: SQLGenDelegate { return "() VALUES ()" } - func getBinding(for expr: Expression) throws -> String { + func getBinding(for expr: PerfectCRUD.Expression) throws -> String { bindings.append(("?", expr)) return "?" }