io.kestra.jdbc.JooqSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdbc Show documentation
Show all versions of jdbc Show documentation
The modern, scalable orchestrator & scheduler open source platform
package io.kestra.jdbc;
import io.micronaut.context.annotation.Factory;
import jakarta.inject.Singleton;
import org.jooq.conf.RenderKeywordCase;
import org.jooq.conf.Settings;
@Factory
public class JooqSettings {
@Singleton
public Settings settings() {
return new Settings()
.withRenderKeywordCase(RenderKeywordCase.UPPER)
.withRenderFormatted(true)
.withFetchWarnings(true);
}
}