Skip to content

Commit e70aa5f

Browse files
committed
docs: Update section titles for clarity in OLTP, OLAP, and vector search examples
1 parent df74e20 commit e70aa5f

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

bindings/python/docs/examples/07_stackoverflow_tables_oltp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Insert rows are synthetic. The source uses `build_synthetic_row()`:
105105
- `DATETIME` fields get the current UTC timestamp.
106106
- string fields get `synthetic_<Table>_<Field>_<Id>`.
107107

108-
## Exact Query Templates
108+
## Query Suite
109109

110110
### ArcadeDB SQL
111111

bindings/python/docs/examples/08_stackoverflow_tables_olap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ python 08_stackoverflow_tables_olap.py \
3434
--mem-limit 4g
3535
```
3636

37-
## Query Suite Contract
37+
## Query Suite Definition
3838

3939
The source defines the workload once in `QUERY_DEFS`. For ArcadeDB SQL, SQLite, and
4040
DuckDB, the exact SQL below is executed as written. PostgreSQL runs the same logical

bindings/python/docs/examples/12_vector_search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ collection.search(
230230

231231
The source retries transient Milvus search errors before failing the run.
232232

233-
## Result Contract
233+
## Result Format
234234

235235
Every backend returns the same result fields:
236236

bindings/python/tests/test_graph_algorithms_sql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def test_graph_dijkstra_sql_weighted_path_shape(temp_db_path):
9393

9494

9595
def test_graph_astar_sql_weighted_path_shape(temp_db_path):
96-
"""`astar` returns a weighted path compatible with the same edge-weight property contract."""
96+
"""`astar` returns a weighted path using the same edge-weight property."""
9797
with arcadedb.create_database(temp_db_path) as db:
9898
rids = _setup_weighted_graph(db)
9999

0 commit comments

Comments
 (0)