Skip to content

Commit 6ef89df

Browse files
committed
fix some tiny display issue
1 parent 8bff1da commit 6ef89df

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CN/modules/ROOT/pages/master/6.4.1.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
= **功能概述**
77

8-
IvorySQL提供兼容Oracle内置函数`SYS_CONTEXT('namespace', 'parameter' [, length ])`,
8+
IvorySQL提供兼容Oracle内置函数 ```SYS_CONTEXT('namespace', 'parameter' [, length ])``` ,
99
返回当前时刻与给定上下文关联参数的值,可以在SQL和PLSQL语言中使用。
1010

1111
提供以下命名空间:
@@ -16,8 +16,8 @@ IvorySQL提供兼容Oracle内置函数`SYS_CONTEXT('namespace', 'parameter' [, l
1616

1717
== 实现原理
1818

19-
SYS_CONTEXT的实现原理是通过动态查询系统表与postgres的内置函数,确保结果的实时性,
20-
使用 SECURITY INVOKER 确保函数以调用者的权限执行,避免权限提升问题。
19+
`SYS_CONTEXT` 的实现原理是通过动态查询系统表与postgres的内置函数,确保结果的实时性,
20+
使用 `SECURITY INVOKER` 确保函数以调用者的权限执行,避免权限提升问题。
2121
该方法的实现逻辑如下:
2222
```sql
2323
CREATE OR REPLACE FUNCTION sys.sys_context(a varchar2, b varchar2)

CN/modules/ROOT/pages/master/6.4.2.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
= **功能概述**
77

8-
IvorySQL提供兼容Oracle内置函数`USERENV('parameter')`,用于返回当前会话的相关信息。
9-
这是一个遗留函数,建议使用 SYS_CONTEXT 函数及其内置的 USERENV 命名空间来获取当前功能。
8+
IvorySQL提供兼容Oracle内置函数 ```USERENV('parameter')``` ,用于返回当前会话的相关信息。
9+
这是一个遗留函数,建议使用 `SYS_CONTEXT` 函数及其内置的 `USERENV` 命名空间来获取当前功能。
1010

1111
== 实现原理
1212

EN/modules/ROOT/pages/master/6.4.1.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
= **Feature Overview**
55

6-
IvorySQL provides compatibility with the Oracle built-in function `SYS_CONTEXT('namespace', 'parameter' [, length ])`,
6+
IvorySQL provides compatibility with the Oracle built-in function ```SYS_CONTEXT('namespace', 'parameter' [, length ])```,
77
which returns the value of the parameter associated with the given context at the current moment. It can be used in both SQL and PL/SQL languages.
88

99
IvorySQL provides the following built-in namespaces:

EN/modules/ROOT/pages/master/6.4.2.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
= **Feature Overview**
55

6-
IvorySQL provides compatibility with Oracle's built-in function `USERENV('parameter')`, which is used to return information about the current session.
6+
IvorySQL provides compatibility with Oracle's built-in function ```USERENV('parameter')```, which is used to return information about the current session.
77
This is a legacy function, and IvorySQL recommends taht you can use the `SYS_CONTEXT` function with its built-in `USERENV` namespace for current functionality.
88

99
== Implementation Principle

0 commit comments

Comments
 (0)