Skip to content
Snippets Groups Projects
Commit d1561d55 authored by Ruud Overeem's avatar Ruud Overeem
Browse files

BugID: 679

Also trim spaces.
parent 132fc823
No related branches found
No related tags found
No related merge requests found
......@@ -64,9 +64,9 @@ CREATE OR REPLACE FUNCTION resolveVHparam(INT4, TEXT)
vRemainder := \'\';
END IF;
-- does paramname end in [] ?
IF rtrim(vParamName, \'[]\') != vParamName THEN
IF rtrim(vParamName, \'[] \') != vParamName THEN
vIsArray := true;
vParamName := rtrim(vParamName, \'[]\');
vParamName := rtrim(vParamName, \'[] \');
ELSE
vIsArray := false;
END IF;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment