Skip to content

Commit f84bd6a

Browse files
committed
remove usages of #warning
1 parent 3cc2fe0 commit f84bd6a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Sources/PostgreSQL/SQL/PostgreSQLQuery+ColumnConstraint.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ extension PostgreSQLQuery {
2929
case always
3030
case byDefault
3131
}
32-
#warning("sequence options")
32+
// FIXME: ("sequence options")
3333
case generated(Generated)
3434
case unique
3535
case primaryKey

Sources/PostgreSQL/SQL/PostgreSQLQuery+CreateTable.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ extension PostgreSQLQuery {
2525
public var name: String
2626
public var columns: [ColumnDefinition]
2727
public var constraints: [TableConstraint]
28-
#warning("FIXME: like")
28+
// FIXME: ("FIXME: like")
2929

3030
public init(storage: Storage = .permanent, ifNotExists: Bool = false, name: String, columns: [ColumnDefinition] = [], constraints: [TableConstraint]) {
3131
self.storage = storage

Sources/PostgreSQL/SQL/PostgreSQLQuery+Delete.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ extension PostgreSQLQuery {
2424
/// The name (optionally schema-qualified) of the table to delete rows from.
2525
public var table: TableName
2626

27-
#warning("Add USING to delete query.")
27+
// FIXME: ("Add USING to delete query.")
2828

2929
/// DELETE deletes rows that satisfy the WHERE clause from the specified table.
3030
/// If the WHERE clause is absent, the effect is to delete all rows in the table.

Sources/PostgreSQL/SQL/PostgreSQLQuery+TableConstraint.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ extension PostgreSQLQuery {
44
case check(Key, noInherit: Bool)
55
case unique(Unique)
66
case primaryKey(PrimaryKey)
7-
#warning("exclude")
7+
// FIXME: ("exclude")
88
case foreignKey(ForeignKey)
99
}
1010

0 commit comments

Comments
 (0)