Skip to content

Commit 3d4934a

Browse files
authored
Update views.sql
Test for 'Added EDITIONABLE statement to create_view rule' added
1 parent 4454bbd commit 3d4934a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

sql/plsql/examples/views.sql

+4
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,7 @@ CREATE OR REPLACE VIEW oc_inventories OF inventory_typ
4444
i.quantity_on_hand
4545
FROM inventories i, warehouses w
4646
WHERE i.warehouse_id=w.warehouse_id;
47+
48+
CREATE EDITIONABLE VIEW TEST (A, B, C)
49+
AS SELECT 'A', 'B', 'C'
50+
FROM DUAL;

0 commit comments

Comments
 (0)