Skip to content

Commit

Permalink
Merge pull request #142 from Thejagd27/dev
Browse files Browse the repository at this point in the history
added one more processor
  • Loading branch information
Thejagd27 authored Mar 7, 2023
2 parents f227fc9 + a01a547 commit 4160b60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ingestion/query/ingestionQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const IngestionDatasetQuery = {
AND pipeline_pid = (SELECT pid
FROM spec.pipeline
WHERE event_pid = (SELECT pid FROM spec.event WHERE event_name = $3)
AND dataset_pid = (SELECT pid from spec.dataset where dataset_name = $1))
AND dataset_pid = (SELECT pid from spec.dataset WHERE LOWER(dataset_name) = LOWER($1)))
RETURNING pid;`;
return {query: queryStr, values: [datasetName, fileName, ingestionName]};
},
Expand Down

0 comments on commit 4160b60

Please sign in to comment.