[fix] remove some internal urls and emails

This commit is contained in:
obdev
2023-03-17 20:55:23 +08:00
committed by ob-robot
parent e386747097
commit 8ce2f275c4
647 changed files with 905 additions and 905 deletions

View File

@ -2026,8 +2026,8 @@ bool ObSysVarOnCheckFuncs::can_set_trans_var(ObSetVar::SetScopeType scope,
* because SET_SCOPE_SESSION and SET_SCOPE_NEXT_TRANS have same behavior in this
* function.
* see:
* https://yuque.antfin-inc.com/ob/sql2/zo3rzg
* https://yuque.antfin-inc.com/ob/transaction/qtdtfz
*
*
*/
ret = !session.is_in_transaction() || session.is_txn_free_route_temp();
} else if (lib::is_mysql_mode()) {
@ -2422,7 +2422,7 @@ int ObSysVarOnUpdateFuncs::update_tx_read_only_no_scope(ObExecContext &ctx,
} else if (lib::is_oracle_mode()) {
// READ ONLY will use SERIALIZABLE implicitly,
// READ WRITE need use default value in session, so set UNKNOWN.
// https://yuque.antfin-inc.com/ob/sql2/zo3rzg
//
ObTxIsolationLevel isolation = read_only ?
ObTxIsolationLevel::SERIAL : ObTxIsolationLevel::INVALID;
session->set_tx_isolation(isolation);