Oninit Logo
The Down System Specialists
+1-913-674-0360
+44-2081-337529
Partnerships Contact
Finderr

-685 Function returns too few values.

The number of returned values from a function is less than the number of values that the caller expects.

Example of error:

CREATE ROUTINE testroutine (arg INT) RETURNING INT, INT; RETURN 1,2; END ROUTINE

UPDATE tab SET (c1, c2, c3) = (testroutine(1)); -- error