Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
Signed-off-by: Shenoy Pratik <sgguruda@amazon.com>
  • Loading branch information
ps48 committed Sep 22, 2023
1 parent 4c461dc commit f483d9b
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,10 @@ const skippingIndexQueryBuilder = (accelerationformData: CreateAccelerationForm)
* field3 MIN_MAX,
* )
*/
console.log('index builder started');
let codeQuery = 'CREATE SKIPPING INDEX ON ' + accelerationformData.dataTable;
codeQuery = codeQuery + '\n FOR COLUMNS ( \n';
codeQuery = codeQuery + buildSkippingIndexColumns(accelerationformData.skippingIndexQueryData);
codeQuery = codeQuery + ')';
console.log('index builder finished', codeQuery);
return codeQuery;
};

Expand All @@ -47,7 +45,6 @@ const materializedQueryViewBuilder = (accelerationformData: CreateAccelerationFo
};

export const accelerationQueryBuilder = (accelerationformData: CreateAccelerationForm) => {
console.log('accelerationQueryBuilder started', accelerationformData);
switch (accelerationformData.accelerationIndexType) {
case 'skipping': {
return skippingIndexQueryBuilder(accelerationformData);
Expand Down

0 comments on commit f483d9b

Please sign in to comment.