Skip to content

Commit 597b442

Browse files
committed
add + to fix italic font
1 parent 6198e1f commit 597b442

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

CN/modules/ROOT/pages/master/5.2.adoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,21 @@ HNSW (Hierarchical Navigating Small World) 是一种基于图的索引算法,
2929
=== 源码安装
3030

3131
** 设置PG_CONFIG环境变量
32+
+
3233
[literal]
3334
----
3435
export PG_CONFIG=/usr/local/ivorysql/ivorysql-5/bin/pg_config
3536
----
3637

3738
** 拉取pg_vector源码
39+
+
3840
[literal]
3941
----
4042
git clone --branch v0.8.1 https://github.com/pgvector/pgvector.git
4143
----
4244

4345
** 安装 pgvector
46+
+
4447
[literal]
4548
----
4649
cd pgvector
@@ -50,6 +53,7 @@ sudo --preserve-env=PG_CONFIG make install
5053
----
5154

5255
** 创建pgvector扩展
56+
+
5357
[literal]
5458
----
5559
[ivorysql@localhost ivorysql-5]$ psql
@@ -129,4 +133,4 @@ ivorysql=# SELECT AddVector('[1,2,3]','[4,5,6]') FROM DUAL;
129133
----------------
130134
[5,7,9]
131135
(1 row)
132-
----
136+
----

EN/modules/ROOT/pages/master/5.2.adoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,21 @@ The IvorySQL 5(above version) has been installed in the environment, and the ins
3232
=== Source Code Installation
3333

3434
** Setting PG_CONFIG
35+
+
3536
[literal]
3637
----
3738
export PG_CONFIG=/usr/local/ivorysql/ivorysql-5/bin/pg_config
3839
----
3940

4041
** Pull pg_vector source code
42+
+
4143
[literal]
4244
----
4345
git clone --branch v0.8.1 https://github.com/pgvector/pgvector.git
4446
----
4547

4648
** Install pgvector
49+
+
4750
[literal]
4851
----
4952
cd pgvector
@@ -53,6 +56,7 @@ sudo --preserve-env=PG_CONFIG make install
5356
----
5457

5558
** Create pgvector extension
59+
+
5660
[literal]
5761
----
5862
[ivorysql@localhost ivorysql-4]$ psql
@@ -131,4 +135,4 @@ ivorysql=# SELECT AddVector('[1,2,3]','[4,5,6]') FROM DUAL;
131135
----------------
132136
[5,7,9]
133137
(1 row)
134-
----
138+
----

0 commit comments

Comments
 (0)