Coverage report: /home/ellis/comp/core/lib/rdb/query.lisp
Kind | Covered | All | % |
expression | 0 | 5 | 0.0 |
branch | 0 | 0 | nil |
Key
Not instrumented
Conditionalized out
Executed
Not executed
Both branches taken
One branch taken
Neither branch taken
1
;;; query.lisp --- Query Support for RDB
3
;; RDB Queries based on Q/* and OBJ/QUERY packages.
8
(defclass rdb-query-engine (query-engine rdb-database) ())
10
(defclass rdb-execution-context (execution-context) ()
11
(:documentation "A context in which RDB queries may be
12
executed. DATA-FRAMEs, DATA-SOURCEs, SCHEMAs, and other complex objects are
13
stored in the slots of this class and dynamically bound during execution
16
(defclass rdb-query-plan (query-plan) ())
18
(defclass rdb-query (query) ())