摘要:
磨砺技术珠矶,践行数据之道,追求卓越价值回到上一级页面:PostgreSQL内部结构与源代码研究索引页 回到顶级页面:PostgreSQL索引页看代码:/* File path names (all relative to $PGDATA) */ #define BACKUP_LABEL_FILE backup_label #define BACKUP_LABEL_OLD backup_label.old 在特定条件下,会有一个文件,名为 backup_label在StartupXL... 阅读全文
摘要:
例子如下[pgsql@localhost soft]$ cat test1.c#include #include int main(){ int a,b,c; a = 10; b =20; c = 30; a = b =c; fprintf(stderr,"a :%d\n",a); fprintf(stderr,"b :%d\n",b); fprintf(stderr,"c :%d\n",c); return 0;}[pgsql@localhost soft]$ 运行:[pgsql@localhost soft]$ ./test1a 阅读全文