摘要:
1. tasks.json 中 tasks 的 label 项必须和 launch.json 的 preLaunchTask 相对应 2. task中的type类型必须是shell,如下:"type": "shell", 阅读全文
摘要:
在用Git去clone的时候遇到以下问题: 1234Use git lfs logs last to view the log.error: external filter 'git-lfs filter-process' failedfatal: data/processed/career_bui 阅读全文
摘要:
在正文开始之前,首先对OceanBase整体架构和存储引擎做一个简单介绍,以帮助更好地理解OceanBase的事务引擎 1 整体架构 OceanBase(以下简称OB)是一个分布式关系数据库系统,是典型的shared-nothing架构。其架构如下图1所示: 图1 OceanBase整体架构 Oce 阅读全文
摘要:
People sometimes want to use PostgreSQL to implement row-level security, and historically it has not been very easy to do that securely. You can try t 阅读全文
摘要:
https://www.2ndquadrant.com/en/blog/how-do-postgresql-security_barrier-views-work/ 阅读全文
摘要:
一,什么是GaussDB?这次高斯不是数学家 GaussDB是华为公司数据库产品品牌名。华为公司从开始自研数据库至今已经有近20年历史,其中经历了早期发展、GaussDB的诞生和发展、数据库产业化三个阶段。本文简明介绍华为公司自研数据库的历程,并给出一些GaussDB的里程碑时间点。GaussDB的 阅读全文
摘要:
openGauss数据库自2020年6月30日开源至今已有10个月了,在这短短的10个月内,openGauss社区用户下载量已达13W+、issue合并2000+、发行商业版本6个。仅3月份就有11家企业完成CLA签署,包括虚谷伟业、云和恩墨、优炫软件、海量数据、柏睿数据、快立方,电信天翼云、东方通 阅读全文
摘要:
https://oopsdc.com/post/lxrunoffline/ 阅读全文
摘要:
git config --global diff.tool vimdiff git config --global difftool.prompt false git config --global alias.d difftool然后运行git d试试效果。git diff应该还是保留原状的 阅读全文
摘要:
#include <iostream> template <typename... Args> inline void my_print(const char* format, Args... rest) { printf(format, rest...); } int main(int argc, 阅读全文