Posts

Showing posts from April, 2019

2023-09-13, Wednesday, Cloudy

新工上遇上了挫折。寫好的東西達不到標準需要別人執手尾了。雖然同事說沒關係,但反應了自己的不足。有時反省自己為何做事總是不好,為何別人有留意或想到的事情自己總是忽略。現在覺得是自己天生的思考模式問題,可能看多少書都沒用。或者自己應該更適合做地盤呢類工作,而唔係IT。

To install ossp-uuid on postgres 10.7 on centos 7 from source

1. install missing lib yum -y install e2fsprogs-devel uuid-devel libuuid-devel 2. simple get into source folder(e.g. postgresql-19.7/contrib/uuid-ossp), then make && make install 3. Install in pgsql CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; 4. Test the function select uuid_generate_v4(); From: https://www.fengiling.com/blog/view/?id=612683