You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This valid Informix function does not convert correctly to PostgreSQL:
CREATE FUNCTION test_returning()
RETURNING VARCHAR(3), VARCHAR(3) ;
RETURN '0','1';
END FUNCTION
The output shows some memory issue too, as it has mungled text:
CREATE OR REPLACE FUNCTION test_returning()
RETURNING VARCHAR(3), VARCHAR(3) ; AS $$
BEGIN
RETURN '0','1';
END;
$$ LANGUAGE plpgsql;
AGE plpgsql;
GE plpgsql;
END CREATE FUNCTION;
LANGUAGE plpgsql;
The text was updated successfully, but these errors were encountered:
This valid Informix function does not convert correctly to PostgreSQL:
The output shows some memory issue too, as it has mungled text:
The text was updated successfully, but these errors were encountered: