Skip to content

Commit 4bfb041

Browse files
authored
Update 29.adoc
1 parent d3c273f commit 4bfb041

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

EN/modules/ROOT/pages/v4.0/29.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ Invisible columns are also useful during application migration. Making new colum
1313

1414
== Function descriptions
1515

16-
The invisible columns allowing users to conceal specific columns during operations like SELECT *. You can use invisible column to make changes to a table without disrupting applications that use the table.Any generic access of a table does not show the invisible columns in the table.Invisible columns must be explicitly referenced by column names in order to be accessed in queries and other operations.
16+
Invisible columns allow users to conceal specific columns during operations like SELECT *. You can use invisible column to make changes to a table without disrupting applications that use the table. Any generic access of a table does not show the invisible columns in the table. Invisible columns must be explicitly referenced by column names in order to be accessed in queries and other operations.
1717

18-
Support for invisible columns in psql extended describe (\d+) is added,in oracle mode only.
18+
Support for invisible columns in psql extended describe (\d+) is added, in oracle mode only.
1919

2020
== Test cases
2121

@@ -26,7 +26,7 @@ CREATE TABLE
2626
```
2727
=== Insert values into invisible columns
2828

29-
You can insert a value into an invisible column only if you explicitly specify the invisible column in the column list for the INSERT statement. Omitting the column list in the INSERT statement is not allowed if you insert values into a table with invisible columns. Errors will be reported.
29+
You can insert a value into an invisible column only if you explicitly specify the invisible column in the column list for the INSERT statement. Omitting the column list in the INSERT statement is not allowed. Errors will be reported.
3030
```
3131
ivorysql=# INSERT INTO mytable (a, b, c) VALUES (1,2,3);
3232
INSERT 0 1
@@ -65,5 +65,5 @@ Access method: heap
6565
6666
== Limitations
6767
68-
- Modify column is not supported currently.Will be enhanced in later version;
69-
- In Oracle, there are special considerations for invisible columns and column ordering. When a table contains one or more invisible columns, the invisible columns are not included in the column order for the table.We have not yet addressed this part.
68+
- Modify column is not supported currently. Will be enhanced in later version;
69+
- In Oracle, there are special considerations for invisible columns and column ordering. When a table contains one or more invisible columns, the invisible columns are not included in the column order for the table. We have not yet addressed this part.

0 commit comments

Comments
 (0)