r9292: fix filename typo
[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
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  >> Symbolic SQL syntax 
25
26       o Complete sql expressions (see operations.lisp)
27
28          nvl (Oracle specific) 
29          userenv (Oracle specific) 
30          minus (Oracle specific: does the same as EXCEPT) 
31          || 
32
33       o variables (e.g., table identifiers) should be instantiated at runtime 
34
35 OPTIMIZATIONS
36
37 * Revisit result-type list creation,perhaps caching
38
39 POSSIBLE EXTENSIONS
40
41 * port Oracle backend to UFFI
42 * large object support 
43 * add support for prepared statements
44
45
46 NOTES ABOUT THE BACKENDS
47
48 MYSQL 
49
50 drop-index:   requires a table to be specified with the :from keyword parameter
51 views:        mysql does not support views  
52 queries:      nested subqueries are not supported
53
54 SQLITE 
55
56 create-view: column-list parameter not supported