From b23c15378c3cd9725b7763851a71a4b0b664cf1d Mon Sep 17 00:00:00 2001 From: Yongtao Huang <99629139+hyongtao-db@users.noreply.github.com> Date: Tue, 24 Dec 2024 13:28:53 +0800 Subject: [PATCH] Fix some typos --- pg_ivm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pg_ivm.c b/pg_ivm.c index 641ba52..15e72e0 100644 --- a/pg_ivm.c +++ b/pg_ivm.c @@ -91,7 +91,7 @@ _PG_init(void) /* * Given a C string, parse it into a qualified relation name - * followed by a optional parenthesized list of column names. + * followed by an optional parenthesized list of column names. */ static void parseNameAndColumns(const char *string, List **names, List **colNames) @@ -201,7 +201,7 @@ create_immv(PG_FUNCTION_ARGS) parsetree = linitial_node(RawStmt, parsetree_list); - /* view definition should spcify SELECT query */ + /* view definition should specify SELECT query */ if (!IsA(parsetree->stmt, SelectStmt)) ereport(ERROR, (errcode(ERRCODE_INVALID_PARAMETER_VALUE),