833ff92436
* Pre: use debugcli in VSCode. * Pre: wrap subqueries in parentheses in output SQL. * Pre: add ExistingColumn. This lets us make reference to columns by name, rather than only pointing to qualified aliases. * Pre: add Into for &str to TypedValue. * Pre: add Store.transact. * Pre: cleanup. * Parse and algebrize simple aggregates. (#312) * Follow-up: print aggregate columns more neatly in the CLI. * Useful ValueTypeSet helpers. * Allow for entity inequalities. * Add 'differ', which is a ref-specialized not-equals. * Add 'unpermute', a function for getting unique, distinct pairs from bindings. * Review comments. * Add 'the' pseudo-aggregation operator. This allows for a corresponding value to be returned when a query includes one 'min' or 'max' aggregate.
88 lines
2.6 KiB
Rust
88 lines
2.6 KiB
Rust
// Copyright 2016 Mozilla
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
// this file except in compliance with the License. You may obtain a copy of the
|
|
// License at http://www.apache.org/licenses/LICENSE-2.0
|
|
// Unless required by applicable law or agreed to in writing, software distributed
|
|
// under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
// specific language governing permissions and limitations under the License.
|
|
|
|
extern crate mentat_core;
|
|
extern crate mentat_query;
|
|
extern crate mentat_query_algebrizer;
|
|
extern crate mentat_query_parser;
|
|
extern crate mentat_query_projector;
|
|
|
|
use mentat_core::{
|
|
Attribute,
|
|
Entid,
|
|
Schema,
|
|
ValueType,
|
|
};
|
|
|
|
use mentat_query_parser::{
|
|
parse_find_string,
|
|
};
|
|
|
|
use mentat_query::{
|
|
NamespacedKeyword,
|
|
};
|
|
|
|
use mentat_query_algebrizer::{
|
|
Known,
|
|
algebrize,
|
|
};
|
|
|
|
use mentat_query_projector::{
|
|
query_projection,
|
|
};
|
|
|
|
// These are helpers that tests use to build Schema instances.
|
|
fn associate_ident(schema: &mut Schema, i: NamespacedKeyword, e: Entid) {
|
|
schema.entid_map.insert(e, i.clone());
|
|
schema.ident_map.insert(i.clone(), e);
|
|
}
|
|
|
|
fn add_attribute(schema: &mut Schema, e: Entid, a: Attribute) {
|
|
schema.attribute_map.insert(e, a);
|
|
}
|
|
|
|
fn prepopulated_schema() -> Schema {
|
|
let mut schema = Schema::default();
|
|
associate_ident(&mut schema, NamespacedKeyword::new("foo", "name"), 65);
|
|
associate_ident(&mut schema, NamespacedKeyword::new("foo", "age"), 68);
|
|
associate_ident(&mut schema, NamespacedKeyword::new("foo", "height"), 69);
|
|
add_attribute(&mut schema, 65, Attribute {
|
|
value_type: ValueType::String,
|
|
multival: false,
|
|
..Default::default()
|
|
});
|
|
add_attribute(&mut schema, 68, Attribute {
|
|
value_type: ValueType::Long,
|
|
multival: false,
|
|
..Default::default()
|
|
});
|
|
add_attribute(&mut schema, 69, Attribute {
|
|
value_type: ValueType::Long,
|
|
multival: false,
|
|
..Default::default()
|
|
});
|
|
schema
|
|
}
|
|
|
|
#[test]
|
|
fn test_aggregate_unsuitable_type() {
|
|
let schema = prepopulated_schema();
|
|
|
|
let query = r#"[:find (avg ?e)
|
|
:where
|
|
[?e :foo/age ?a]]"#;
|
|
|
|
// While the query itself algebrizes and parses…
|
|
let parsed = parse_find_string(query).expect("query input to have parsed");
|
|
let algebrized = algebrize(Known::for_schema(&schema), parsed).expect("query algebrizes");
|
|
|
|
// … when we look at the projection list, we cannot reconcile the types.
|
|
assert!(query_projection(&algebrized).is_err());
|
|
}
|