Untitled
unknown
plain_text
2 years ago
1.2 kB
15
Indexable
drop table if exists MOSYAGIN__STAGING.dialogs;
drop table if exists MOSYAGIN__STAGING.groups;
drop table if exists MOSYAGIN__STAGING.users;
create table MOSYAGIN__STAGING.users
(
id int PRIMARY KEY,
chat_name varchar(200),
registration_dt datetime,
country varchar(200),
age int
)
ORDER BY id
SEGMENTED BY HASH(id) ALL NODES;
create table MOSYAGIN__STAGING.groups
(
id int PRIMARY KEY,
admin_id int, -- REFERENCE MOSYAGIN__STAGING.users(id),
group_name varchar(100),
registration_dt datetime,
is_private boolean
)
order by id, admin_id
SEGMENTED BY hash(id) all nodes
PARTITION BY registration_dt::date
GROUP BY calendar_hierarchy_day(registration_dt::date, 3, 2);
;
create table MOSYAGIN__STAGING.dialogs
(
message_id int PRIMARY KEY,
message_ts datetime,
message_from int, -- REFERENCES MOSYAGIN__STAGING.users(id),
message_to int, -- REFERENCES MOSYAGIN__STAGING.users(id),
message varchar(1000),
message_group int
)
order by message_id
SEGMENTED BY hash(message_id) all nodes
PARTITION BY message_ts::date
GROUP BY calendar_hierarchy_day(message_ts::date, 3, 2);
;Editor is loading...
Leave a Comment