pjfanning commented on code in PR #276: URL: https://github.com/apache/pekko-persistence-jdbc/pull/276#discussion_r2005379523
########## core/src/main/scala/org/apache/pekko/persistence/jdbc/config/PekkoPersistenceConfig.scala: ########## @@ -221,7 +221,10 @@ class DurableStateTableConfiguration(config: Config) { val batchSize: Int = config.getInt("batchSize") val schemaName: Option[String] = cfg.asStringOption("schemaName") val columnNames: DurableStateTableColumnNames = new DurableStateTableColumnNames(config) - val stateSequenceConfig = DurableStateSequenceRetrievalConfig(config) + val stateSequenceConfig: DurableStateSequenceRetrievalConfig = DurableStateSequenceRetrievalConfig(config) + private val schemaPrefix: String = schemaName.fold("")(schema => s"$schema.") + // @since "1.1.1" Review Comment: ``` /** * @since 1.1.1 */ ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For additional commands, e-mail: notifications-h...@pekko.apache.org