Skip to content

Commit 4143db7

Browse files
committed
chore: fix glossary data, index confuses generator
1 parent a10dfda commit 4143db7

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/lib/glossary-data.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,16 @@ export const GLOSSARY_LIST: GlossaryLetterSet[] = [
182182
reference: 'https://www.bytebase.com/docs/concepts/data-model#database',
183183
tagList: ['General', 'Bytebase'],
184184
},
185+
{
186+
name: 'Database Index',
187+
description: `A data structure greatly improves the speed of data retrieval. Like the physical book index, the index
188+
helps quickly locate a particular value or a range of values (finding a needle in a haystack). While good for boosting
189+
query performance, index brings the overhead of updating the index entry whenever underlying data changes. Thus adding
190+
/removing index is a balanced art and should be evaluated carefully.
191+
maintaining index `,
192+
reference: 'https://en.wikipedia.org/wiki/Database_index',
193+
tagList: ['General'],
194+
},
185195
{
186196
name: 'Database instance',
187197
description: `The complete running environment providing the database service. This is usually denoted by a host:port pointing
@@ -338,16 +348,6 @@ export const GLOSSARY_LIST: GlossaryLetterSet[] = [
338348
{
339349
letter: 'I',
340350
list: [
341-
{
342-
name: 'Index',
343-
description: `A data structure greatly improves the speed of data retrieval. Like the physical book index, the index
344-
helps quickly locate a particular value or a range of values (finding a needle in a haystack). While good for boosting
345-
query performance, index brings the overhead of updating the index entry whenever underlying data changes. Thus adding
346-
/removing index is a balanced art and should be evaluated carefully.
347-
maintaining index `,
348-
reference: 'https://en.wikipedia.org/wiki/Database_index',
349-
tagList: ['General'],
350-
},
351351
{
352352
name: 'InnoDB',
353353
description: `A well-engineered storage engine which is now the default storage engined used by MySQL. It's a performant

0 commit comments

Comments
 (0)