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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

services:
paradedb:
image: paradedb/paradedb:0.21.10-pg18
image: paradedb/paradedb:0.22.0-pg18
ports:
- 5432:5432
env:
Expand Down
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2026 ParadeDB, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 1 addition & 1 deletion scripts/run_paradedb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ else
RUNNING=0
fi

IMAGE="${PARADEDB_IMAGE:-paradedb/paradedb:0.21.10-pg18}"
IMAGE="${PARADEDB_IMAGE:-paradedb/paradedb:0.22.0-pg18}"
CONTAINER_NAME="${PARADEDB_CONTAINER_NAME:-paradedb-sqlalchemy-integration}"
export PARADEDB_PORT="${PARADEDB_PORT:-5443}"
export PARADEDB_USER="${PARADEDB_USER:-postgres}"
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class MockItem(Base):
metadata_: Mapped[Any] = mapped_column("metadata", JSONB, nullable=True)


PARADEDB_SCAN_PROVIDERS = {"ParadeDB Scan", "ParadeDB Aggregate Scan", "ParadeDB Join Scan"}
PARADEDB_SCAN_PROVIDERS = {"ParadeDB Base Scan", "ParadeDB Aggregate Scan", "ParadeDB Join Scan"}


@pytest.fixture(scope="session")
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/test_alembic_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,12 +395,12 @@ def test_autogenerate_emits_schema_on_drop_for_non_default_schema(engine):


def _assert_bm25_queryable(conn, table_name, index_name, search_column, search_term):
"""Run EXPLAIN (FORMAT TEXT) on a BM25 query and assert ParadeDB Scan is used."""
"""Run EXPLAIN (FORMAT TEXT) on a BM25 query and assert ParadeDB Base Scan is used."""
sql = f'EXPLAIN (FORMAT TEXT) SELECT * FROM "{table_name}" WHERE "{search_column}" @@@ \'{search_term}\''
rows = conn.execute(text(sql)).fetchall()
plan_text = "\n".join(str(row[0]) for row in rows)
assert any(scan in plan_text for scan in PARADEDB_SCAN_PROVIDERS), (
f"Expected ParadeDB scan node in plan:\n{plan_text}"
f"Expected ParadeDB Base Scan node in plan:\n{plan_text}"
)
assert index_name in plan_text, f"Expected index {index_name} in plan:\n{plan_text}"

Expand Down