Difference between revisions of "PostgreSQL Adapter Project - Code Review 4 Changes"
Line 96: | Line 96: | ||
|MAX_FIELD_PRECISION - is this from the PostgreSQL documentation? | |MAX_FIELD_PRECISION - is this from the PostgreSQL documentation? | ||
*The comment is incorrect. This is not 1048576*8*10 and is not 1GB, but 10MB. Remove "~~" | *The comment is incorrect. This is not 1048576*8*10 and is not 1GB, but 10MB. Remove "~~" | ||
− | + | *MAX_LO_SIZE - Remove "~~" from the comment. This is 2GB-1. | |
− | + | |'''DONE''' | |
− | |||
− | | | ||
|- | |- | ||
|BIND_BLOB | |BIND_BLOB |
Revision as of 16:27, 13 September 2011
Contents
General
Task | Status |
---|---|
{
} undo the change to ; |
Classes
Table
Task | Status |
---|---|
getQuotedName
|
DONE |
SQLAdapter
Task | Status |
---|---|
setQueryTimeout()
|
DONE |
CancelTask -> StatementCancelationTask;
|
DONE |
SQLSchemaManager
Task | Status |
---|---|
addColumn
|
DONE |
I think the portable flag should not take into account columns that are not added to the table (return null in this case)? | DONE |
The message about ignoring an index has changed
|
Diff is malfunctioning |
There are extensive changes to readSchema?
|
Diff is malfunctioning |
getAlterColumnToken
|
DONE |
isPortable()
This hampers method reusability.). |
DONE |
isWindowsCompatiable -> isWindowsCompatible | DONE |
StatementProxy/PreparedStatementProxy
Task | Status |
---|---|
*Proxy.java -> *Wrapper.java
|
DONE |
PostgreSQLAdapter
Task | Status |
---|---|
MAX_FIELD_PRECISION - is this from the PostgreSQL documentation?
|
DONE |
BIND_BLOB
You already have this value, no need to get it again later on. Use Primitive.createLong() to create the long value.
|
|
BIND_STRING, BIND_BINARY
|
|
RequestTimeout should take into account non-positive timeouts. | |
The timeout management functionality requestTimeout and releaseTimeout(rename to schedule and cancel)
|
|
unwrap
|
|
s_PGXAConnection, s_getQueryExecutor
|
|
appendIdentitySuffix
|
|
appendLiteral
|
|
appendTypeConversion
|
|
indexNameMatches
|
|
isUnicode
|
PostgreSQLPreparedStatementProxy
Task | Status |
---|---|
Provide a class comment | |
Prepend a comment "// inner classes" | |
Use visibility declarators on members ("protected") | |
Fold lines after about 110 chars | |
requestSavepoint
|
PostgreSQLSchemaManager
Task | Status |
---|---|
appendColumnAlteration
|
|
appendLOManagerTrigger
|
|
appendTSIncrement
|
|
getGUIDExpr
|
|
isImplicitConversion
|
|
isValidColumnName
|
|
addColumn
|