Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
be5d321
Memory adapter
Meldiron Apr 20, 2026
7e02eb5
Merge branch 'main' into feat-memory-adapter
abnegate Apr 29, 2026
9daf76a
fix(memory): address PR review findings
abnegate Apr 29, 2026
b362e4b
fix(memory): match MariaDB observable behavior for parity gaps
abnegate Apr 29, 2026
d4ba937
test(memory): use standard adapter test scopes
abnegate Apr 29, 2026
c9e4c68
feat(memory): support schemas
abnegate Apr 29, 2026
495d500
feat(memory): support update operators
abnegate Apr 29, 2026
a10bb27
feat(memory): support fulltext search and PCRE regex
abnegate Apr 29, 2026
024ddf0
feat(memory): support object attributes and nested paths
abnegate Apr 29, 2026
b8e383c
feat(memory): support relationships
abnegate Apr 29, 2026
5299d73
fix(ci): repair MySQL healthcheck so dependents wait for it properly
abnegate Apr 29, 2026
0f2cfe9
fix(memory): address remaining review findings
abnegate Apr 29, 2026
1ab7016
fix(memory): strict equality and explicit null handling in sort/cursor
abnegate Apr 29, 2026
1acd840
fix(memory): cross-check sibling pending writes in updateDocuments
abnegate Apr 29, 2026
30ae71f
perf(memory): drop full-dataset snapshots and per-row scans
abnegate Apr 29, 2026
9d1b9a6
fix(memory): scope unique-index hashes by tenant under shared tables
abnegate Apr 29, 2026
8523812
test(memory): override testSingleDocumentDateOperations with a usleep
abnegate Apr 29, 2026
a9e9771
docs(memory): refresh class docblock to reflect current feature surface
abnegate Apr 29, 2026
898ba47
test(memory): tighten regression tests flagged in review
abnegate Apr 29, 2026
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
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ jobs:
MySQL,
Postgres,
SQLite,
Memory,
Mirror,
Pool,
SharedTables/MongoDB,
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ services:
cap_add:
- SYS_NICE
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-u $$MYSQL_USER", "-p $$MYSQL_PASSWORD"]
test: ["CMD-SHELL", "mysqladmin ping -h 127.0.0.1 -P $$MYSQL_TCP_PORT -uroot -p$$MYSQL_ROOT_PASSWORD --silent"]
interval: 10s
timeout: 5s
retries: 5
Expand All @@ -211,7 +211,7 @@ services:
cap_add:
- SYS_NICE
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-u $$MYSQL_USER", "-p $$MYSQL_PASSWORD"]
test: ["CMD-SHELL", "mysqladmin ping -h 127.0.0.1 -P $$MYSQL_TCP_PORT -uroot -p$$MYSQL_ROOT_PASSWORD --silent"]
interval: 10s
timeout: 5s
retries: 5
Expand Down
Loading
Loading