18 lines
644 B
MySQL
18 lines
644 B
MySQL
-- Promote the reviewed customer QA example for the standard AU metric.
|
|
|
|
UPDATE sg_qa_vector_example
|
|
SET reference_status = 'APPROVED',
|
|
inspection_status = 'VERIFIED',
|
|
inspection_note = 'Customer QA reviewed: standard AU is measured with AU_FLAG and excluded-user filtering.',
|
|
verified_at = SYSTIMESTAMP,
|
|
verified_by = 'SGMP_POC_METADATA_REVIEW'
|
|
WHERE source_type = 'CUSTOMER_QA_BENCHMARK'
|
|
AND source_case_id = 'CZN-02';
|
|
|
|
COMMIT;
|
|
|
|
SELECT example_id, reference_status, inspection_status, source_case_id
|
|
FROM sg_qa_vector_example
|
|
WHERE source_type = 'CUSTOMER_QA_BENCHMARK'
|
|
AND source_case_id = 'CZN-02';
|