Skip to content

Commit

Permalink
fix(be:FSADT1-1528): fixed column alias (#1222)
Browse files Browse the repository at this point in the history
  • Loading branch information
mamartinezmejia authored Oct 8, 2024
1 parent 61fb349 commit 77dc814
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Flux<ForestClientEntity> findClientByIncorporationOrName(
c.legal_middle_name as client_middle_name,
cl.city as city,
ctc.description as client_type,
csc.description as status_code,
csc.description as client_status,
100 as score
FROM the.forest_client c
LEFT JOIN the.CLIENT_DOING_BUSINESS_AS dba ON c.client_number = dba.client_number
Expand All @@ -128,4 +128,4 @@ Flux<ForestClientEntity> findClientByIncorporationOrName(
OFFSET :offset ROWS FETCH NEXT :limit ROWS ONLY""")
Flux<PredictiveSearchResultDto> findByEmptyFullSearch(int limit, long offset);

}
}

0 comments on commit 77dc814

Please sign in to comment.