Skip to content

Commit 9f1735a

Browse files
committed
Keep API compatibility
1 parent 5850d83 commit 9f1735a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Sources/SQLite/Typed/Expression.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ public protocol Expressible {
7373
extension Expressible {
7474

7575
// naïve compiler for statements that can’t be bound, e.g., CREATE TABLE
76-
internal func asSQL() -> String {
76+
// FIXME: make internal (0.12.0)
77+
public func asSQL() -> String {
7778
let expressed = expression
7879
var idx = 0
7980
return expressed.template.characters.reduce("") { template, character in

0 commit comments

Comments
 (0)