Skip to content

Commit

Permalink
clean up unnecassry comments
Browse files Browse the repository at this point in the history
Signed-off-by: Kawika Avilla <[email protected]>
  • Loading branch information
kavilla committed Aug 29, 2024
1 parent 7d40c09 commit bf1b15a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/plugins/query_enhancements/public/datasets/s3_handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,11 @@ export const s3TypeConfig: DatasetTypeConfig = {
},

fetchFields: async (dataset: Dataset): Promise<DatasetField[]> => {
// Implement field fetching logic here
return [];
},

supportedLanguages: (dataset: Dataset): string[] => {
return ['SQL']; // Assuming S3 only supports SQL queries
return ['SQL'];
},
};

Expand Down

0 comments on commit bf1b15a

Please sign in to comment.