Skip to content

Commit 9c56474

Browse files
committed
Adding function that seems to be throwing errors. ts.updatechroncontroldepththickness() now exists.
1 parent d949521 commit 9c56474

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CREATE OR REPLACE FUNCTION ts.updatechroncontrolanalysisunit(_chroncontrolid integer, _depth integer, _thickness integer, _analunitid integer)
2+
RETURNS void
3+
LANGUAGE sql
4+
AS $function$
5+
UPDATE ndb.chroncontrols AS cc
6+
SET depth = _depth, thickness = _thickness
7+
WHERE cc.chroncontrolid = _chroncontrolid AND analysisunitid = _analunitid;
8+
$function$

0 commit comments

Comments
 (0)