mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-19 21:53:19 +00:00
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:
@@ -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.
|
||||
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user