Commit c4963a34 authored by Alexander Barkov's avatar Alexander Barkov

Fixing that "mtr --ps compat/oracle.sp-row" failed due to a wrong position of the DELIMITER command

parent ea751857
...@@ -1955,8 +1955,8 @@ DROP TABLE t1; ...@@ -1955,8 +1955,8 @@ DROP TABLE t1;
--echo # Assigning a table%ROWTYPE field to an OUT parameter --echo # Assigning a table%ROWTYPE field to an OUT parameter
--echo # --echo #
DELIMITER $$;
CREATE TABLE t1 (a INT, b VARCHAR(10)); CREATE TABLE t1 (a INT, b VARCHAR(10));
DELIMITER $$;
CREATE PROCEDURE p1 (res IN OUT INTEGER) CREATE PROCEDURE p1 (res IN OUT INTEGER)
AS AS
rec1 t1%ROWTYPE:=ROW(10,'b0'); rec1 t1%ROWTYPE:=ROW(10,'b0');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment