回复: Partitioned table permission question

2021-04-21 Thread Junfeng Yang
I see. Thanks for your explanation!

Re: Partitioned table permission question

2021-04-20 Thread Amit Langote
On Tue, Apr 20, 2021 at 9:00 PM Junfeng Yang wrote: > Hi hackers, > > As I played with the partitioned table with GRANT, I found two questions. > Let's see an example: > > > CREATE TABLE measurement ( > city_id int not null, > logdate date not null, > peaktempin

Partitioned table permission question

2021-04-20 Thread Junfeng Yang
Hi hackers, As I played with the partitioned table with GRANT, I found two questions. Let's see an example: CREATE TABLE measurement ( city_id int not null, logdate date not null, peaktempint, unitsales int ) PARTITION BY RANGE (logdate); CREATE TAB