Renamed folder cache creation method

pull/39/head
Ludovic Marcotte 2014-05-14 09:56:10 -04:00
parent a54b3e4289
commit be72456a9a
3 changed files with 6 additions and 6 deletions

View File

@ -329,7 +329,7 @@ static NSMapTable *contextsTable = nil;
tableName]])
{
queries = [channel specialQueries];
query = [queries createOpenChangeFSTableWithName: tableName];
query = [queries createSOGoCacheGCSFolderTableWithName: tableName];
if ([channel evaluateExpressionX: query])
[NSException raise: @"MAPIStoreIOException"
format: @"could not create special table '%@'", tableName];

View File

@ -25,7 +25,7 @@
@interface GCSSpecialQueries (SOGoCacheObject)
- (NSString *) createOpenChangeFSTableWithName: (NSString *) tableName;
- (NSString *) createSOGoCacheGCSFolderTableWithName: (NSString *) tableName;
@end

View File

@ -35,7 +35,7 @@
/* FIXME: c_parent_path should be indexed */
- (NSString *) createOpenChangeFSTableWithName: (NSString *) tableName
- (NSString *) createSOGoCacheGCSFolderTableWithName: (NSString *) tableName
{
[self subclassResponsibility: _cmd];
@ -46,7 +46,7 @@
@implementation GCSPostgreSQLSpecialQueries (SOGoObjectCache)
- (NSString *) createOpenChangeFSTableWithName: (NSString *) tableName
- (NSString *) createSOGoCacheGCSFolderTableWithName: (NSString *) tableName
{
static NSString *sqlFolderFormat
= (@"CREATE TABLE %@ ("
@ -66,7 +66,7 @@
@implementation GCSMySQLSpecialQueries (SOGoObjectCache)
- (NSString *) createOpenChangeFSTableWithName: (NSString *) tableName
- (NSString *) createSOGoCacheGCSFolderTableWithName: (NSString *) tableName
{
static NSString *sqlFolderFormat
= (@"CREATE TABLE %@ ("
@ -86,7 +86,7 @@
@implementation GCSOracleSpecialQueries (SOGoObjectCache)
- (NSString *) createOpenChangeFSTableWithName: (NSString *) tableName
- (NSString *) createSOGoCacheGCSFolderTableWithName: (NSString *) tableName
{
static NSString *sqlFolderFormat
= (@"CREATE TABLE %@ ("