Skip to content

Commit 9b4b363

Browse files
committed
removed delete routine
1 parent a74d79f commit 9b4b363

3 files changed

Lines changed: 3 additions & 9 deletions

File tree

definitions/output/sample_data/pages_10k.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ publish('pages_10k', {
66
clusterBy: ['client', 'is_root_page', 'rank']
77
},
88
tags: ['crawl_complete']
9-
}).preOps(ctx => `
10-
DROP TABLE IF EXISTS ${ctx.self()};
11-
`).query(ctx => `
9+
}).query(ctx => `
1210
SELECT *
1311
FROM ${ctx.ref('crawl', 'pages')}
1412
WHERE date = '${constants.currentMonth}' AND

definitions/output/sample_data/parsed_css_10k.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ publish('parsed_css_10k', {
66
clusterBy: ['client', 'is_root_page', 'rank', 'page']
77
},
88
tags: ['crawl_complete']
9-
}).preOps(ctx => `
10-
DROP TABLE IF EXISTS ${ctx.self()};
11-
`).query(ctx => `
9+
}).query(ctx => `
1210
SELECT *
1311
FROM ${ctx.ref('crawl', 'parsed_css')}
1412
WHERE date = '${constants.currentMonth}' AND

definitions/output/sample_data/requests_10k.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ publish('requests_10k', {
66
clusterBy: ['client', 'is_root_page', 'is_main_document', 'type']
77
},
88
tags: ['crawl_complete']
9-
}).preOps(ctx => `
10-
DROP TABLE IF EXISTS ${ctx.self()};
11-
`).query(ctx => `
9+
}).query(ctx => `
1210
SELECT *
1311
FROM ${ctx.ref('crawl', 'requests')}
1412
WHERE date = '${constants.currentMonth}' AND

0 commit comments

Comments
 (0)