DongLiang-0 commented on code in PR #1817:
URL: https://github.com/apache/doris-website/pull/1817#discussion_r1918440978


##########
docs/sql-manual/sql-functions/table-valued-functions/local.md:
##########
@@ -157,31 +143,18 @@ mysql> select * from local(
 ```
 
 Can be used with `desc function` :
-
 ```sql
-mysql> desc function local(
+desc function local(
       "file_path" = "student.csv", 
       "backend_id" = "10003", 
       "format" = "csv");
+```
+```text
 +-------+------+------+-------+---------+-------+
 | Field | Type | Null | Key   | Default | Extra |
 +-------+------+------+-------+---------+-------+
 | c1    | TEXT | Yes  | false | NULL    | NONE  |
 | c2    | TEXT | Yes  | false | NULL    | NONE  |
 | c3    | TEXT | Yes  | false | NULL    | NONE  |
 +-------+------+------+-------+---------+-------+
-```
-
-### Keywords
-
-local, table-valued-function, tvf
-
-### Best Practice
-
-- For more detailed usage of local tvf, please refer to [S3](./s3.md) tvf, The 
only difference between them is the way of accessing the storage system.
-
-- Access data on NAS through local tvf
-
-     NAS shared storage allows to be mounted to multiple nodes at the same 
time. Each node can access files in the shared storage just like local files. 
Therefore, the NAS can be thought of as a local file system, accessed through 
local tvf.
-
-     When setting `"shared_storage" = "true"`, Doris will think that the 
specified file can be accessed from any BE node. When a set of files is 
specified using wildcards, Doris will distribute requests to access files to 
multiple BE nodes, so that multiple nodes can be used to perform distributed 
file scanning and improve query performance.

Review Comment:
   这一段都移到了 “注意事项” 中



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to