You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: EN/modules/ROOT/pages/v4.0/29.adoc
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,9 @@ Invisible columns are also useful during application migration. Making new colum
13
13
14
14
== Function descriptions
15
15
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.
17
17
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.
19
19
20
20
== Test cases
21
21
@@ -26,7 +26,7 @@ CREATE TABLE
26
26
```
27
27
=== Insert values into invisible columns
28
28
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.
30
30
```
31
31
ivorysql=# INSERT INTO mytable (a, b, c) VALUES (1,2,3);
32
32
INSERT 0 1
@@ -65,5 +65,5 @@ Access method: heap
65
65
66
66
== Limitations
67
67
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