!2517 修复builtin.ini中pg_cancel_session漏了部分参数设置的问题
Merge pull request !2517 from pengjiong/fix_date
This commit is contained in:
@ -7899,7 +7899,7 @@
|
||||
),
|
||||
AddFuncGroup(
|
||||
"pg_cancel_session", 1,
|
||||
AddBuiltinFunc(_0(3991), _1("pg_cancel_session"), _2(2), _3(true), _4(false), _5(pg_cancel_session), _6(16), _7(PG_CATALOG_NAMESPACE), _8(BOOTSTRAP_SUPERUSERID), _9(INTERNALlanguageId), _10(1), _11(0), _12(0), _13(0), _14(false), _15(false), _16(false), _17(false), _18('v'), _19(0), _20(2, 20, 20), _21(NULL), _22(NULL), _23(NULL), _24(NULL), _25("pg_cancel_session"), _26(NULL), _27(NULL), _28(NULL), _29(0), _30(false), _31(NULL), _32(false), _33(NULL))
|
||||
AddBuiltinFunc(_0(3991), _1("pg_cancel_session"), _2(2), _3(true), _4(false), _5(pg_cancel_session), _6(16), _7(PG_CATALOG_NAMESPACE), _8(BOOTSTRAP_SUPERUSERID), _9(INTERNALlanguageId), _10(1), _11(0), _12(0), _13(0), _14(false), _15(false), _16(false), _17(false), _18('v'), _19(0), _20(2, 20, 20), _21(NULL), _22(NULL), _23(NULL), _24(NULL), _25("pg_cancel_session"), _26(NULL), _27(NULL), _28(NULL), _29(0), _30(false), _31(NULL), _32(false), _33(NULL), _34('f'), _35(NULL), _36(0), _37(false), _38(NULL), _39(NULL), _40(0))
|
||||
),
|
||||
AddFuncGroup(
|
||||
"pg_cbm_force_track", 1,
|
||||
|
@ -59,7 +59,7 @@ bool open_join_children = true;
|
||||
bool will_shutdown = false;
|
||||
|
||||
/* hard-wired binary version number */
|
||||
const uint32 GRAND_VERSION_NUM = 92835;
|
||||
const uint32 GRAND_VERSION_NUM = 92836;
|
||||
|
||||
const uint32 SELECT_INTO_VAR_VERSION_NUM = 92834;
|
||||
const uint32 DOLPHIN_ENABLE_DROP_NUM = 92830;
|
||||
|
@ -0,0 +1 @@
|
||||
update pg_proc set prokind = 'f' where oid = 3991;
|
@ -0,0 +1 @@
|
||||
update pg_proc set prokind = 'f' where oid = 3991;
|
@ -1 +1,2 @@
|
||||
select provariadic,oid, proname from pg_proc where arraycontains(proargmodes::char[],ARRAY['v'::char]) order by oid;
|
||||
select provariadic,oid, proname from pg_proc where arraycontains(proargmodes::char[],ARRAY['v'::char]) order by oid;
|
||||
select prokind,length(prokind),count(*) from pg_proc where oid < 16384 group by prokind;
|
||||
|
@ -28,3 +28,9 @@ select provariadic,oid, proname from pg_proc where arraycontains(proargmodes::ch
|
||||
2276 | 7109 | db4ai_predict_by_float8_array
|
||||
(25 rows)
|
||||
|
||||
select prokind,length(prokind),count(*) from pg_proc where oid < 16384 group by prokind;
|
||||
prokind | length | count
|
||||
---------+--------+-------
|
||||
--? f | 1 | .*
|
||||
(1 row)
|
||||
|
||||
|
Reference in New Issue
Block a user