2023年7月27日

C语言转义字符

摘要: 字符集(Character Set)为每个字符分配了唯一的编号,我们不妨将它称为编码值。在C语言中,一个字符除了可以用它的实体(也就是真正的字符)表示,还可以用编码值表示。这种使用编码值来间接地表示字符的方式称为转义字符(Escape Character)。转义字符以\或者\x开头,以\开头表示后跟 阅读全文

posted @ 2023-07-27 15:58 gelon 阅读(62) 评论(0) 推荐(0) 编辑

2023年2月23日

inux配置PATH路径

摘要: 查看PATH:echo $PATH以添加python3为列 修改方法一:export PATH=$PATH:HOME/bin:export PATH=$PATH:HOME/bin:/usr/local/python3/bin//配置完后可以通过echo $PATH查看配置结果。生效方法:立即生效有效 阅读全文

posted @ 2023-02-23 17:25 gelon 阅读(15) 评论(0) 推荐(0) 编辑

2022年10月18日

repmgr部署和测试

摘要: https://www.modb.pro/db/22029 https://blog.csdn.net/qq_34479012/article/details/125706815?app_version=5.9.0&code=app_1562916241&csdn_share_tail=%7B%22 阅读全文

posted @ 2022-10-18 09:59 gelon 阅读(21) 评论(0) 推荐(0) 编辑

2022年8月12日

postgresql添加系统表报错

摘要: 1.添加系统表后,执行make install报如下错误,未自动生成下面两个文件cp: cannot stat ‘./catalog/ux_user_status_d_compatible.h’: No such file or directorycp: cannot stat ‘./catalog 阅读全文

posted @ 2022-08-12 15:30 gelon 阅读(63) 评论(0) 推荐(0) 编辑

2022年5月31日

SourceInsight4.0修改字体大小

摘要: SourceInsight4.0修改字体大小 1、右键Options->Preferences。如图所示,然后找到Syntax Decorations选项,点击File Types 2、点击File Types后进如入下面界面 点击 Screen Font 3、点击 Screen Font,后进入如 阅读全文

posted @ 2022-05-31 18:00 gelon 阅读(2306) 评论(0) 推荐(1) 编辑

postgresql源码解读

摘要: 大量模块源码解读 https://blog.csdn.net/cuichao1900?type=blog 存储管理(内存管理、外存管理)源码解读,每行都有注释 https://blog.csdn.net/weixin_45644897?type=blog icode上相关postgresql的资源: 阅读全文

posted @ 2022-05-31 13:43 gelon 阅读(223) 评论(1) 推荐(0) 编辑

2022年5月16日

清理本地代码环境命令

摘要: git checkout .&&git clean -fxd 阅读全文

posted @ 2022-05-16 17:02 gelon 阅读(26) 评论(0) 推荐(0) 编辑

数据仓库服务 GaussDB(DWS)

摘要: 官网:总体介绍 https://support.huaweicloud.com/dws/index.html 部分源码解读 https://my.oschina.net/gaussdb?tab=newest&catalogId=11707215 阅读全文

posted @ 2022-05-16 15:23 gelon 阅读(56) 评论(0) 推荐(0) 编辑

2020年7月22日

undefined reference to symbol xxxxx和undefined symbol:xxxx错误的原因分析以及解决方法

摘要: Linux下编译程序时,经常会遇到“undefined reference to XXX” 报错,或者运行时出现undefined symbol:xxxx报错。 这里总结一些可能的原因和解决方案,给需要的朋友:说到这两个错误,必须先提一下Linux gcc链接规则:编译源代码时,链接的时候查找顺序是 阅读全文

posted @ 2020-07-22 11:07 gelon 阅读(2948) 评论(1) 推荐(0) 编辑

2020年6月29日

postgresql中的Windows构建

摘要: #ifdef EXEC_BACKEND 用于何处 在PostgreSQL的源代码 postmaster.c 的BackendStartup 函数中,有如下的部分(中间部分省略): #ifdef EXEC_BACKEND pid = backend_forkexec(port); #else /* ! 阅读全文

posted @ 2020-06-29 16:54 gelon 阅读(196) 评论(0) 推荐(0) 编辑

导航