I am trying to create a stored procedure in Hana Studio. In the stored procedure ,I am trying to give a default value to the input. my code is,
CREATE PROCEDURE defaultSchemaName.procedureName (IN INPUT NVARCHAR(10) DEFAULT 'TEST')
This runs fine when I am trying to create a .hdbprocedure but fails when I want to create a .procedure.
Is there any way to use a default procedure in Design Time?