From 0d15afc875f44bcb0adc244c4d9034023f99b609 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 29 Mar 2023 08:25:12 +0200 Subject: Simplify useless 0L constants In ancient times, these belonged to arguments or fields that were actually of type long, but now they are not anymore, so this "L" decoration is just confusing. (Some other 0L and other "L" constants remain, where they are actually associated with a long type.) --- src/backend/commands/matview.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/backend/commands/matview.c') diff --git a/src/backend/commands/matview.c b/src/backend/commands/matview.c index c00b9df3e3b..f9a3bdfc3ab 100644 --- a/src/backend/commands/matview.c +++ b/src/backend/commands/matview.c @@ -417,7 +417,7 @@ refresh_matview_datafill(DestReceiver *dest, Query *query, ExecutorStart(queryDesc, 0); /* run the plan */ - ExecutorRun(queryDesc, ForwardScanDirection, 0L, true); + ExecutorRun(queryDesc, ForwardScanDirection, 0, true); processed = queryDesc->estate->es_processed; -- cgit v1.2.3