Skip to content

Commit

Permalink
Add revtr autoloaded tables (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
cristinaleonr authored Sep 21, 2023
1 parent eb03900 commit 4a68302
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions views/create_dataset_views.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,12 @@ if [[ ${DST_PROJECT} = "measurement-lab" ]] ; then
# WEHE
create_view ${SRC_PROJECT} ${DST_PROJECT} wehe ./wehe/scamper1.sql
create_view ${SRC_PROJECT} ${DST_PROJECT} wehe ./wehe/scamper1_hopannotation2.sql

# REVTR
create_view ${SRC_PROJECT} ${DST_PROJECT} revtr ./revtr/ping1.sql
create_view ${SRC_PROJECT} ${DST_PROJECT} revtr ./revtr/revtr1.sql
create_view ${SRC_PROJECT} ${DST_PROJECT} revtr ./revtr/trace1.sql
create_view ${SRC_PROJECT} ${DST_PROJECT} revtr ./revtr/traceatlas1.sql
fi

# NDT extended (mixed parsers)
Expand Down
3 changes: 3 additions & 0 deletions views/revtr_raw/ping1.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- This is the raw revtr view for the ping1 datatype.
--
SELECT * FROM `{{.ProjectID}}.raw_revtr.ping1`
3 changes: 3 additions & 0 deletions views/revtr_raw/revtr1.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- This is the raw revtr view for the revtr1 datatype.
--
SELECT * FROM `{{.ProjectID}}.raw_revtr.revtr1`
3 changes: 3 additions & 0 deletions views/revtr_raw/trace1.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- This is the raw revtr view for the trace1 datatype.
--
SELECT * FROM `{{.ProjectID}}.raw_revtr.trace1`
3 changes: 3 additions & 0 deletions views/revtr_raw/traceatlas1.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- This is the raw revtr view for the traceatlas1 datatype.
--
SELECT * FROM `{{.ProjectID}}.raw_revtr.traceatlas1`

0 comments on commit 4a68302

Please sign in to comment.