Update of /cvsroot/modeling/ProjectModeling/Modeling/DatabaseAdaptors/PostgresqlAdaptorLayer
In directory sc8-pr-cvs1:/tmp/cvs-serv15255/DatabaseAdaptors/PostgresqlAdaptorLayer
Modified Files:
PostgresqlSQLExpression.py
Log Message:
Fixed typos
Index: PostgresqlSQLExpression.py
===================================================================
RCS file: /cvsroot/modeling/ProjectModeling/Modeling/DatabaseAdaptors/PostgresqlAdaptorLayer/PostgresqlSQLExpression.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** PostgresqlSQLExpression.py 31 May 2003 15:11:43 -0000 1.2
--- PostgresqlSQLExpression.py 10 Jun 2003 17:30:34 -0000 1.3
***************
*** 34,38 ****
__version__='$Revision$'[11:-2]
! from Modeling.SQLExpression import SQLExpression, DateType
import string
--- 34,38 ----
__version__='$Revision$'[11:-2]
! from Modeling.SQLExpression import SQLExpression, DateType, CharacterType
import string
***************
*** 111,115 ****
'timestamp without time zone': DateType,
'timestamp with time zone': DateType,
! 'text', CharacterType,
}
values.update(additional_values)
--- 111,115 ----
'timestamp without time zone': DateType,
'timestamp with time zone': DateType,
! 'text': CharacterType,
}
values.update(additional_values)
|