mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 18:03:04 +01:00
Fixed names and default value for EXTERNAL_TABLES_DIRS config parameter
This commit is contained in:
parent
14c972f906
commit
40432510b4
@ -98,7 +98,7 @@ const ConfigImpl::ConfigEntry ConfigImpl::entries[] =
|
||||
{TYPE_BOOLEAN, "CompleteBooleanEvaluation",(ConfigValue) false},
|
||||
{TYPE_INTEGER, "RemoteAuxPort", (ConfigValue) 0},
|
||||
{TYPE_STRING, "RemoteBindAddress", (ConfigValue) 0},
|
||||
{TYPE_STRING, "ExternalTablesDirs", (ConfigValue) "External"} // location(s) of external tables
|
||||
{TYPE_STRING, "ExternalTablesDirs", (ConfigValue) "ext"} // location(s) of external tables
|
||||
};
|
||||
|
||||
/******************************************************************************
|
||||
@ -421,7 +421,7 @@ const char *Config::getRemoteBindAddress()
|
||||
return (const char*) sysConfig.values[KEY_REMOTE_BIND_ADDRESS];
|
||||
}
|
||||
|
||||
const char *Config::getExternalTablesDirectory()
|
||||
const char *Config::getExternalTablesDirs()
|
||||
{
|
||||
return (const char*) sysConfig.values[KEY_EXTERNAL_FILES_DIRECTORY];
|
||||
return (const char*) sysConfig.values[KEY_EXTERNAL_TABLES_DIRS];
|
||||
}
|
||||
|
@ -101,7 +101,7 @@ class Config
|
||||
KEY_COMPLETE_BOOLEAN_EVALUATION, // 34
|
||||
KEY_REMOTE_AUX_PORT, // 35
|
||||
KEY_REMOTE_BIND_ADDRESS, // 36
|
||||
KEY_EXTERNAL_FILES_DIRECTORY // 37
|
||||
KEY_EXTERNAL_TABLES_DIRS // 37
|
||||
};
|
||||
|
||||
public:
|
||||
@ -294,7 +294,7 @@ public:
|
||||
/*
|
||||
Directory list for external tables
|
||||
*/
|
||||
static const char *getExternalTablesDirectory();
|
||||
static const char *getExternalTablesDirs();
|
||||
};
|
||||
|
||||
#endif // CONFIG_H
|
||||
|
@ -53,7 +53,7 @@
|
||||
# IT IS STRONGLY RECOMMENDED THAT THIS SETTING BE USED TO LIMIT
|
||||
# EXTERNAL TABLE LOCATIONS!
|
||||
#
|
||||
#ExternalTablesDirs =
|
||||
#ExternalTablesDirs = ext
|
||||
|
||||
|
||||
# ----------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user