From a1dddf79066aeb849fd11bb3380b58865641abaf Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Thu, 26 Sep 2024 10:51:20 +0200 Subject: [PATCH] [jOOQ/jOOQ#9574] Interpreter implementation This includes: - DROP TABLE .. CASCADE / RESTRICT - DROP SYNONYM --- .../main/java/org/jooq/impl/Interpreter.java | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/jOOQ/src/main/java/org/jooq/impl/Interpreter.java b/jOOQ/src/main/java/org/jooq/impl/Interpreter.java index 82810f9af4..e1c5f62910 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Interpreter.java +++ b/jOOQ/src/main/java/org/jooq/impl/Interpreter.java @@ -444,6 +444,17 @@ final class Interpreter { cascade(table.primaryKey, null, check ? RESTRICT : CASCADE); cascade(table.uniqueKeys, null, check); + + + + + + + + + + + } drop(tables, table); @@ -1082,6 +1093,17 @@ final class Interpreter { + + + + + + + + + + +