[CP] remove unsafe urls
This commit is contained in:
@ -186,7 +186,6 @@ private:
|
|||||||
// RetireStation is a data structure that guarantees memory safety through delayed delete
|
// RetireStation is a data structure that guarantees memory safety through delayed delete
|
||||||
// using a thread local retire list
|
// using a thread local retire list
|
||||||
//
|
//
|
||||||
// Doc: https://yuque.antfin-inc.com/ob/transaction/retire_station
|
|
||||||
class RetireStation
|
class RetireStation
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
2
deps/oblib/src/lib/charset/ob_charset.h
vendored
2
deps/oblib/src/lib/charset/ob_charset.h
vendored
@ -24,7 +24,6 @@ namespace oceanbase
|
|||||||
namespace common
|
namespace common
|
||||||
{
|
{
|
||||||
|
|
||||||
// 学习字符集推荐个网站 https://www.qqxiuzi.cn/daohang.htm
|
|
||||||
// 我们目前的字符集实现参考MySQL,现在MySQL源码,进入strings目录,
|
// 我们目前的字符集实现参考MySQL,现在MySQL源码,进入strings目录,
|
||||||
// 根据文件名后缀可以大体找到对应编码实现
|
// 根据文件名后缀可以大体找到对应编码实现
|
||||||
|
|
||||||
@ -108,7 +107,6 @@ enum ObCollationType
|
|||||||
|
|
||||||
// oracle 模式下字符集名称对应的 ID 值
|
// oracle 模式下字符集名称对应的 ID 值
|
||||||
// https://docs.oracle.com/cd/B19306_01/server.102/b14200/functions095.htm
|
// https://docs.oracle.com/cd/B19306_01/server.102/b14200/functions095.htm
|
||||||
// https://blog.csdn.net/guizicjj/article/details/4434088
|
|
||||||
enum ObNlsCharsetId
|
enum ObNlsCharsetId
|
||||||
{
|
{
|
||||||
CHARSET_INVALID_ID = 0,
|
CHARSET_INVALID_ID = 0,
|
||||||
|
4
deps/oblib/src/lib/ob_define.h
vendored
4
deps/oblib/src/lib/ob_define.h
vendored
@ -33,7 +33,6 @@ namespace common
|
|||||||
// All objects have common ID Type, including Table/Partition and so on.
|
// All objects have common ID Type, including Table/Partition and so on.
|
||||||
// Define 'uint64_t' as Object ID Type for code-compatibility temporarily.
|
// Define 'uint64_t' as Object ID Type for code-compatibility temporarily.
|
||||||
// TODO: Use 'int64_t' instead when all objects are ready.
|
// TODO: Use 'int64_t' instead when all objects are ready.
|
||||||
// See: https://yuque.antfin-inc.com/ob/rootservice/lvnlgi
|
|
||||||
|
|
||||||
// Common Object ID Type
|
// Common Object ID Type
|
||||||
typedef uint64_t ObObjectID;
|
typedef uint64_t ObObjectID;
|
||||||
@ -853,8 +852,6 @@ const int64_t OB_SCHEMA_CODE_VERSION = 1;
|
|||||||
*
|
*
|
||||||
* OBJECT_ID FOR INNER OBJECTS (0, 500000)
|
* OBJECT_ID FOR INNER OBJECTS (0, 500000)
|
||||||
*
|
*
|
||||||
* For more details: https://yuque.antfin-inc.com/ob/product_functionality_review/fgcxak
|
|
||||||
*
|
|
||||||
* To avolid confict, border for each range should not be used.
|
* To avolid confict, border for each range should not be used.
|
||||||
*
|
*
|
||||||
* ################################################################################
|
* ################################################################################
|
||||||
@ -1449,7 +1446,6 @@ OB_INLINE uint64_t combine_sequence_id(int64_t rootservice_epoch, uint64_t pure_
|
|||||||
* 1) If tenant_id = OB_SYS_TENANT_ID, it's sys tenant.
|
* 1) If tenant_id = OB_SYS_TENANT_ID, it's sys tenant.
|
||||||
* 2) If tenant_id is odd, it's meta tenant.
|
* 2) If tenant_id is odd, it's meta tenant.
|
||||||
* 3) If tenant_id is even, it't user tenant.
|
* 3) If tenant_id is even, it't user tenant.
|
||||||
* https://yuque.antfin-inc.com/ob/rootservice/cnxdv7#pIAUC
|
|
||||||
*/
|
*/
|
||||||
OB_INLINE bool is_sys_tenant(const uint64_t tenant_id)
|
OB_INLINE bool is_sys_tenant(const uint64_t tenant_id)
|
||||||
{
|
{
|
||||||
|
@ -28,7 +28,6 @@
|
|||||||
* 3. ObHKVTable
|
* 3. ObHKVTable
|
||||||
* 4. ObTableServiceClient
|
* 4. ObTableServiceClient
|
||||||
*
|
*
|
||||||
* @see https://lark.alipay.com/ob-public/ob_nosql for the user guide.
|
|
||||||
*/
|
*/
|
||||||
namespace oceanbase
|
namespace oceanbase
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user