如何在 PostgreSql 上与 Jooq 级联截断?
How to cascade truncate with Jooq on PostgreSql?
我正在编写集成测试并希望在每次测试后清理 (postgres) 数据库。所以我假设对所有(实际上只有大部分)表进行级联截断操作是可行的方法。
我正在开发一个使用 Kotlin、Spring 和 Jooq 的应用程序,这就是为什么我用 truncateCascade
成像 Truncator
class 的原因自动连接到我的 SpringBootTest
classes.
import org.jooq.DSLContext
import org.jooq.Table
@Service
class Truncator(private val dsl: DSLContext) {
fun truncateCascade(tables: List<Table<*>>) {
dsl.truncate ...
}
// single truncate work only for tables without foreign key constraints
// so I can't simply iterate over all tables and call this method.
// fun truncate(table: Table<*>) {
// dsl.truncate(table).execute()
// }
}
基本上我正在寻找 truncateCascade
的实现(假设这不是一个错误的方法)。
我在调查此问题时找到了关于 Jooq TruncateCascadeStep 的文档并提到了 continueIdentity 或 restartIdentity,但我没有足够的 Jooq 或一般数据库经验将其拼凑起来。
您缺少的是在您的 truncate()
命令上调用 cascade()
:
fun truncate(table: Table<*>) {
dsl.truncate(table).cascade().execute()
}
另一种选择是完全删除您的架构,然后从头开始重新创建它。这对于测试来说可能更可靠,对于中小型模式不应该花费 很多 的时间。
我正在编写集成测试并希望在每次测试后清理 (postgres) 数据库。所以我假设对所有(实际上只有大部分)表进行级联截断操作是可行的方法。
我正在开发一个使用 Kotlin、Spring 和 Jooq 的应用程序,这就是为什么我用 truncateCascade
成像 Truncator
class 的原因自动连接到我的 SpringBootTest
classes.
import org.jooq.DSLContext
import org.jooq.Table
@Service
class Truncator(private val dsl: DSLContext) {
fun truncateCascade(tables: List<Table<*>>) {
dsl.truncate ...
}
// single truncate work only for tables without foreign key constraints
// so I can't simply iterate over all tables and call this method.
// fun truncate(table: Table<*>) {
// dsl.truncate(table).execute()
// }
}
基本上我正在寻找 truncateCascade
的实现(假设这不是一个错误的方法)。
我在调查此问题时找到了关于 Jooq TruncateCascadeStep 的文档并提到了 continueIdentity 或 restartIdentity,但我没有足够的 Jooq 或一般数据库经验将其拼凑起来。
您缺少的是在您的 truncate()
命令上调用 cascade()
:
fun truncate(table: Table<*>) {
dsl.truncate(table).cascade().execute()
}
另一种选择是完全删除您的架构,然后从头开始重新创建它。这对于测试来说可能更可靠,对于中小型模式不应该花费 很多 的时间。