I see. Thanks for your explanation!
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
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