mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
b27e9d6052
Also made the parsing and handling of SP characteristics more general and extendable, and added a few ch:istics.
111 lines
4.8 KiB
Text
111 lines
4.8 KiB
Text
Stored Procedures implemented 2003-12-10:
|
|
|
|
|
|
Summary of Not Yet Implemented:
|
|
|
|
- SQL statements using table (like SELECT, INSERT, UPDATE etc)
|
|
in FUNCTIONs
|
|
- External languages
|
|
- Access control
|
|
- Routine characteristics (mostly used for external languages)
|
|
- SQL-99 COMMIT (related to BEGIN/END)
|
|
- FOR-loops
|
|
- CASCADE/RESTRICT for ALTER and DROP
|
|
- ALTER/DROP METHOD (as it implies User Defined Types)
|
|
- SIGNAL and RESIGNAL, and UNDO handlers
|
|
|
|
|
|
Summary of what's implemented:
|
|
|
|
- SQL PROCEDUREs/FUNCTIONs (CREATE/DROP)
|
|
- CALL
|
|
- DECLARE of local variables
|
|
- BEGIN/END, SET, CASE, IF, LOOP, WHILE, REPEAT, ITERATE, LEAVE
|
|
- SELECT INTO local variables
|
|
- "Non-query" FUNCTIONs only
|
|
- Prepared SP caching
|
|
- CONDITIONs and HANDLERs
|
|
- Simple read-only CURSORs.
|
|
- SHOW DECLARE PROCEDURE/FUNCTION and SHOW PROCEDURE/FUNCTION STATUS
|
|
|
|
|
|
List of what's implemented:
|
|
|
|
- CREATE PROCEDURE|FUNCTION name ( args ) characteristics body
|
|
where characteristics is:
|
|
LANGUAGE SQL |
|
|
[NOT] DETERMINISTIC |
|
|
SQL SECURITY [DEFINER|INVOKER] |
|
|
COMMENT string
|
|
However the DETERMINISTIC setting is not currently used.
|
|
|
|
- ALTER PROCEDURE|FUNCTION name characteristics
|
|
CASCADE/RESTRICT is not implemented.
|
|
characteristics is:
|
|
COMMENT string |
|
|
SQL SECURITY [DEFINER|INVOKER] |
|
|
NAME newname
|
|
|
|
- DROP PROCEDURE|FUNCTION [IF EXISTS] name
|
|
CASCADE/RESTRICT is not implemented.
|
|
|
|
- CALL name (args)
|
|
OUT and INOUT parameters are only supported for local variables, and
|
|
therefore only useful when calling such procedures from within another
|
|
procedure.
|
|
Note: For the time being, when a procedure with OUT/INOUT parameter is
|
|
called, the out values are silently discarded. In the future, this
|
|
will either generate an error message, or it might even work to
|
|
call all procedures from the top-level.
|
|
|
|
- Function/Procedure body:
|
|
- BEGIN/END
|
|
Is parsed, but not the real thing with (optional) transaction
|
|
control, it only serves as block syntax for multiple statements (and
|
|
local variable binding).
|
|
Note: Multiple statements requires a client that can send bodies
|
|
containing ";". This is handled in the CLI clients mysql and
|
|
mysqltest with the "delimiter" command. Changing the end-of-query
|
|
delimiter ";" to for instance "|" allows ";" to be used in the
|
|
routine body.
|
|
- SET of local variables
|
|
Implemented as part of the pre-existing SET syntax. This allows an
|
|
extended syntax of "SET a=x, b=y, ..." where different variable types
|
|
(SP local and global) can be mixed. This also allows combinations
|
|
of local variables and some options that only make sense for
|
|
global/system variables; in that case the options are accepted but
|
|
ignored.
|
|
- The flow control constructs: CASE, IF, LOOP, WHILE, ITERATE and LEAVE
|
|
are fully implemented.
|
|
- SELECT ... INTO local variables (as well as global session variables)
|
|
is implemented. (Note: This is not SQL-99 feature, but common in other
|
|
databases.)
|
|
- A FUNCTION can have flow control contructs, but must not contain
|
|
an SQL query, like SELECT, INSERT, UPDATE, etc. The reason is that it's
|
|
hard to allow this is that a FUNCTION is executed as part of another
|
|
query (unlike a PROCEDURE, which is called as a statement). The table
|
|
locking scheme used makes it difficult to allow "subqueries" during
|
|
FUNCTION invokation.
|
|
- SPs are cached, but with a separate cache for each thread (THD).
|
|
There are still quite a few non-reentrant constructs in the lexical
|
|
context which makes sharing prepared SPs impossible. And, even when
|
|
this is resolved, it's not necessarily the case that it will be faster
|
|
than a cache per thread. A global cache requires locks, which might
|
|
become a buttleneck. (It would save memory though.)
|
|
- CONDITIONs and HANDLERs are implemented, but not the SIGNAL and
|
|
RESIGNAL statements. (It's unclear if these can be implemented.)
|
|
The semantics of CONDITIONs is expanded to allow catching MySQL error
|
|
codes as well. UNDO handlers are not implemented (since we don't have
|
|
SQL-99 style transaction control yet).
|
|
- Simple read-only CURSORs are implemented, but not yet any of the
|
|
optional arguments to DECLARE (SCROLL, SENSITIVE, etc) or FETCH
|
|
(NEXT, PRIOR, etc). Cursors are ASENSITIVE, READ-ONLY, non-SCROLLing.
|
|
(The additional syntax will be added for completeness, but for the
|
|
most part unsupported with the current underlying cursor mechanism.)
|
|
|
|
- SHOW procedures and functions
|
|
SHOW DECLARE PROCEDURE|FUNCTION <name>
|
|
returns the definition of a routine.
|
|
SHOW PROCEDURE|FUNCTION STATUS [LIKE <pattern>]
|
|
returns characteristics of routines, like the name, type, creator,
|
|
creation and modification dates, etc.
|