Skip to content

Fully qualify Expression #1319

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 12, 2025
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