Skip to content

Commit

Permalink
feat: addressnulls (#1369)
Browse files Browse the repository at this point in the history
Co-authored-by: Derek Roberts <derek.roberts@gmail.com>
  • Loading branch information
ronrobb and DerekRoberts authored Jul 9, 2024
1 parent 704a523 commit b7baa87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ services:
ORACLE_HOST: ${ORACLE_HOST:-nrcdb03.bcgov}
ORACLE_PORT: ${ORACLE_PORT:-1543}
ORACLE_SERVICE: ${ORACLE_SERVICE:-dbq01.nrs.bcgov}
ORACLE_SYNC_PASSWORD: ${ORACLE_PASSWORD}
ORACLE_SYNC_USER: ${ORACLE_USER:-proxy_fsa_spar_read_only_user}
ORACLE_SYNC_PASSWORD: ${ORACLE_SYNC_PASSWORD}
ORACLE_SYNC_USER: ${ORACLE_SYNC_USER:-proxy_fsa_spar_read_only_user}
depends_on:
database:
condition: service_started
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SELECT
, spt.pollen_count
, spt.smp_success_pct
, spt.non_orchard_pollen_contam_pct
, spt.total_genetic_worth_contrib
, COALESCE(spt.total_genetic_worth_contrib,0) total_genetic_worth_contrib
, spt.revision_count
FROM spar.seedlot_parent_tree spt
WHERE spt.seedlot_number = %(p_seedlot_number)s
Expand Down

0 comments on commit b7baa87

Please sign in to comment.