Coverage report: /home/ellis/comp/core/lib/rdb/query.lisp

KindCoveredAll%
expression05 0.0
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
1
 ;;; query.lisp --- Query Support for RDB
2
 
3
 ;; RDB Queries based on Q/* and OBJ/QUERY packages.
4
 
5
 ;;; Code:
6
 (in-package :rdb)
7
 
8
 (defclass rdb-query-engine (query-engine rdb-database) ())
9
 
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
14
   phases."))
15
 
16
 (defclass rdb-query-plan (query-plan) ())
17
 
18
 (defclass rdb-query (query) ())