Skip to content

Commit 72602ab

Browse files
committed
Adding the chron control thickness function.
1 parent a714f62 commit 72602ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
CREATE OR REPLACE FUNCTION ts.updatechroncontroldepththickness({_chroncontrolid integer,_depth integer,_thickness integer,_analunitid integer})
1+
CREATE OR REPLACE FUNCTION ts.updatechroncontroldepththickness(_chroncontrolid integer,_depth integer,_thickness integer,_analunitid integer)
22
RETURNS void
33
LANGUAGE sql
44
AS $function$
55
UPDATE ndb.chroncontrols AS cc
66
SET depth = _depth, thickness = _thickness
77
WHERE cc.chroncontrolid = _chroncontrolid AND analysisunitid = _analunitid;
8-
$function$
8+
$function$;

0 commit comments

Comments
 (0)