ฉันใหม่ที่ postgres (และที่ระบบข้อมูลฐานข้อมูลทั้งหมด) ฉันรันสคริปต์ sql ในฐานข้อมูลของฉัน:
create table cities (
id serial primary key,
name text not null
);
create table reports (
id serial primary key,
cityid integer not null references cities(id),
reportdate date not null,
reporttext text not null
);
create user www with password 'www';
grant select on cities to www;
grant insert on cities to www;
grant delete on cities to www;
grant select on reports to www;
grant insert on reports to www;
grant delete on reports to www;
grant select on cities_id_seq to www;
grant insert on cities_id_seq to www;
grant delete on cities_id_seq to www;
grant select on reports_id_seq to www;
grant insert on reports_id_seq to www;
grant delete on reports_id_seq to www;
เมื่อในฐานะผู้ใช้ www พยายาม:
insert into cities (name) values ('London');
ฉันได้รับข้อผิดพลาดต่อไปนี้:
ERROR: permission denied for sequence cities_id_seq
ฉันเข้าใจว่าปัญหาอยู่ที่ประเภทอนุกรม นั่นเป็นเหตุผลที่ฉันให้สิทธิ์เลือกแทรกและลบสิทธิ์สำหรับ * _id_seq ถึง www แต่นี่ไม่ได้ช่วยแก้ปัญหาของฉัน ฉันกำลังคิดถึงอะไร