Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Build and test
on: [push, pull_request]
env:
IOS_SIMULATOR: "iPhone 15"
IOS_VERSION: "17.5"
IOS_SIMULATOR: "iPhone 16"
IOS_VERSION: "18.0"
jobs:
build:
runs-on: macos-15
Expand Down
6 changes: 3 additions & 3 deletions Tests/SQLiteTests/Schema/SchemaChangerTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -278,9 +278,9 @@ class SchemaChangerTests: SQLiteTestCase {

func test_create_table_add_column_expression() throws {
try schemaChanger.create(table: "foo") { table in
table.add(expression: Expression<String>("name"))
table.add(expression: Expression<Int>("age"))
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"))
}

let columns = try schema.columnDefinitions(table: "foo")
Expand Down