Skip to content
Draft
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
8 changes: 8 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,14 @@ jobs:
AWS_DEFAULT_REGION: us-east-1
AWS_ACCESS_KEY_ID: ${{ steps.creds.outputs.akid }}
AWS_SECRET_ACCESS_KEY: ${{ steps.creds.outputs.secret }}
# No in-tree backend implements vector search, so every vector request
# must be refused and the refusal suite must actually run. Without this
# the suite self-skips the moment a backend gains vector support, and the
# contract that non-participating backends refuse would stop being
# checked anywhere while still reporting green. Pinning the expectation
# turns that skip into a failure. The first backend to implement vector
# search sets this to 1 in its own job.
EXTENDDB_EXPECT_VECTORS: "0"
run: |
# Self-signed cert generated by init; trust it for the SDK client.
export EXTENDDB_CA_CERT="$(grep -oP 'cert_path\s*=\s*"\K[^"]+' extenddb.toml)"
Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/target
/target-*
extenddb.toml
__pycache__/
.coverage
Expand All @@ -19,3 +20,8 @@ extenddb.toml.bak
.env
.env.*
!.env.example

# Local test/dev config files
extenddb-*.toml
extenddb-*.toml.bak
extenddb-*.toml.keep
6 changes: 6 additions & 0 deletions crates/core/src/expression/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ mod parser_common;
mod projection;
mod reserved_words;
mod resolver;
mod search_condition;
mod tokenizer;
mod update_evaluator;
mod update_parser;
Expand All @@ -33,6 +34,11 @@ pub use resolver::{
resolve_name_ref, resolve_path, validate_begins_with_operands, validate_expression_param_usage,
validate_ordering_operand_types, validate_unused_attributes,
};
pub use search_condition::{
MAX_INLINE_FILTER_CONDITIONS, MAX_PARTITION_KEY_CONDITIONS, MAX_SEARCH_CONDITIONS,
SearchCondition, validate_conditions_against_search_schema,
validate_search_condition_expression,
};
pub use tokenizer::{Token, tokenize, tokenize_for, tokenize_with_limit};
pub use update_evaluator::apply_update;
pub use update_parser::{parse_update, parse_update_from};
Loading
Loading