update on latest accomplishments:
- added support for filters (compare engine_condition_pushdown)
on non-root operations, this in 2 flavors:
- - constant/immediate filters that is provided after NdbQuery has been defined, these may not contains filter conditions referencing other NdbQueryOperation's,
- - parameterized/linked filters, these type of programs must be provided when building the NdbQuery-object.
The constant filters should be "easy" to integrate with ndbapi/mysqld, but the parameterized/linked is harder as we need to add new features to NdbScanFilter.
Once this is integrated into mysqld, it will provide better performance for already pushable queries, see page 43 in my UC presentation (ref: filter).
- added support for NdbQueryOpertation's referencing non-direct parent …