From ea229d9259ce92daf19968a52173ea7f21bdb998 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Fri, 13 Jul 2012 18:14:28 +0200 Subject: [PATCH] [#1563] Add support for Oracle SYNONYMs in source code generation - Added SYNONYMs to database --- jOOQ-test/src/org/jooq/test/oracle/create.sql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jOOQ-test/src/org/jooq/test/oracle/create.sql b/jOOQ-test/src/org/jooq/test/oracle/create.sql index 838554d664..fae8389e42 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/create.sql +++ b/jOOQ-test/src/org/jooq/test/oracle/create.sql @@ -1716,3 +1716,7 @@ CREATE TABLE T_976 ( CONSTRAINT pk_t_976 PRIMARY KEY (ID) )/ + +create or replace synonym t_author_synonym for t_author; +create or replace synonym v_author_synonym for v_author; +create or replace synonym p_unused_synonym for p_unused; \ No newline at end of file