Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ In addition to the primary index created from the values of a table's primary ke

## Search indexes {#search-indexes}

Similar to [search indexes](https://cloud.google.com/bigquery/docs/search-index) in BigQuery, [full-text indexes](/engines/table-engines/mergetree-family/invertedindexes) can be created for ClickHouse tables on columns with string values.
Similar to [search indexes](https://cloud.google.com/bigquery/docs/search-index) in BigQuery, [full-text indexes](/engines/table-engines/mergetree-family/textindexes) can be created for ClickHouse tables on columns with string values.

## Vector indexes {#vector-indexes}

Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/example-datasets/hacker-news.md
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ WHERE hasToken(lower(comment), 'ClickHouse');
└─────────┘
```

Next, you'll create an inverted [index](/engines/table-engines/mergetree-family/invertedindexes) on the "comment" column
Next, you'll create an inverted [index](/engines/table-engines/mergetree-family/textindexes) on the "comment" column
in order to speed this query up.
Note that lowercase comments will be indexed to find terms independent of casing.

Expand Down
5 changes: 5 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -3700,6 +3700,11 @@
"source": "/docs/about-us/faq",
"destination": "/docs/concepts/faq",
"permanent": true
},
{
"source": "/docs/engines/table-engines/mergetree-family/invertedindexes",
"destination": "/docs/engines/table-engines/mergetree-family/textindexes",
"permanent": true
}
]
}