This is an automated email from the ASF dual-hosted git repository.
chenjinbao1989 pushed a commit to branch cbdb-postgres-merge
in repository https://gitbox.apache.org/repos/asf/cloudberry.git
The following commit(s) were added to refs/heads/cbdb-postgres-merge by this
push:
new 69a3043a149 Remove proc support for some procs
69a3043a149 is described below
commit 69a3043a14978d0f8c728bcab4d4ade1e189c2e1
Author: Jinbao Chen <[email protected]>
AuthorDate: Thu Jan 22 17:35:00 2026 +0800
Remove proc support for some procs
---
src/include/catalog/pg_proc.dat | 14 ++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)
diff --git a/src/include/catalog/pg_proc.dat b/src/include/catalog/pg_proc.dat
index 58518eb5a3d..3b1f3a7e327 100644
--- a/src/include/catalog/pg_proc.dat
+++ b/src/include/catalog/pg_proc.dat
@@ -10458,22 +10458,20 @@
proname => 'window_dense_rank_support', prorettype => 'internal',
proargtypes => 'internal', prosrc => 'window_dense_rank_support' },
{ oid => '3103', descr => 'fractional rank within partition',
- proname => 'percent_rank', prosupport => 'window_percent_rank_support',
- prokind => 'w', proisstrict => 'f', prorettype => 'float8', proargtypes =>
'',
- prosrc => 'window_percent_rank' },
+ proname => 'percent_rank', prokind => 'w', proisstrict => 'f',
+ prorettype => 'float8', proargtypes => '', prosrc => 'window_percent_rank' },
{ oid => '6306', descr => 'planner support for percent_rank',
proname => 'window_percent_rank_support', prorettype => 'internal',
proargtypes => 'internal', prosrc => 'window_percent_rank_support' },
{ oid => '3104', descr => 'fractional row number within partition',
- proname => 'cume_dist', prosupport => 'window_cume_dist_support',
- prokind => 'w', proisstrict => 'f', prorettype => 'float8', proargtypes =>
'',
- prosrc => 'window_cume_dist' },
+ proname => 'cume_dist', prokind => 'w', proisstrict => 'f',
+ prorettype => 'float8', proargtypes => '', prosrc => 'window_cume_dist' },
{ oid => '6307', descr => 'planner support for cume_dist',
proname => 'window_cume_dist_support', prorettype => 'internal',
proargtypes => 'internal', prosrc => 'window_cume_dist_support' },
{ oid => '3105', descr => 'split rows into N groups',
- proname => 'ntile', prosupport => 'window_ntile_support', prokind => 'w',
- prorettype => 'int4', proargtypes => 'int4', prosrc => 'window_ntile' },
+ proname => 'ntile', prokind => 'w', prorettype => 'int4',
+ proargtypes => 'int4', prosrc => 'window_ntile' },
{ oid => '6308', descr => 'planner support for ntile',
proname => 'window_ntile_support', prorettype => 'internal',
proargtypes => 'internal', prosrc => 'window_ntile_support' },
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]