1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-08 06:27:57 +03:00
Files
mariadb/mysql-test/suite/compat/oracle/r
Alexander Barkov aed9c656a9 MDEV-32101 CREATE PACKAGE [BODY] for sql_mode=DEFAULT
This patch adds PACKAGE support with SQL/PSM dialect for sql_mode=DEFAULT:

- CREATE PACKAGE
- DROP PACKAGE
- CREATE PACKAGE BODY
- DROP PACKAGE BODY
- Package function and procedure invocation from outside of the package:
    -- using two step identifiers
    SELECT pkg.f1();
    CALL pkg.p1()

    -- using three step identifiers
    SELECT db.pkg.f1();
    CALL db.pkg.p1();

This is a non-standard MariaDB extension.

However, later this code can be used to implement
the SQL Standard and DB2 dialects of CREATE MODULE.
2023-12-18 13:34:55 +04:00
..
2022-04-21 17:46:40 +03:00
2022-09-20 16:53:20 +03:00
2022-05-18 01:22:29 +02:00
2020-05-25 19:41:58 +03:00
2022-09-20 16:53:20 +03:00
2020-04-15 09:56:03 +03:00
2022-09-21 09:33:07 +03:00
2022-09-21 10:59:56 +03:00