Monotone-Parent: 644595c11e58a7c604c223b28fa3c197272777e2

Monotone-Revision: f6d0d3d72013771c7544d3498ed9510e4a4a9ff2

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-06-30T14:10:45
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2008-06-30 14:10:45 +00:00
parent 975f39355e
commit e389f53590
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -1,5 +1,11 @@
2008-06-30 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* GCSFolder.m ([GCSFolder -recordOfEntryWithName:name])
([GCSFolder -writeContent:_contenttoName:_namebaseVersion:_baseVersion])
([GCSFolder -fetchFields:fieldsfetchSpecification:spec]): don't
use the "as" keyword when specifying multiple tables, so that
Oracle doesn't choke on the queries.
* EOAdaptorChannel+GCS.m ([EOAdaptorChannel
-dropTables:tableNames]): new method that drops a list of tables.
+1 -1
View File
@@ -449,7 +449,7 @@ static NSArray *contentFieldNames = nil;
[sql appendString: @"*"];
[sql appendString:@" FROM "];
if (requirement == bothTableRequired)
[sql appendFormat: @"%@ as a, %@ as b",
[sql appendFormat: @"%@ a, %@ b",
[self quickTableName], [self storeTableName]];
else
{