Skip to content
Merged
Show file tree
Hide file tree
Changes from 38 commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
dcda823
chore: add .worktrees/ to .gitignore
tobyhede Oct 29, 2025
8eb3c3e
test(sqlx): add comparison and inequality operator tests
tobyhede Oct 28, 2025
12cab28
test(sqlx): add <= and >= comparison operator tests
tobyhede Oct 28, 2025
289ee11
test(sqlx): add ORDER BY tests with ORE encryption
tobyhede Oct 28, 2025
2d9729f
refactor(tests): address code review suggestions
tobyhede Oct 28, 2025
23f8d3d
test(sqlx): add JSONB path operator tests (-> and ->>)
tobyhede Oct 28, 2025
5de49a8
test(sqlx): add ORE equality/inequality variant tests
tobyhede Oct 28, 2025
88e1e59
refactor(tests): improve ORE variant test coverage and consistency
tobyhede Oct 28, 2025
856ec42
test(sqlx): add containment operator tests (@> and <@)
tobyhede Oct 28, 2025
34e98d2
refactor(tests): address code review feedback for containment tests
tobyhede Oct 28, 2025
6006809
feat(test): create comprehensive test:all task combining legacy SQL a…
tobyhede Oct 28, 2025
73a4584
refactor(tasks): restructure test tasks for CI compatibility
tobyhede Oct 29, 2025
bdc2019
refactor(tasks): flatten test tasks into mise.toml with inline usage
tobyhede Oct 29, 2025
c0f77fc
fix(tasks): correct usage syntax for --postgres flag in test task
tobyhede Oct 29, 2025
c85e47f
fix(tasks): revert to using main repo's test.sh which was already wor…
tobyhede Oct 29, 2025
66328ea
fix(tasks): restore test.sh in worktree with SQLx support
tobyhede Oct 29, 2025
198ab7b
chore: ignore SQLx target directory (using sccache)
tobyhede Oct 29, 2025
ba5c140
ci: install rust
tobyhede Oct 29, 2025
b678c88
ci: making rust work
tobyhede Oct 29, 2025
53da200
fix(tests): add missing selector constants and fix operator type disa…
tobyhede Oct 29, 2025
603c4d0
test(sqlx): add config management tests (41 assertions)
tobyhede Oct 29, 2025
351845c
test(sqlx): add operator class tests (41 assertions)
tobyhede Oct 29, 2025
9f48201
fix(tests): address code review recommendations from Phase 1
tobyhede Oct 29, 2025
bcdd938
test(sqlx): add aggregate function tests (6 assertions)
tobyhede Oct 29, 2025
c764be3
test(sqlx): add constraint tests (10 assertions)
tobyhede Oct 29, 2025
1de42cf
test(sqlx): add ORE CLLW comparison tests (12 assertions)
tobyhede Oct 29, 2025
33d5c24
test(sqlx): add LIKE operator tests (10 assertions)
tobyhede Oct 29, 2025
7fa5a00
test(sqlx): add operator compare tests (63 assertions)
tobyhede Oct 29, 2025
07a12fc
test(sqlx): add specialized function tests (33 assertions)
tobyhede Oct 29, 2025
296fd2d
test(sqlx): add index comparison tests (45 assertions)
tobyhede Oct 29, 2025
083bf9a
refactor(tests): consolidate duplicate helper functions
tobyhede Oct 29, 2025
a085f81
test(sqlx): add ILIKE operator tests for case-insensitive matching
tobyhede Oct 29, 2025
fab6a39
test(sqlx): strengthen GROUP BY assertion with specific count
tobyhede Oct 29, 2025
1be11a3
test(sqlx): add FK enforcement behavior tests
tobyhede Oct 29, 2025
5cfa159
docs(tests): document inline SQL pattern rationale
tobyhede Oct 29, 2025
6e9ff4a
docs(tests): standardize assertion count comment style
tobyhede Oct 30, 2025
67497fa
docs: update SQLx test documentation with complete coverage
tobyhede Oct 30, 2025
8601b8c
docs: add comprehensive SQLx migration completion report
tobyhede Oct 30, 2025
c685a72
chore: remove comments not useful outside the context of this PR
auxesis Oct 31, 2025
8e655be
test: add lint checks for sqlx
auxesis Oct 31, 2025
532922b
chore: `cargo fmt` fixes
auxesis Oct 31, 2025
ef858d2
fix: ensure rustfmt is available in CI
auxesis Oct 31, 2025
120fe2d
ci: use setup-rust-toolchain, as it works reliably
auxesis Oct 31, 2025
ffaeefa
test: disable for now, so CI is still green
auxesis Oct 31, 2025
76f55c1
refactor: address code review feedback
tobyhede Nov 2, 2025
7c055da
ci: run on blacksmith, for 4x faster builds
auxesis Nov 5, 2025
7bf2c40
ci: remove setup-rust-toolchain, in favour of mise
auxesis Nov 5, 2025
dbb98a6
ci: upgrade mise + mise-action to latest
auxesis Nov 5, 2025
cc47986
build: explicitly install rust components
auxesis Nov 5, 2025
659e5ce
test: re-enable lints
auxesis Nov 5, 2025
6d83004
test: enable prefix output on all sub-tests
auxesis Nov 5, 2025
d78db06
ci: explicitly install Rust components, so rustfmt is available
auxesis Nov 5, 2025
65e3701
docs: state where the tests live
auxesis Nov 6, 2025
610865f
docs: remove meaningless line
auxesis Nov 6, 2025
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
9 changes: 9 additions & 0 deletions .github/workflows/test-eql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,15 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install rust
shell: /bin/bash -l {0}
run: rustup toolchain install stable --profile minimal --no-self-update

- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
cache-all-crates: true

- uses: jdx/mise-action@v2
with:
version: 2025.1.6 # [default: latest] mise version to install
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

.DS_Store
.mise.*
.worktrees/

deps.txt
deps-ordered.txt
Expand Down Expand Up @@ -210,3 +211,6 @@ eql--*.sql

# Generated SQLx migration (built from src/, never commit)
tests/sqlx/migrations/001_install_eql.sql

# Rust build artifacts (using sccache)
tests/sqlx/target/
Loading