r9250: make :target-slot joins many times more efficient
[clsql.git] / TODO
1 TESTS TO ADD
2
3 * CACHE-TABLE-QUERIES
4 * Test that ":db-kind :key" adds an index for that key. This is complicated by different
5   backends showing autogenerated primary key in different ways.
6 * Large object testing
7 * Test bigint type
8 * :db-constraint tests
9 * *update-records-on-make-instance*
10
11 COMMONSQL SPEC
12
13 * Missing: 
14
15   UPDATE-OBJECT-JOINS 
16
17 * Incompatible 
18
19  >> The functional sql interface 
20   
21     SELECT 
22       o keyword arg :refresh should function as advertised 
23  
24  >> The object-oriented sql interface
25
26     DEF-VIEW-CLASS
27       o implement :retrieval :immediate 
28
29  >> Symbolic SQL syntax 
30
31       o Complete sql expressions (see operations.lisp)
32
33          substr
34          some 
35          order-by 
36          times 
37          nvl
38          null 
39          distinct
40          except 
41          intersect 
42          between
43          userenv
44
45       o variables (e.g., table identifiers) should be instantiated at runtime 
46
47 OPTIMIZATIONS
48
49 * Revisit result-type list creation,perhaps caching
50
51 POSSIBLE EXTENSIONS
52
53 * port Oracle backend to UFFI
54 * large object support 
55 * add support for prepared statements
56
57
58 NOTES ABOUT THE BACKENDS
59
60 MYSQL 
61
62 drop-index:   requires a table to be specified with the :from keyword parameter
63 views:        mysql does not support views  
64 queries:      nested subqueries are not supported
65
66 SQLITE 
67
68 create-view: column-list parameter not supported