Skip to content

Commit 7d95523

Browse files
committed
Link to GH issue
1 parent 03823fb commit 7d95523

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Sources/SQLite/Core/Connection.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ public final class Connection {
643643
}
644644

645645
if functions[function] == nil {
646-
functions[function] = [:] // fails on Linux, https://bugs.swift.org/browse/SR-4429
646+
functions[function] = [:] // fails on Linux, https://github.com/stephencelis/SQLite.swift/issues/1071
647647
}
648648
functions[function]?[argc] = box
649649
}

Tests/SQLiteTests/ConnectionTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ class ConnectionTests: SQLiteTestCase {
343343
}
344344
}
345345

346-
// https://bugs.swift.org/browse/SR-4429
346+
// https://github.com/stephencelis/SQLite.swift/issues/1071
347347
#if !os(Linux)
348348
func test_createFunction_withArrayArguments() {
349349
db.createFunction("hello") { $0[0].map { "Hello, \($0)!" } }

Tests/SQLiteTests/CustomAggregationTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import CSQLite
1313
import SQLite3
1414
#endif
1515

16-
// https://bugs.swift.org/browse/SR-4429
16+
// https://github.com/stephencelis/SQLite.swift/issues/1071
1717
#if !os(Linux)
1818

1919
class CustomAggregationTests: SQLiteTestCase {

Tests/SQLiteTests/CustomFunctionsTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import XCTest
22
import SQLite
33

4-
// https://bugs.swift.org/browse/SR-4429
4+
// https://github.com/stephencelis/SQLite.swift/issues/1071
55
#if !os(Linux)
66

77
class CustomFunctionNoArgsTests: SQLiteTestCase {

0 commit comments

Comments
 (0)