OHDSI / WebAPI

OHDSI WebAPI contains all OHDSI services that can be called from OHDSI applications
Apache License 2.0
126 stars 156 forks source link

Error on src/main/resources/resources/cdmresults/sql/getConceptRecordCount.sql #2310

Closed ww166 closed 9 months ago

ww166 commented 9 months ago

Expected behavior

select concept_id, record_count, descendant_record_count from @resultTableQualifier.achilles_result_concept_count where concept_id IN (@conceptIdentifiers)

Actual behavior

select concept_id, record_count, descendant_record_count from @resultTableQualifier..achilles_result_concept_count where concept_id IN (@conceptIdentifiers)

Steps to reproduce behavior

In the sql statement, there is a wrong dot symbol

ww166 commented 9 months ago

This is the patch for fix for it: https://github.com/OHDSI/WebAPI/pull/2311