एक्सटेंशन मौजूद है लेकिन 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, …