ISQL: change results of SHOW FUNC command like they are in SHOW PROC one
------------------------------------------------------------------------

                 Key: CORE-4499
                 URL: http://tracker.firebirdsql.org/browse/CORE-4499
             Project: Firebird Core
          Issue Type: Improvement
          Components: ISQL
    Affects Versions: 3.0 Alpha 2
            Reporter: Pavel Zotov


Compare results of SHOW PROC vs SHOW FUNC in ISQL:

SQL> set term ^; create or alter procedure p01(x int) returns (z int) as begin 
z=x*2; suspend; end^
SQL> set term ;^
SQL> commit;
SQL> show proc p01;
Procedure text:
=============================================================================
begin z=x*2; suspend; end
=============================================================================
Parameters:
X                                 INPUT INTEGER
Z                                 OUTPUT INTEGER

===  vs  ===

SQL> set term ^; create or alter function f01(x int) returns int as begin 
return x*2; end^
SQL> set term ;^
SQL> commit;
SQL> show function f01;

Function F01:
Function library is
Entry point is
Returns  BY VALUE
Argument 1: BY VALUE

Is it possible to display results for `SHOW FUNC` command in such manner as for 
`SHOW PROC` ? (i.e. show body and in-out arguments just like in SHOW PROC)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

------------------------------------------------------------------------------
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel

Reply via email to