We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d06f10d commit f297110Copy full SHA for f297110
Tests/MySQLTests/MySQLTests.swift
@@ -203,7 +203,7 @@ class MySQLTests: XCTestCase {
203
.run().wait()
204
205
try client.insert(into: Nested.self).value(Nested(id: 1, data: ["description": "JSON data"])).run().wait()
206
- let nested = try client.select().all(table: Nested.self).first(decoding: Nested.self).wait()
+ let nested = try client.select().all().from(Nested.self).first(decoding: Nested.self).wait()
207
208
XCTAssertEqual(nested?.id, 1)
209
XCTAssertEqual(nested?.data, ["description": "JSON data"])
0 commit comments