มีส่วนขยายอยู่ แต่ uuid_generate_v4 ล้มเหลว
ที่ amazon ec2 RDS Postgresql: => SHOW rds.extensions; rds.extensions -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- btree_gin,btree_gist,chkpass,citext,cube,dblink,dict_int,dict_xsyn,earthdistance,fuzzystrmatch,hstore,intagg,intarray,isn,ltree,pgcrypto,pgrowlocks,pg_trgm,plperl,plpgsql,pltcl,postgis,postgis_tiger_geocoder,postgis_topology,sslinfo,tablefunc,tsearch2,unaccent,uuid-ossp (1 row) อย่างที่คุณเห็นมีuuid-osspส่วนขยายอยู่ อย่างไรก็ตามเมื่อฉันเรียกใช้ฟังก์ชันสำหรับการสร้างuuid_v4มันล้มเหลว: CREATE TABLE my_table ( id uuid DEFAULT uuid_generate_v4() NOT NULL, name character varying(32) NOT NULL, ); เกิดอะไรขึ้นกับสิ่งนี้?