Fix typo in README (#134)

This commit is contained in:
Ivan Kozik 2025-05-07 00:38:38 +00:00 committed by GitHub
parent eab5195be5
commit 7966a92b8e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -101,7 +101,7 @@ When `pg_ivm` is installed, the 'pgivm' schema is created, along with the follow
Use `create_immv` function to create IMMV.
```
pgivim.create_immv(immv_name text, view_definition text) RETURNS bigint
pgivm.create_immv(immv_name text, view_definition text) RETURNS bigint
```
`create_immv` defines a new IMMV of a query. A table of the name `immv_name` is created and a query specified by `view_definition` is executed and used to populate the IMMV. The query is stored in `pg_ivm_immv`, so that it can be refreshed later upon incremental view maintenance. `create_immv` returns the number of rows in the created IMMV.