From 2c960c7b2747f174c9c30dfb4b37587700cf1585 Mon Sep 17 00:00:00 2001 From: Tatsuo Ishii Date: Fri, 1 Apr 2022 10:26:19 +0900 Subject: [PATCH] Fix typo in an example sql. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f9479cd..e02bf82 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ On the other hand, after creating IMMV with the same view definition as below: ``` test=# SELECT create_immv('immv', - `SELECT a.aid, b.bid, a.abalance, b.bbalance + 'SELECT a.aid, b.bid, a.abalance, b.bbalance FROM pgbench_accounts a JOIN pgbench_branches b USING(bid)'); NOTICE: created index "immv_index" on immv "immv" create_immv