16 lines
920 B
MySQL
16 lines
920 B
MySQL
-- Approve the reviewed customer QA example for daily in-game currency holdings.
|
|
|
|
UPDATE sg_qa_vector_example
|
|
SET reference_status = 'APPROVED',
|
|
inspection_status = 'VERIFIED',
|
|
answer_text = 'Expected focus: daily crystal holdings use CZN_CUSTOM_GOODS_HAVE_TXN joined to CZN_COMN_USER_MST and CZN_COMN_SVC_DIM_BAS. '
|
|
|| 'Filter the goods dimension to crystal, nonzero HAVE_CNT, eligible returning-user population, and the requested date range; group by BASE_DT. '
|
|
|| 'A successfully executed empty result is valid. Historical answer: no result rows.',
|
|
inspection_note = 'Customer QA verified: daily crystal holdings are a date-grouped goods/user/dimension join; empty output is valid.',
|
|
verified_at = SYSTIMESTAMP,
|
|
verified_by = 'SGMP_POC_METADATA_REVIEW'
|
|
WHERE source_type = 'CUSTOMER_QA_BENCHMARK'
|
|
AND source_case_id = 'CZN-07';
|
|
|
|
COMMIT;
|