exposed-jdbc/src/main/kotlin/org/jetbrains/exposed/v1/jdbc/IterableEx.kt [118:127]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override fun notForUpdate(): SizedIterable { val localDelegate = delegate if (_wrapper != null && localDelegate is Query && localDelegate.hasCustomForUpdateState() && localDelegate.isForUpdate()) { error("Impossible to change forUpdate state for loaded data") } if (_wrapper == null) { delegate = delegate.notForUpdate() } return this } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - exposed-r2dbc/src/main/kotlin/org/jetbrains/exposed/v1/r2dbc/IterableEx.kt [121:130]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override fun notForUpdate(): SizedIterable { val localDelegate = delegate if (_wrapper != null && localDelegate is Query && localDelegate.hasCustomForUpdateState() && localDelegate.isForUpdate()) { error("Impossible to change forUpdate state for loaded data") } if (_wrapper == null) { delegate = delegate.notForUpdate() } return this } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -