From d3db3b7cb530e713f6fc997f1475eafd0562d99b Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Mon, 7 Jan 2013 23:31:18 +0100 Subject: [PATCH] Fixed Oracle schema --- jOOQ-test/src/org/jooq/test/oracle/create.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jOOQ-test/src/org/jooq/test/oracle/create.sql b/jOOQ-test/src/org/jooq/test/oracle/create.sql index e8702b5fca..ffa8c89b83 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/create.sql +++ b/jOOQ-test/src/org/jooq/test/oracle/create.sql @@ -755,7 +755,7 @@ END p_create_author_by_name; CREATE OR REPLACE PROCEDURE p_create_author IS BEGIN - {jdbc.Schema}.p_create_author_by_name('William', 'Shakespeare'); + p_create_author_by_name('William', 'Shakespeare'); END p_create_author; /