[Modeling-cvs] ProjectModeling/Modeling CHANGES,1.109,1.110
Status: Abandoned
Brought to you by:
sbigaret
From: <sbi...@us...> - 2003-06-12 11:41:05
|
Update of /cvsroot/modeling/ProjectModeling/Modeling In directory sc8-pr-cvs1:/tmp/cvs-serv5313 Modified Files: CHANGES Log Message: Fixed: PostgresqlSQLExpression was not correctly escaping '%' (postgresql interprets the backslash char just like python does, hence escaping '%' requires a double backslash in the SQL query) Index: CHANGES =================================================================== RCS file: /cvsroot/modeling/ProjectModeling/Modeling/CHANGES,v retrieving revision 1.109 retrieving revision 1.110 diff -C2 -d -r1.109 -r1.110 *** CHANGES 12 Jun 2003 09:35:19 -0000 1.109 --- CHANGES 12 Jun 2003 11:40:30 -0000 1.110 *************** *** 8,11 **** --- 8,15 ---- -------------------------------------------------------- + * Fixed: PostgresqlSQLExpression was not correctly escaping '%' (postgresql + interprets the backslash char just like python does, hence escaping '%' + requires a double backslash in the SQL query) + * Fixed bug #753147: fetching twice or more with a given FetchSpecification did not return the same result set (the original FetchSpec was modified) |