摘要:
SELECT A.attnum, ( SELECT description FROM pg_catalog.pg_description WHERE objoid = A.attrelid AND objsubid = A.attnum ) AS descript, A.attname, ( sel 阅读全文
摘要:
MGR简介 MySQL Group Replication(下简称:MGR)是MySQL官方推出的一种基于Paxos协议的状态机复制。在MGR出现之前,用户常见的MySQL高可用方式,无论怎么变化架构,本质就是Master-Slave架构。MySQL 5.7版本开始支持无损半同步复制(lossles 阅读全文
摘要:
前言 安装 PostgreSQL 时报错,以下 复制代码 configure: error: readline library not found If you have readline already installed, see config.log for details on the fa 阅读全文
摘要:
Python自带的数据结构dict非常好用,之前不知道怎么比较2个字典是否相同,做法是一个一个key比较过去。 现在想到可以直接用==进行判断!!! a = dict(one=1, two=2, three=3) b = {'one': 1, 'two': 2, 'three': 3} c = di 阅读全文
摘要:
前言 安装 PostgreSQL 时报错,以下 configure: error: readline library not found If you have readline already installed, see config.log for details on the failure 阅读全文