From b7f1f9fedd12195b0ab191d7f3c3e7289fad7c9f Mon Sep 17 00:00:00 2001 From: Nelson-He Date: Tue, 22 Nov 2022 10:48:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=B7=E6=96=B0readme=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 12bc5a8..a845cea 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ this: $ # Build the shared library. $ make -$ # Install the extension in the Postgres opengauss +$ # Install the extension in the opengauss $ make install $ # Activate and initialize the extension. @@ -120,11 +120,11 @@ To get your hands on openGauss with wasm, we recommend using the Docker image. Download the docker image firstlly. ```shell -docker pull heguofeng/opengauss-wasm:1.0.0 +docker pull opengaussofficial/opengauss-wasmtime:0.1.0 ``` Then run it. ```shell -docker run -it heguofeng/opengauss-wasm:1.0.0 bash +docker run -it opengaussofficial/opengauss-wasmtime:0.1.0 bash ``` And enjoy it. @@ -145,8 +145,8 @@ the `wasm` foreign schema: * `wasm.exported_functions` is a table with the `instanceid`, `funcname`, `inputs` and `output` columns, respectively for the instance ID of the exported function, its name, its input types - (already formatted for Postgres), and its output types (already - formatted for Postgres). + (already formatted for openGauss), and its output types (already + formatted for openGauss). Let's see: -- Gitee