mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-17 07:33:57 +00:00
Renamed folder cache creation method
This commit is contained in:
@@ -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];
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
@interface GCSSpecialQueries (SOGoCacheObject)
|
||||
|
||||
- (NSString *) createOpenChangeFSTableWithName: (NSString *) tableName;
|
||||
- (NSString *) createSOGoCacheGCSFolderTableWithName: (NSString *) tableName;
|
||||
|
||||
@end
|
||||
|
||||
|
||||
@@ -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 %@ ("
|
||||
|
||||
Reference in New Issue
Block a user