Difference between revisions of "PostgreSQL Adapter Project - Code Review 1 Changes"

From CDOT Wiki
Jump to: navigation, search
(General Research)
(postgresql_setup.sql)
Line 267: Line 267:
 
|Use template field to set location of contrib folder
 
|Use template field to set location of contrib folder
 
*make use of ${path}
 
*make use of ${path}
|
+
|'''DONE'''
 
|
 
|
 
|-
 
|-
 
|Add template field to set location for tablespace, indexspace and longspace
 
|Add template field to set location for tablespace, indexspace and longspace
|
+
|'''DONE'''
 
|
 
|
 
|-
 
|-
 
|Add SQL to create tablespace, indexspace and longspace
 
|Add SQL to create tablespace, indexspace and longspace
|
+
|'''DONE'''
 
|
 
|
 
|-
 
|-
 
|Move function creation to postgresql_create.sql
 
|Move function creation to postgresql_create.sql
|
+
|'''DONE'''
 
|
 
|
 
|-
 
|-
 
|}
 
|}
 
  
 
==postgresql_drop.sql==
 
==postgresql_drop.sql==

Revision as of 14:24, 22 June 2011


General Research

Task Out Come
Can postgreSQL be configured to have the where clause use case insensitive compare for string values? i.e. (select 'Q' = 'q' => should return true) http://www.postgresql.org/docs/8.4/static/citext.html
Add UUID generation to x64 versions UUID generation depends on OSSP-UUID which is not yet ported to x64.
Does extract(epoch from value) return milliseconds? YES
What encoding (UTF-8 and/or UTF-16) does PostgreSQL use for unicode? Can this be configured per column? UTF-8
How is a repeatable read with exclusive lock implemented?
Does timestamp'value', handle java.sql.timestamp.toString()? YES
Does to_timestamp support milliseconds? YES

Precision is up to microseconds(10^-6) http://www.postgresql.org/docs/7.4/static/functions-datetime.html

Does postgreSQL have constants for boolean values? YES

TRUE and FALSE (they are case insensitive)

Does posrgreSQL jdbc driver support returning metadata in UpperCase NO

Since database objects are case sensitive, returning UpperCase would make for corrupt data May be consider changing SQLManager to enforce all database object names to be lowercase

Does renaming a column cause error if a view depends on it? NO

View' is updated with to use the new column name

Does lo.sql unlink large objects when table is truncated? NO

http://www.postgresql.org/docs/8.3/static/lo.html#AEN104018

Classes

PostgreSQLAdapter

Task Status UnitTest
Implement setQueryTime with Timer object
  • if code variation is limited, extract to SQLAdapter
DONE
Refactor escaping literals
  • May be make use isLiteral
DONE
appendMatchExpression
  • Add parentheses to enforce operation order
  • Remove implementation of MatchNode.WEIGHT.SYMBOL
DONE
indexNameMatches
  • Use toMetadataCase and toDatabaseCase instead of toLowerCase/toUpperCase
DONE
appendSuffixHint
  • Implement query locking for OUTER JOIN queries (i.e. repeatable read + exclusive lock)
DONE
appendLiteral
  • Check if timestamp accepts java.sql.timestamp.toString() format
  • If boolean constants are supported, use those instead of string 't'/'f'
DONE
getBind
  • Check if override is necessary
isLiteral
  • Use string.length and binary.getSize to ensure less than 1GB
DONE
appendTypeConversion
  • Ensure to_timestamp accepts milliseconds
  • Ensure case Primitive.TIMESTAMP_ORDINAL: returns milliseconds (extract(epoch from
DONE
isUnicode
  • Check if column is set to use UTF-16 encoding
  • TRUE == is a unicode column FALSE == is not a unicode column null == unknown (e.g. number column or column not present)
DONE
s_bindFactoryArray[Primitive.BINARY_ORDINAL]
  • Use reflection to make use of postgresql jdbc objects and methods to handle large objects
DONE
DUPLICATE_KEY_NAME_PATTERN
  • Modify pattern to remove dependency on english words
DONE
s_bindFactoryArray
  • Use parent BINDS for unchanged binds
DONE

PostgreSQLSchemaManager

Task Status UnitTest
Override setCustomDatabaseProperties
  • Add template fields for postgreSQL scripts
dropTable
  • Remove if exists
DONE
getGUIDExpr
  • Implement solution for x64 versions
remove trigger and procedure suffix $uid DONE
getDefaultLongspace, getDefaultTablespace, getDefaultIndexspace
  • move to SQLAdapter
getPrimaryKeys
  • check if override is needed
DONE
generateIndexName
  • Check if toLowerCase is needed
DONE'
appendColumnType
  • check if serial and bigserial have limits when compared to using sequences
DONE
Refactor creating and deleting full-text search indexes
  • createFullTextIndex
    • generateFullTextSearchProcedureName
    • createFullTextSearchProcedure
    • createFullTextSearchTrigger
  • dropFullTextIndex
    • generateFullTextSearchProcedureName
    • dropFullTextSearchProcedure
    • dropFullTextSearchTrigger
DONE
Refactor checking for BLOB column to isBLOB DONE
Refactor checking for full-text search index on a column to getFullTextIndex DONE
alterColumn - use this logic
  • execute SQL to drop all dependent view/s for the column's table
  • alter the column
  • create the deleted view/s
DONE
renameColumn - use this logic for
  • check if column has full-text search index
  • rename the column
  • rename column$
  • drop full-text search trigger
  • create full-text search trigger
DONE
dropIndex
  • call super
  • if index is TEXT index
    • drop column$
    • drop full-text search trigger
DONE
appendColumnAlternation
  • run UnitTest to check for change in nullness and precision
DONE
renameTable
  • fix full-text search trigger maintainence
DONE
deleteLargeObjects
  • change to use for loop instead of iterator
DONE
getIndexInfo
  • check if override is needed for
Use toMetadataCase and toDatabaseCase instead of toLowerCase/toUpperCase DONE

Scripts

postgresql_create.sql

Task Status UnitTest


postgresql_setup.sql

Task Status UnitTest
Add comment to enable PREPARE TRANSACTION
Use template field to set location of contrib folder
  • make use of ${path}
DONE
Add template field to set location for tablespace, indexspace and longspace DONE
Add SQL to create tablespace, indexspace and longspace DONE
Move function creation to postgresql_create.sql DONE

postgresql_drop.sql

Task Status UnitTest
Add sql to drop custom functions