patch 4.0

This commit is contained in:
wangzelin.wzl
2022-10-24 10:34:53 +08:00
parent 4ad6e00ec3
commit 93a1074b0c
10533 changed files with 2588271 additions and 2299373 deletions

View File

@ -13,21 +13,23 @@
#ifndef _OB_SQL_CONFIG_PROVIDER_H
#define _OB_SQL_CONFIG_PROVIDER_H 1
namespace oceanbase {
namespace sql {
class ObSQLConfigProvider {
namespace oceanbase
{
namespace sql
{
class ObSQLConfigProvider
{
public:
ObSQLConfigProvider(){};
virtual ~ObSQLConfigProvider(){};
ObSQLConfigProvider() {};
virtual ~ObSQLConfigProvider() {};
virtual bool is_read_only() const = 0;
virtual int64_t get_nlj_cache_limit() const = 0;
private:
// disallow copy
DISALLOW_COPY_AND_ASSIGN(ObSQLConfigProvider);
};
} // end namespace sql
} // end namespace oceanbase
} // end namespace sql
} // end namespace oceanbase
#endif /* _OB_SQL_CONFIG_PROVIDER_H */