d7e470a0e58bb19fe7daa80444903c3eda62a33d
[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 * test *db-auto-sync* 
10 * test SELECT caching
11
12 COMMONSQL SPEC
13
14 * Missing: 
15
16   UPDATE-OBJECT-JOINS 
17
18 * Incompatible 
19
20  >> The functional sql interface 
21   
22     SELECT 
23       o keyword arg :refresh should function as advertised 
24
25  >> Symbolic SQL syntax 
26
27       o Complete sql expressions (see operations.lisp)
28
29          nvl (Oracle specific) 
30          userenv (Oracle specific) 
31          minus (Oracle specific: does the same as EXCEPT) 
32          || 
33
34       o variables (e.g., table identifiers) should be instantiated at runtime 
35
36 OPTIMIZATIONS
37
38 * Revisit result-type list creation,perhaps caching
39
40 POSSIBLE EXTENSIONS
41
42 * port Oracle backend to UFFI
43 * large object support 
44 * add support for prepared statements
45
46
47 NOTES ABOUT THE BACKENDS
48
49 MYSQL 
50
51 drop-index:   requires a table to be specified with the :from keyword parameter
52 views:        mysql does not support views  
53 queries:      nested subqueries are not supported
54
55 SQLITE 
56
57 create-view: column-list parameter not supported