Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.3(EOL)
Description
This script:
SET sql_mode=DEFAULT; |
CREATE OR REPLACE TABLE t1 (c1 INT, c2 INT); |
INSERT INTO t1 VALUES (0,0); |
DELIMITER $$
|
DROP PROCEDURE IF EXISTS p1; |
CREATE PROCEDURE p1() |
BEGIN
|
DECLARE a INT; |
DECLARE b INT; |
SELECT a.c1 INTO b |
FROM t1 a |
WHERE a.c2 = 0; |
END; |
$$
|
DELIMITER ;
|
CALL p1;
|
works fine in 10.2. It treats a.c2 as a reference to the column a.c2, which is in fact t1.c2.
Starting from bb-10.2-ext and 10.3, the same script fails to create the procedure with this error:
ERROR 1105 (HY000): 'a' is not a row variable
|
Oracle treats a.c2 as the table column reference if a non-RECORD variable a exists:
AS
BEGIN
/
CALL p1();
b=0
Oracle treats a.c2 as a RECORD variable field, if the RECORD variable a exists:
AS
a rec_t;
BEGIN
a.c1:= 10;
a.c2:= 20;
/
SHOW ERRORS;
12/5 PLS-00302: component 'C2' must be declared
AS
a t1%ROWTYPE;
BEGIN
a.c1:= 10;
a.c2:= 20;
/
SHOW ERRORS;
9/3 PL/SQL: Statement ignored
9/5 PLS-00302: component 'C2' must be declared
11/3 PL/SQL: SQL Statement ignored
15/10 PL/SQL: ORA-00904: "A"."C2": invalid identifier
15/12 PLS-00302: component 'C2' must be declared