Skip to content

Commit

Permalink
Add dataset_id to SQL SELECT statement
Browse files Browse the repository at this point in the history
- Inserted `dataset.dataset_id` into the SELECT statement
- Ensures the dataset ID is retrieved along with other fields
- Enhances data completeness for downstream processes
  • Loading branch information
TDeSain committed Nov 19, 2024
1 parent 96ec3cc commit 3a3e1fd
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public List<Map<String, String>> getHackyBDCRows() {
String sql =
"""
SELECT
dataset.dataset_id as dataset_id,
dataset.abbreviation AS abbreviation,
dataset.full_name AS name,
CASE
Expand Down

0 comments on commit 3a3e1fd

Please sign in to comment.