-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RWB] Release 12.0 to RWB prod #1699
Comments
Test cases:
|
Screen Recording 2025-02-18 at 2.11.21 PM.zip
az_recorder_20250218_141803.mp4.zip
|
IssueThe root cause for this is that, the org name includes "-", which causes issue while invoking sql query. Current SQL querySELECT media.id as id,
media.uuid as uuid,
media.subject_first_name as subject_first_name,
media.subject_last_name as subject_last_name,
media.subject_middle_name as subject_middle_name,
media.is_voided as is_voided,
media.created_by_id as created_by_id,
media.last_modified_by_id as last_modified_by_id,
media.created_date_time as created_date_time,
media.last_modified_date_time as last_modified_date_time,
media.organisation_id as organisation_id,
media.image_url as image_url,
media.sync_parameter_key1 as sync_parameter_key1,
media.sync_parameter_key2 as sync_parameter_key2,
media.sync_parameter_value1 as sync_parameter_value1,
media.sync_parameter_value2 as sync_parameter_value2,
media.subject_type_name as subject_type_name,
media.encounter_type_name as encounter_type_name,
media.program_name as program_name,
media.concept_name as concept_name,
row_to_json(address.*) as address,
media.entity_id as entity_id
FROM gdgs25-26uat.media media
JOIN gdgs25-26uat.address address ON address.id = media.address_id
where media.image_url is not null
and media.is_voided is false
ORDER BY media.created_date_time desc; Required fixEnclose schemaName value withing Double-Quotes. i.e. gdgs25-26uat => "gdgs25-26uat" |
Responses to below issues are in-line
|
We have deployed 12.0 and not 12.0.1 - just noting for my reference |
|
@himeshr we decided to support the special characters in schema name in media viewer in standup. So basically the discussion was like anything that postgres allows we can support it. Will create a separate card for this. |
AC:
- Also need to do the steps in this section:
Already Done on RWB staging but not on RWB Prod:
The text was updated successfully, but these errors were encountered: