Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Davis2024-07-31 23:15:26 +0000
committerJeff Davis2024-07-31 23:37:53 +0000
commitf683d3a4ca6dc441a86ed90070f126c20ea46b45 (patch)
tree1b1b6267d6b2a53cee59fff7508bfcbbf0640ca2 /src/include/commands
parentf5f30c22ed69fb37b896c4d4546b2ab823c3fd61 (diff)
Remove unused ParamListInfo argument from ExecRefreshMatView.
Author: Yugo Nagata Discussion: https://postgr.es/m/20240726122630.70e889f63a4d7e26f8549de8@sraoss.co.jp
Diffstat (limited to 'src/include/commands')
-rw-r--r--src/include/commands/matview.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/include/commands/matview.h b/src/include/commands/matview.h
index a226b2e68fb..7916df30393 100644
--- a/src/include/commands/matview.h
+++ b/src/include/commands/matview.h
@@ -24,10 +24,9 @@
extern void SetMatViewPopulatedState(Relation relation, bool newstate);
extern ObjectAddress ExecRefreshMatView(RefreshMatViewStmt *stmt, const char *queryString,
- ParamListInfo params, QueryCompletion *qc);
+ QueryCompletion *qc);
extern ObjectAddress RefreshMatViewByOid(Oid matviewOid, bool skipData, bool concurrent,
- const char *queryString, ParamListInfo params,
- QueryCompletion *qc);
+ const char *queryString, QueryCompletion *qc);
extern DestReceiver *CreateTransientRelDestReceiver(Oid transientoid);