-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathissues.txt
More file actions
executable file
·31 lines (19 loc) · 795 Bytes
/
issues.txt
File metadata and controls
executable file
·31 lines (19 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
1. it does not differentiate long and int type. the differentiate is made in SQLExprParser.cpp.
2. change std::list to std::vector
3. add a char* based identifierEquals("SAVEPOINT"
4. In SQLExprParser, the std::list returned, is newed. Should use auto_ptr, or
make it memeber of class.
5. anything newed, Should be removed;
6. the list/vector/set of pointers, should be released.
7. change list to vector
8. how about the delete in SQLExprParser?? what's the effect?
------------------------------------------------------
SQLStatementParser:
=> SQLParer
=> Lexer
construct SQLParser done
=> Lexer getNextToken()
=> SQLExprParser with SQLParser's lexer
=> SQLParser with SQLParser's lexer
construct SQLExprParser done
=> SQLStatementParser construct done