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 9a9d38a commit f3cb910Copy full SHA for f3cb910
Tests/SQLiteTests/Schema/SchemaChangerTests.swift
@@ -278,9 +278,9 @@ class SchemaChangerTests: SQLiteTestCase {
278
279
func test_create_table_add_column_expression() throws {
280
try schemaChanger.create(table: "foo") { table in
281
- table.add(expression: Expression<String>("name"))
282
- table.add(expression: Expression<Int>("age"))
283
- table.add(expression: Expression<Double?>("salary"))
+ table.add(expression: SQLite.Expression<String>("name"))
+ table.add(expression: SQLite.Expression<Int>("age"))
+ table.add(expression: SQLite.Expression<Double?>("salary"))
284
}
285
286
let columns = try schema.columnDefinitions(table: "foo")
0 commit comments