Skip to content

Instantly share code, notes, and snippets.

@janantala
Last active October 6, 2019 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save janantala/d89d984489220deaa63baf2a5d808fb7 to your computer and use it in GitHub Desktop.
Save janantala/d89d984489220deaa63baf2a5d808fb7 to your computer and use it in GitHub Desktop.
CREATE TABLE rtls_session_tracks_byday (
operation_id text,
year_day text,
floor_id text,
start timestamp,
tag_id text,
sequence_number int,
positions_x frozen<list<float>>,
positions_y frozen<list<float>>,
positions_time frozen<list<timestamp>>,
PRIMARY KEY ((operation_id, year_day, floor_id), start, tag_id, sequence_number)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment