Skip to content

Commit

Permalink
fix(ci): SQL formatting for CodeQL
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Aug 27, 2024
1 parent 4a9c59c commit 1e7aac9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions legacy_translated/SPR_SEEDLOT.ts
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ interface t_pt_calc {
pct_tested_parent_trees_WVE: number; // NUMBER(3)
pct_tested_parent_trees_WWD: number; // NUMBER(3)
pct_tested_parent_trees: number; // NUMBER(3)
pct_untested_parent_trees: number; // NUMBER(3));
pct_untested_parent_trees: number; // NUMBER(3)
}

let r_pt_contrib: t_pt_calc | null;
Expand All @@ -410,7 +410,7 @@ const CONST_CLASS_A_COPY_MAX : string; // CONSTANT VARCHAR2(5) = '62999';
* they have already been retrieved.
*/
function get_previous_seedlot_values(p_force: boolean = false) {
// Previous: SELECT * FROM seedlot WHERE seedlot_number = g_seedlot_number;
// Previous: SELECT * FROM seedlot WHERE seedlot_number = g_seedl ot_number;
// --if record is empty or caller specified FORCE option
if (r_previous.seedlot_number == null || p_force) {
// OPEN c_previous;
Expand Down

0 comments on commit 1e7aac9

Please sign in to comment.