This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git


The following commit(s) were added to refs/heads/master by this push:
     new ba745dc9ef1 [fix] rename quant to quantizer (#2937)
ba745dc9ef1 is described below

commit ba745dc9ef1a6d499f15a69b7a4382b1e88029ec
Author: zhiqiang <[email protected]>
AuthorDate: Mon Oct 6 04:55:53 2025 +0800

    [fix] rename quant to quantizer (#2937)
    
    ## Versions
    
    - [ x] dev
    - [ ] 3.0
    - [ ] 2.1
    - [ ] 2.0
    
    ## Languages
    
    - [x ] Chinese
    - [x ] English
    
    ## Docs Checklist
    
    - [ ] Checked by AI
    - [ ] Test Cases Built
---
 docs/ai/vector-search.md                                            | 6 +++---
 .../docusaurus-plugin-content-docs/current/ai/vector-search.md      | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/docs/ai/vector-search.md b/docs/ai/vector-search.md
index d2b85105ef6..8d5431c3fc1 100644
--- a/docs/ai/vector-search.md
+++ b/docs/ai/vector-search.md
@@ -58,7 +58,7 @@ CREATE TABLE sift_1M (
       "index_type"="hnsw",
       "metric_type"="l2_distance",
       "dim"="128",
-      "quant"="flat"
+      "quantizer"="flat"
   )
 ) ENGINE=OLAP
 DUPLICATE KEY(id) COMMENT "OLAP"
@@ -71,7 +71,7 @@ PROPERTIES (
 - index_type: `hnsw` means using the [Hierarchical Navigable Small World 
algorithm](https://en.wikipedia.org/wiki/Hierarchical_navigable_small_world)
 - metric_type: `l2_distance` means using L2 distance as the distance function
 - dim: `128` means the vector dimension is 128
-- quant: `flat` means each vector dimension is stored as original float32
+- quantizer: `flat` means each vector dimension is stored as original float32
 
 | Parameter | Required | Supported/Options | Default | Description |
 |-----------|----------|-------------------|---------|-------------|
@@ -267,7 +267,7 @@ CREATE TABLE sift_1M (
       "index_type"="hnsw",
       "metric_type"="l2_distance",
       "dim"="128",
-      "quant"="sq8"
+      "quantizer"="sq8"
   )
 ) ENGINE=OLAP
 DUPLICATE KEY(id) COMMENT "OLAP"
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/ai/vector-search.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/ai/vector-search.md
index 6e533d476d7..2622ad61266 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/ai/vector-search.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/ai/vector-search.md
@@ -49,7 +49,7 @@ CREATE TABLE sift_1M (
       "index_type"="hnsw",
       "metric_type"="l2_distance",
       "dim"="128",
-      "quant"="flat"
+      "quantizer"="flat"
   )
 ) ENGINE=OLAP
 DUPLICATE KEY(id) COMMENT "OLAP"
@@ -236,7 +236,7 @@ CREATE TABLE sift_1M (
       "index_type"="hnsw",
       "metric_type"="l2_distance",
       "dim"="128",
-      "quant"="sq8"    -- 指定使用 INT8 进行量化
+      "quantizer"="sq8"    -- 指定使用 INT8 进行量化
   )
 ) ENGINE=OLAP
 DUPLICATE KEY(id) COMMENT "OLAP"


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

Reply via email to