Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

/********************************************************************************
file-centric-snapshot-language-unknown-acceptability.sql

Assertion:
Unknown acceptability for language reference set row

********************************************************************************/
insert into qa_result (runid, assertionuuid, concept_id, details)
select
<RUNID>,
'<ASSERTIONUUID>',
a.acceptabilityid,
concat('Language refset entry: ' , a.id, ' has unknown acceptability id=', a.acceptabilityid)
from curr_langrefset_s a
where a.active = 1
and a.acceptabilityid != '900000000000548007'
and a.acceptabilityid != '900000000000549004';
1 change: 1 addition & 0 deletions importer/src/main/resources/xml/lists/manifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@
<script uuid="fc24db60-7856-11e1-b0c4-0800200c9a66" category="file-centric-validation" sqlFile="file-centric-snapshot-language-unique-id.sql" text="The current Language Refset snapshot file does not contain duplicate Member Ids." />
<script uuid="ffe6c560-7856-11e1-b0c4-0800200c9a66" category="file-centric-validation" sqlFile="file-centric-snapshot-language-unique-fsn.sql" text="Every concept's FSN exists exactly once in each language refset." />
<script uuid="03cf9850-7857-11e1-b0c4-0800200c9a66" category="file-centric-validation" sqlFile="file-centric-snapshot-language-unique-pt.sql" text="Preferred Term exists exactly once in each language refset for each concept." />
<script uuid="762f56d0-bd54-4ad4-9668-fd88daa8e4b2" category="file-centric-validation" sqlFile="file-centric-snapshot-language-unknown-acceptability.sql" text="Unknown acceptability for language reference set row." />
<script uuid="4dbfed80-79b9-11e1-b0c4-0800200c9a66" category="file-centric-validation" sqlFile="file-centric-snapshot-inferred-relationship-immutable.sql" text="There is a 1-to-1 relationship between the id and the immutable values in Inferred Relationship snapshot." />
<script uuid="6b34ab30-79b9-11e1-b0c4-0800200c9a66" category="file-centric-validation" sqlFile="file-centric-snapshot-inferred-relationship-valid-destinationid.sql" text="All destination ids found in the Inferred Relationship snapshot file exist in the Concept snapshot file." />
<script uuid="72184790-79b9-11e1-b0c4-0800200c9a66" category="file-centric-validation" sqlFile="file-centric-snapshot-inferred-relationship-valid-sourceid.sql" text="All source ids found in the Inferred Relationship snapshot file exist in the Concept snapshot file." />
Expand Down