// Copyright 2024 Dolthub, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package id // This adds all of the built-in functions to the cache. func init() { globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "heap_tableam_handler", string(NewId(Section_Type, "pg_catalog", "internal"))), 3) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "byteaout", string(NewId(Section_Type, "pg_catalog", "bytea"))), 31) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "charout", string(NewId(Section_Type, "pg_catalog", "char"))), 33) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "namein", string(NewId(Section_Type, "pg_catalog", "cstring"))), 34) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nameout", string(NewId(Section_Type, "pg_catalog", "name"))), 35) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 38) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2out", string(NewId(Section_Type, "pg_catalog", "int2"))), 39) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2vectorin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 40) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2vectorout", string(NewId(Section_Type, "pg_catalog", "int2vector"))), 41) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 42) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4out", string(NewId(Section_Type, "pg_catalog", "int4"))), 43) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regprocin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 44) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regprocout", string(NewId(Section_Type, "pg_catalog", "regproc"))), 45) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 46) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textout", string(NewId(Section_Type, "pg_catalog", "text"))), 47) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tidin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 48) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tidout", string(NewId(Section_Type, "pg_catalog", "tid"))), 49) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xidin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 50) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xidout", string(NewId(Section_Type, "pg_catalog", "xid"))), 51) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cidin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 52) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cidout", string(NewId(Section_Type, "pg_catalog", "cid"))), 53) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidvectorin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 54) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidvectorout", string(NewId(Section_Type, "pg_catalog", "oidvector"))), 55) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "boollt", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool"))), 56) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "boolgt", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool"))), 57) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "booleq", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool"))), 60) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "chareq", string(NewId(Section_Type, "pg_catalog", "char")), string(NewId(Section_Type, "pg_catalog", "char"))), 61) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nameeq", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "name"))), 62) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2eq", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 63) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2lt", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 64) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4eq", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 65) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4lt", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 66) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "texteq", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 67) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xideq", string(NewId(Section_Type, "pg_catalog", "xid")), string(NewId(Section_Type, "pg_catalog", "xid"))), 68) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cideq", string(NewId(Section_Type, "pg_catalog", "cid")), string(NewId(Section_Type, "pg_catalog", "cid"))), 69) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "charne", string(NewId(Section_Type, "pg_catalog", "char")), string(NewId(Section_Type, "pg_catalog", "char"))), 70) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "charle", string(NewId(Section_Type, "pg_catalog", "char")), string(NewId(Section_Type, "pg_catalog", "char"))), 72) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "chargt", string(NewId(Section_Type, "pg_catalog", "char")), string(NewId(Section_Type, "pg_catalog", "char"))), 73) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "charge", string(NewId(Section_Type, "pg_catalog", "char")), string(NewId(Section_Type, "pg_catalog", "char"))), 74) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4", string(NewId(Section_Type, "pg_catalog", "char"))), 77) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "char", string(NewId(Section_Type, "pg_catalog", "int4"))), 78) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nameregexeq", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 79) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "boolne", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool"))), 84) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ddl_command_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 86) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ddl_command_out", string(NewId(Section_Type, "pg_catalog", "pg_ddl_command"))), 87) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ddl_command_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 88) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "version"), 89) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ddl_command_send", string(NewId(Section_Type, "pg_catalog", "pg_ddl_command"))), 90) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "eqsel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 101) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "neqsel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 102) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "scalarltsel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 103) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "scalargtsel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 104) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "eqjoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 105) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "neqjoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 106) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "scalarltjoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 107) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "scalargtjoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 108) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "unknownin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 109) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "unknownout", string(NewId(Section_Type, "pg_catalog", "unknown"))), 110) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_above_eq", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 115) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_below_eq", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 116) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 117) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_out", string(NewId(Section_Type, "pg_catalog", "point"))), 118) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 119) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_out", string(NewId(Section_Type, "pg_catalog", "lseg"))), 120) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 121) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_out", string(NewId(Section_Type, "pg_catalog", "path"))), 122) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 123) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_out", string(NewId(Section_Type, "pg_catalog", "box"))), 124) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_overlap", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 125) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_ge", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 126) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_gt", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 127) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_eq", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 128) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_lt", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 129) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_le", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 130) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_above", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 131) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_left", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 132) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_right", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 133) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_below", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 134) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_eq", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 135) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "on_pb", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "box"))), 136) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "on_ppath", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "path"))), 137) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_center", string(NewId(Section_Type, "pg_catalog", "box"))), 138) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "areasel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 139) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "areajoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 140) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4mul", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 141) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4ne", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 144) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2ne", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 145) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2gt", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 146) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4gt", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 147) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2le", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 148) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4le", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 149) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4ge", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 150) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2ge", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 151) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2mul", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 152) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2div", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 153) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4div", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 154) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2mod", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 155) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4mod", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 156) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textne", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 157) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int24eq", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 158) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int42eq", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 159) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int24lt", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 160) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int42lt", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 161) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int24gt", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 162) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int42gt", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 163) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int24ne", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 164) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int42ne", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 165) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int24le", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 166) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int42le", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 167) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int24ge", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 168) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int42ge", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 169) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int24mul", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 170) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int42mul", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 171) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int24div", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 172) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int42div", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 173) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2pl", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 176) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4pl", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 177) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int24pl", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 178) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int42pl", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 179) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2mi", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 180) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4mi", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 181) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int24mi", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 182) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int42mi", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 183) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oideq", string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 184) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidne", string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 185) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_same", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 186) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_contain", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 187) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_left", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 188) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_overleft", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 189) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_overright", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 190) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_right", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 191) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_contained", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 192) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_contain_pt", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "box"))), 193) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_node_tree_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 195) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_node_tree_out", string(NewId(Section_Type, "pg_catalog", "pg_node_tree"))), 196) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_node_tree_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 197) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_node_tree_send", string(NewId(Section_Type, "pg_catalog", "pg_node_tree"))), 198) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 200) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4out", string(NewId(Section_Type, "pg_catalog", "float4"))), 201) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4mul", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float4"))), 202) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4div", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float4"))), 203) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4pl", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float4"))), 204) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4mi", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float4"))), 205) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4um", string(NewId(Section_Type, "pg_catalog", "float4"))), 206) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4abs", string(NewId(Section_Type, "pg_catalog", "float4"))), 207) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4_accum", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "_float8"))), 208) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4larger", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float4"))), 209) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4smaller", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float4"))), 211) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4um", string(NewId(Section_Type, "pg_catalog", "int4"))), 212) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2um", string(NewId(Section_Type, "pg_catalog", "int2"))), 213) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 214) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8out", string(NewId(Section_Type, "pg_catalog", "float8"))), 215) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8mul", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 216) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8div", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 217) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8pl", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 218) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8mi", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 219) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8um", string(NewId(Section_Type, "pg_catalog", "float8"))), 220) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8abs", string(NewId(Section_Type, "pg_catalog", "float8"))), 221) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_accum", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "_float8"))), 222) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8larger", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 223) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8smaller", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 224) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_center", string(NewId(Section_Type, "pg_catalog", "lseg"))), 225) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_center", string(NewId(Section_Type, "pg_catalog", "polygon"))), 227) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dround", string(NewId(Section_Type, "pg_catalog", "float8"))), 228) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dtrunc", string(NewId(Section_Type, "pg_catalog", "float8"))), 229) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dsqrt", string(NewId(Section_Type, "pg_catalog", "float8"))), 230) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dcbrt", string(NewId(Section_Type, "pg_catalog", "float8"))), 231) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dpow", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 232) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dexp", string(NewId(Section_Type, "pg_catalog", "float8"))), 233) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dlog1", string(NewId(Section_Type, "pg_catalog", "float8"))), 234) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8", string(NewId(Section_Type, "pg_catalog", "int2"))), 235) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4", string(NewId(Section_Type, "pg_catalog", "int2"))), 236) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2", string(NewId(Section_Type, "pg_catalog", "float8"))), 237) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2", string(NewId(Section_Type, "pg_catalog", "float4"))), 238) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "line_distance", string(NewId(Section_Type, "pg_catalog", "line")), string(NewId(Section_Type, "pg_catalog", "line"))), 239) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nameeqtext", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 240) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "namelttext", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 241) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nameletext", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 242) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "namegetext", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 243) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "namegttext", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 244) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "namenetext", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 245) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btnametextcmp", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 246) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "texteqname", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 247) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textltname", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 248) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textlename", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 249) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textgename", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 250) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textgtname", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 251) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textnename", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 252) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bttextnamecmp", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 253) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nameconcatoid", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "oid"))), 266) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "table_am_handler_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 267) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "table_am_handler_out", string(NewId(Section_Type, "pg_catalog", "table_am_handler"))), 268) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timeofday"), 274) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_nextoid", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "regclass")), string(NewId(Section_Type, "pg_catalog", "regclass"))), 275) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_combine", string(NewId(Section_Type, "pg_catalog", "_float8")), string(NewId(Section_Type, "pg_catalog", "_float8"))), 276) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inter_sl", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "line"))), 277) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inter_lb", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "line"))), 278) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float48mul", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 279) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float48div", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 280) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float48pl", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 281) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float48mi", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 282) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float84mul", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 283) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float84div", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 284) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float84pl", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 285) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float84mi", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 286) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4eq", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float4"))), 287) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4ne", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float4"))), 288) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4lt", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float4"))), 289) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4le", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float4"))), 290) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4gt", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float4"))), 291) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4ge", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float4"))), 292) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8eq", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 293) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8ne", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 294) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8lt", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 295) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8le", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 296) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8gt", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 297) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8ge", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 298) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float48eq", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 299) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float48ne", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 300) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float48lt", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 301) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float48le", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 302) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float48gt", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 303) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float48ge", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 304) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float84eq", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 305) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float84ne", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 306) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float84lt", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 307) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float84le", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 308) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float84gt", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 309) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float84ge", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 310) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8", string(NewId(Section_Type, "pg_catalog", "float4"))), 311) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4", string(NewId(Section_Type, "pg_catalog", "float8"))), 312) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4", string(NewId(Section_Type, "pg_catalog", "int2"))), 313) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2", string(NewId(Section_Type, "pg_catalog", "int4"))), 314) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_jit_available"), 315) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8", string(NewId(Section_Type, "pg_catalog", "int4"))), 316) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4", string(NewId(Section_Type, "pg_catalog", "float8"))), 317) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4", string(NewId(Section_Type, "pg_catalog", "int4"))), 318) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4", string(NewId(Section_Type, "pg_catalog", "float4"))), 319) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "width_bucket", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 320) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 321) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_out", string(NewId(Section_Type, "pg_catalog", "json"))), 322) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 323) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_send", string(NewId(Section_Type, "pg_catalog", "json"))), 324) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "index_am_handler_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 326) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "index_am_handler_out", string(NewId(Section_Type, "pg_catalog", "index_am_handler"))), 327) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashmacaddr8", string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 328) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hash_aclitem", string(NewId(Section_Type, "pg_catalog", "aclitem"))), 329) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bthandler", string(NewId(Section_Type, "pg_catalog", "internal"))), 330) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashhandler", string(NewId(Section_Type, "pg_catalog", "internal"))), 331) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gisthandler", string(NewId(Section_Type, "pg_catalog", "internal"))), 332) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ginhandler", string(NewId(Section_Type, "pg_catalog", "internal"))), 333) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spghandler", string(NewId(Section_Type, "pg_catalog", "internal"))), 334) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brinhandler", string(NewId(Section_Type, "pg_catalog", "internal"))), 335) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "scalarlesel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 336) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "scalargesel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 337) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "amvalidate", string(NewId(Section_Type, "pg_catalog", "oid"))), 338) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_same", string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 339) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_contain", string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 340) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_left", string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 341) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_overleft", string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 342) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_overright", string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 343) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_right", string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 344) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_contained", string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 345) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_overlap", string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 346) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 347) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_out", string(NewId(Section_Type, "pg_catalog", "polygon"))), 348) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btint2cmp", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 350) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btint4cmp", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 351) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btfloat4cmp", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float4"))), 354) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btfloat8cmp", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 355) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btoidcmp", string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 356) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_bp", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "box"))), 357) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btcharcmp", string(NewId(Section_Type, "pg_catalog", "char")), string(NewId(Section_Type, "pg_catalog", "char"))), 358) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btnamecmp", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "name"))), 359) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bttextcmp", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 360) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_distance", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 361) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_interpt", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 362) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_ps", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 363) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_pb", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "box"))), 364) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_sb", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "box"))), 365) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "close_ps", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 366) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "close_pb", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "box"))), 367) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "close_sb", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "box"))), 368) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "on_ps", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 369) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_distance", string(NewId(Section_Type, "pg_catalog", "path")), string(NewId(Section_Type, "pg_catalog", "path"))), 370) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_ppath", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "path"))), 371) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "on_sb", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "box"))), 372) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inter_sb", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "box"))), 373) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "string_to_array", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 376) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_cmp", string(NewId(Section_Type, "pg_catalog", "money")), string(NewId(Section_Type, "pg_catalog", "money"))), 377) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_append", string(NewId(Section_Type, "pg_catalog", "anycompatible")), string(NewId(Section_Type, "pg_catalog", "anycompatiblearray"))), 378) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_prepend", string(NewId(Section_Type, "pg_catalog", "anycompatible")), string(NewId(Section_Type, "pg_catalog", "anycompatiblearray"))), 379) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_sp", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 380) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_bs", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "box"))), 381) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btarraycmp", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 382) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_cat", string(NewId(Section_Type, "pg_catalog", "anycompatiblearray")), string(NewId(Section_Type, "pg_catalog", "anycompatiblearray"))), 383) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_to_string", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 384) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "scalarlejoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 386) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_ne", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 390) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_lt", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 391) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_gt", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 392) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_le", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 393) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "string_to_array", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 394) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_to_string", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 395) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_ge", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 396) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "scalargejoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 398) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashmacaddr", string(NewId(Section_Type, "pg_catalog", "macaddr"))), 399) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashtext", string(NewId(Section_Type, "pg_catalog", "text"))), 400) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text", string(NewId(Section_Type, "pg_catalog", "bpchar"))), 401) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btoidvectorcmp", string(NewId(Section_Type, "pg_catalog", "oidvector")), string(NewId(Section_Type, "pg_catalog", "oidvector"))), 404) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text", string(NewId(Section_Type, "pg_catalog", "name"))), 406) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "name", string(NewId(Section_Type, "pg_catalog", "text"))), 407) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpchar", string(NewId(Section_Type, "pg_catalog", "name"))), 408) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "name", string(NewId(Section_Type, "pg_catalog", "bpchar"))), 409) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_pathp", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "path"))), 421) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashinet", string(NewId(Section_Type, "pg_catalog", "inet"))), 422) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashint4extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 425) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hash_numeric", string(NewId(Section_Type, "pg_catalog", "numeric"))), 432) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 436) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr_out", string(NewId(Section_Type, "pg_catalog", "macaddr"))), 437) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "num_nulls", string(NewId(Section_Type, "pg_catalog", "any"))), 438) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "num_nonnulls", string(NewId(Section_Type, "pg_catalog", "any"))), 440) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashint2extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 441) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashint8extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 442) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashfloat4extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "float4"))), 443) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashfloat8extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 444) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashoidextended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "oid"))), 445) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashcharextended", string(NewId(Section_Type, "pg_catalog", "char")), string(NewId(Section_Type, "pg_catalog", "int8"))), 446) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashnameextended", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "int8"))), 447) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashtextextended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "text"))), 448) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashint2", string(NewId(Section_Type, "pg_catalog", "int2"))), 449) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashint4", string(NewId(Section_Type, "pg_catalog", "int4"))), 450) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashfloat4", string(NewId(Section_Type, "pg_catalog", "float4"))), 451) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashfloat8", string(NewId(Section_Type, "pg_catalog", "float8"))), 452) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashoid", string(NewId(Section_Type, "pg_catalog", "oid"))), 453) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashchar", string(NewId(Section_Type, "pg_catalog", "char"))), 454) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashname", string(NewId(Section_Type, "pg_catalog", "name"))), 455) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashvarlena", string(NewId(Section_Type, "pg_catalog", "internal"))), 456) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashoidvector", string(NewId(Section_Type, "pg_catalog", "oidvector"))), 457) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text_larger", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 458) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text_smaller", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 459) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 460) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8out", string(NewId(Section_Type, "pg_catalog", "int8"))), 461) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8um", string(NewId(Section_Type, "pg_catalog", "int8"))), 462) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8pl", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 463) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8mi", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 464) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8mul", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 465) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8div", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 466) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8eq", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 467) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8ne", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 468) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8lt", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 469) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8gt", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 470) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8le", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 471) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8ge", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 472) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int84eq", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 474) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int84ne", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 475) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int84lt", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 476) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int84gt", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 477) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int84le", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 478) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int84ge", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 479) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4", string(NewId(Section_Type, "pg_catalog", "int8"))), 480) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8", string(NewId(Section_Type, "pg_catalog", "int4"))), 481) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8", string(NewId(Section_Type, "pg_catalog", "int8"))), 482) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8", string(NewId(Section_Type, "pg_catalog", "float8"))), 483) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_larger", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 515) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_smaller", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 516) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "abbrev", string(NewId(Section_Type, "pg_catalog", "inet"))), 598) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "abbrev", string(NewId(Section_Type, "pg_catalog", "cidr"))), 599) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "set_masklen", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "inet"))), 605) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidvectorne", string(NewId(Section_Type, "pg_catalog", "oidvector")), string(NewId(Section_Type, "pg_catalog", "oidvector"))), 619) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hash_array", string(NewId(Section_Type, "pg_catalog", "anyarray"))), 626) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "set_masklen", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cidr"))), 635) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_indexam_has_property", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 636) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_index_has_property", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "regclass"))), 637) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_index_column_has_property", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "regclass"))), 638) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4", string(NewId(Section_Type, "pg_catalog", "int8"))), 652) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8", string(NewId(Section_Type, "pg_catalog", "float4"))), 653) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "namelt", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "name"))), 655) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "namele", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "name"))), 656) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "namegt", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "name"))), 657) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "namege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "name"))), 658) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "namene", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "name"))), 659) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpchar", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 668) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varchar", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "varchar"))), 669) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_indexam_progress_phasename", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "oid"))), 676) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidvectorlt", string(NewId(Section_Type, "pg_catalog", "oidvector")), string(NewId(Section_Type, "pg_catalog", "oidvector"))), 677) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidvectorle", string(NewId(Section_Type, "pg_catalog", "oidvector")), string(NewId(Section_Type, "pg_catalog", "oidvector"))), 678) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidvectoreq", string(NewId(Section_Type, "pg_catalog", "oidvector")), string(NewId(Section_Type, "pg_catalog", "oidvector"))), 679) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidvectorge", string(NewId(Section_Type, "pg_catalog", "oidvector")), string(NewId(Section_Type, "pg_catalog", "oidvector"))), 680) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidvectorgt", string(NewId(Section_Type, "pg_catalog", "oidvector")), string(NewId(Section_Type, "pg_catalog", "oidvector"))), 681) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network", string(NewId(Section_Type, "pg_catalog", "inet"))), 683) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "netmask", string(NewId(Section_Type, "pg_catalog", "inet"))), 696) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "masklen", string(NewId(Section_Type, "pg_catalog", "inet"))), 697) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "broadcast", string(NewId(Section_Type, "pg_catalog", "inet"))), 698) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "host", string(NewId(Section_Type, "pg_catalog", "inet"))), 699) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_lp", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "line"))), 702) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_ls", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "line"))), 704) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "getpgusername"), 710) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "family", string(NewId(Section_Type, "pg_catalog", "inet"))), 711) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2", string(NewId(Section_Type, "pg_catalog", "int8"))), 714) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_create", string(NewId(Section_Type, "pg_catalog", "oid"))), 715) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidlt", string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 716) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidle", string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 717) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "octet_length", string(NewId(Section_Type, "pg_catalog", "bytea"))), 720) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "get_byte", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "int4"))), 721) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "set_byte", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 722) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "get_bit", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "int8"))), 723) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "set_bit", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 724) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_pl", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "line"))), 725) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_sl", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "line"))), 727) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_cpoly", string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "circle"))), 728) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_distance", string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 729) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text", string(NewId(Section_Type, "pg_catalog", "inet"))), 730) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text_lt", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 740) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text_le", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 741) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text_gt", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 742) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text_ge", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 743) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_eq", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 744) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "current_user"), 745) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "session_user"), 746) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_dims", string(NewId(Section_Type, "pg_catalog", "anyarray"))), 747) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_ndims", string(NewId(Section_Type, "pg_catalog", "anyarray"))), 748) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlay", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 749) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 750) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_out", string(NewId(Section_Type, "pg_catalog", "anyarray"))), 751) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlay", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "int4"))), 752) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "trunc", string(NewId(Section_Type, "pg_catalog", "macaddr"))), 753) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8", string(NewId(Section_Type, "pg_catalog", "int2"))), 754) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_import", string(NewId(Section_Type, "pg_catalog", "text"))), 764) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_export", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 765) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4inc", string(NewId(Section_Type, "pg_catalog", "int4"))), 766) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_import", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 767) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4larger", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 768) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4smaller", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 769) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2larger", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 770) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2smaller", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 771) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashvarlenaextended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "internal"))), 772) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashoidvectorextended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "oidvector"))), 776) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hash_aclitem_extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "aclitem"))), 777) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashmacaddrextended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "macaddr"))), 778) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashinetextended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "inet"))), 779) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hash_numeric_extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 780) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashmacaddr8extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 781) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hash_array_extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 782) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_polyc", string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "circle"))), 785) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_client_encoding"), 810) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "current_query"), 817) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr_eq", string(NewId(Section_Type, "pg_catalog", "macaddr")), string(NewId(Section_Type, "pg_catalog", "macaddr"))), 830) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr_lt", string(NewId(Section_Type, "pg_catalog", "macaddr")), string(NewId(Section_Type, "pg_catalog", "macaddr"))), 831) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr_le", string(NewId(Section_Type, "pg_catalog", "macaddr")), string(NewId(Section_Type, "pg_catalog", "macaddr"))), 832) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr_gt", string(NewId(Section_Type, "pg_catalog", "macaddr")), string(NewId(Section_Type, "pg_catalog", "macaddr"))), 833) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr_ge", string(NewId(Section_Type, "pg_catalog", "macaddr")), string(NewId(Section_Type, "pg_catalog", "macaddr"))), 834) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr_ne", string(NewId(Section_Type, "pg_catalog", "macaddr")), string(NewId(Section_Type, "pg_catalog", "macaddr"))), 835) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr_cmp", string(NewId(Section_Type, "pg_catalog", "macaddr")), string(NewId(Section_Type, "pg_catalog", "macaddr"))), 836) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int82pl", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 837) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int82mi", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 838) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int82mul", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 839) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int82div", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 840) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int28pl", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 841) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btint8cmp", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 842) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_mul_flt4", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "money"))), 846) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_div_flt4", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "money"))), 847) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "flt4_mul_cash", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "money"))), 848) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "position", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 849) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textlike", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 850) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textnlike", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 851) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int48eq", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 852) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int48ne", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 853) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int48lt", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 854) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int48gt", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 855) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int48le", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 856) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int48ge", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 857) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "namelike", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 858) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "namenlike", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 859) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpchar", string(NewId(Section_Type, "pg_catalog", "char"))), 860) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "current_database"), 861) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4_mul_cash", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "money"))), 862) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2_mul_cash", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "money"))), 863) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_mul_int4", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "money"))), 864) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_div_int4", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "money"))), 865) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_mul_int2", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "money"))), 866) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_div_int2", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "money"))), 867) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "strpos", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 868) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lower", string(NewId(Section_Type, "pg_catalog", "text"))), 870) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "upper", string(NewId(Section_Type, "pg_catalog", "text"))), 871) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "initcap", string(NewId(Section_Type, "pg_catalog", "text"))), 872) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lpad", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 873) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "rpad", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 874) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ltrim", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 875) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "rtrim", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 876) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "substr", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text"))), 877) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "translate", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 878) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lpad", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text"))), 879) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "rpad", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text"))), 880) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ltrim", string(NewId(Section_Type, "pg_catalog", "text"))), 881) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "rtrim", string(NewId(Section_Type, "pg_catalog", "text"))), 882) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "substr", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text"))), 883) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btrim", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 884) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btrim", string(NewId(Section_Type, "pg_catalog", "text"))), 885) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 886) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_out", string(NewId(Section_Type, "pg_catalog", "money"))), 887) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_eq", string(NewId(Section_Type, "pg_catalog", "money")), string(NewId(Section_Type, "pg_catalog", "money"))), 888) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_ne", string(NewId(Section_Type, "pg_catalog", "money")), string(NewId(Section_Type, "pg_catalog", "money"))), 889) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_lt", string(NewId(Section_Type, "pg_catalog", "money")), string(NewId(Section_Type, "pg_catalog", "money"))), 890) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_le", string(NewId(Section_Type, "pg_catalog", "money")), string(NewId(Section_Type, "pg_catalog", "money"))), 891) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_gt", string(NewId(Section_Type, "pg_catalog", "money")), string(NewId(Section_Type, "pg_catalog", "money"))), 892) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_ge", string(NewId(Section_Type, "pg_catalog", "money")), string(NewId(Section_Type, "pg_catalog", "money"))), 893) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_pl", string(NewId(Section_Type, "pg_catalog", "money")), string(NewId(Section_Type, "pg_catalog", "money"))), 894) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_mi", string(NewId(Section_Type, "pg_catalog", "money")), string(NewId(Section_Type, "pg_catalog", "money"))), 895) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_mul_flt8", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "money"))), 896) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_div_flt8", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "money"))), 897) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cashlarger", string(NewId(Section_Type, "pg_catalog", "money")), string(NewId(Section_Type, "pg_catalog", "money"))), 898) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cashsmaller", string(NewId(Section_Type, "pg_catalog", "money")), string(NewId(Section_Type, "pg_catalog", "money"))), 899) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 910) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_out", string(NewId(Section_Type, "pg_catalog", "inet"))), 911) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "flt8_mul_cash", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "money"))), 919) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network_eq", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 920) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network_lt", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 921) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network_le", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 922) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network_gt", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 923) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network_ge", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 924) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network_ne", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 925) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network_cmp", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 926) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network_sub", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 927) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network_subeq", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 928) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network_sup", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 929) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network_supeq", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 930) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_words", string(NewId(Section_Type, "pg_catalog", "money"))), 935) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "substring", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text"))), 936) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "substring", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text"))), 937) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "generate_series", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "interval"))), 938) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "generate_series", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "interval"))), 939) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mod", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 940) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mod", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 941) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int28mi", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 942) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int28mul", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 943) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "char", string(NewId(Section_Type, "pg_catalog", "text"))), 944) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8mod", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 945) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text", string(NewId(Section_Type, "pg_catalog", "char"))), 946) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mod", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 947) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int28div", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 948) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashint8", string(NewId(Section_Type, "pg_catalog", "int8"))), 949) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_open", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid"))), 952) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_close", string(NewId(Section_Type, "pg_catalog", "int4"))), 953) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "loread", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 954) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lowrite", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "int4"))), 955) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_lseek", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 956) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_creat", string(NewId(Section_Type, "pg_catalog", "int4"))), 957) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_tell", string(NewId(Section_Type, "pg_catalog", "int4"))), 958) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "on_pl", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "line"))), 959) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "on_sl", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "line"))), 960) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "close_pl", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "line"))), 961) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_unlink", string(NewId(Section_Type, "pg_catalog", "oid"))), 964) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashbpcharextended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 972) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_inter", string(NewId(Section_Type, "pg_catalog", "path")), string(NewId(Section_Type, "pg_catalog", "path"))), 973) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "area", string(NewId(Section_Type, "pg_catalog", "box"))), 975) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "width", string(NewId(Section_Type, "pg_catalog", "box"))), 976) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "height", string(NewId(Section_Type, "pg_catalog", "box"))), 977) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_distance", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 978) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "area", string(NewId(Section_Type, "pg_catalog", "path"))), 979) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_intersect", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 980) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "diagonal", string(NewId(Section_Type, "pg_catalog", "box"))), 981) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_n_lt", string(NewId(Section_Type, "pg_catalog", "path")), string(NewId(Section_Type, "pg_catalog", "path"))), 982) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_n_gt", string(NewId(Section_Type, "pg_catalog", "path")), string(NewId(Section_Type, "pg_catalog", "path"))), 983) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_n_eq", string(NewId(Section_Type, "pg_catalog", "path")), string(NewId(Section_Type, "pg_catalog", "path"))), 984) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_n_le", string(NewId(Section_Type, "pg_catalog", "path")), string(NewId(Section_Type, "pg_catalog", "path"))), 985) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_n_ge", string(NewId(Section_Type, "pg_catalog", "path")), string(NewId(Section_Type, "pg_catalog", "path"))), 986) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_length", string(NewId(Section_Type, "pg_catalog", "path"))), 987) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_ne", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 988) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_vert", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 989) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_horiz", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 990) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_distance", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 991) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "slope", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 992) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 993) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_intersect", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 994) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_parallel", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 995) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_perp", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 996) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_vertical", string(NewId(Section_Type, "pg_catalog", "lseg"))), 997) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_horizontal", string(NewId(Section_Type, "pg_catalog", "lseg"))), 998) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_eq", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 999) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_truncate", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1004) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textlike_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 1023) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "texticregexeq_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 1024) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "texticlike_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 1025) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timezone", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1026) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_point_compress", string(NewId(Section_Type, "pg_catalog", "internal"))), 1030) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "aclitemin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 1031) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "aclitemout", string(NewId(Section_Type, "pg_catalog", "aclitem"))), 1032) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "aclinsert", string(NewId(Section_Type, "pg_catalog", "aclitem")), string(NewId(Section_Type, "pg_catalog", "_aclitem"))), 1035) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "aclremove", string(NewId(Section_Type, "pg_catalog", "aclitem")), string(NewId(Section_Type, "pg_catalog", "_aclitem"))), 1036) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "aclcontains", string(NewId(Section_Type, "pg_catalog", "aclitem")), string(NewId(Section_Type, "pg_catalog", "_aclitem"))), 1037) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "getdatabaseencoding"), 1039) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpcharin", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 1044) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpcharout", string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1045) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varcharin", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 1046) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varcharout", string(NewId(Section_Type, "pg_catalog", "varchar"))), 1047) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpchareq", string(NewId(Section_Type, "pg_catalog", "bpchar")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1048) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpcharlt", string(NewId(Section_Type, "pg_catalog", "bpchar")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1049) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpcharle", string(NewId(Section_Type, "pg_catalog", "bpchar")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1050) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpchargt", string(NewId(Section_Type, "pg_catalog", "bpchar")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1051) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpcharge", string(NewId(Section_Type, "pg_catalog", "bpchar")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1052) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpcharne", string(NewId(Section_Type, "pg_catalog", "bpchar")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1053) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "aclitemeq", string(NewId(Section_Type, "pg_catalog", "aclitem")), string(NewId(Section_Type, "pg_catalog", "aclitem"))), 1062) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpchar_larger", string(NewId(Section_Type, "pg_catalog", "bpchar")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1063) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpchar_smaller", string(NewId(Section_Type, "pg_catalog", "bpchar")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1064) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_prepared_xact"), 1065) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "generate_series", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1066) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "generate_series", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1067) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "generate_series", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 1068) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "generate_series", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 1069) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpcharcmp", string(NewId(Section_Type, "pg_catalog", "bpchar")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1078) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regclass", string(NewId(Section_Type, "pg_catalog", "text"))), 1079) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashbpchar", string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1080) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "format_type", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid"))), 1081) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 1084) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_out", string(NewId(Section_Type, "pg_catalog", "date"))), 1085) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_eq", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "date"))), 1086) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_lt", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "date"))), 1087) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_le", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "date"))), 1088) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_gt", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "date"))), 1089) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_ge", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "date"))), 1090) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_ne", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "date"))), 1091) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_cmp", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "date"))), 1092) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_lt", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time"))), 1102) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_le", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time"))), 1103) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_gt", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time"))), 1104) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_ge", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time"))), 1105) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_ne", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time"))), 1106) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_cmp", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time"))), 1107) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_wal"), 1136) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_wal_replay_pause_state"), 1137) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_larger", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "date"))), 1138) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_smaller", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "date"))), 1139) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_mi", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "date"))), 1140) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_pli", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "date"))), 1141) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_mii", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "date"))), 1142) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 1143) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_out", string(NewId(Section_Type, "pg_catalog", "time"))), 1144) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_eq", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time"))), 1145) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_add_pt", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1146) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_sub_pt", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1147) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_mul_pt", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1148) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_div_pt", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1149) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 1150) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_out", string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1151) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_eq", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1152) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_ne", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1153) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_lt", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1154) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_le", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1155) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_ge", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1156) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_gt", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1157) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_timestamp", string(NewId(Section_Type, "pg_catalog", "float8"))), 1158) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timezone", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1159) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 1160) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_out", string(NewId(Section_Type, "pg_catalog", "interval"))), 1161) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_eq", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1162) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_ne", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1163) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_lt", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1164) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_le", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1165) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_ge", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1166) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_gt", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1167) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_um", string(NewId(Section_Type, "pg_catalog", "interval"))), 1168) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_pl", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1169) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_mi", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1170) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_part", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1171) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_part", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1172) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network_subset_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 1173) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz", string(NewId(Section_Type, "pg_catalog", "date"))), 1174) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "justify_hours", string(NewId(Section_Type, "pg_catalog", "interval"))), 1175) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "time"))), 1176) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_path_exists_tz", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonpath"))), 1177) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date", string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1178) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_path_query_tz", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonpath"))), 1179) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_path_query_array_tz", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonpath"))), 1180) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "age", string(NewId(Section_Type, "pg_catalog", "xid"))), 1181) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_mi", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1188) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_pl_interval", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1189) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_mi_interval", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1190) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "generate_subscripts", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 1191) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "generate_subscripts", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 1192) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_fill", string(NewId(Section_Type, "pg_catalog", "_int4")), string(NewId(Section_Type, "pg_catalog", "anyelement"))), 1193) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "log10", string(NewId(Section_Type, "pg_catalog", "float8"))), 1194) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_smaller", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1195) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_larger", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1196) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_smaller", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1197) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_larger", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1198) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "age", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1199) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1200) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "obj_description", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "oid"))), 1215) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "col_description", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid"))), 1216) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_trunc", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1217) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_trunc", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1218) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8inc", string(NewId(Section_Type, "pg_catalog", "int8"))), 1219) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8abs", string(NewId(Section_Type, "pg_catalog", "int8"))), 1230) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8larger", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 1236) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8smaller", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 1237) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "texticregexeq", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1238) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "texticregexne", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1239) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nameicregexeq", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 1240) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nameicregexne", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 1241) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "boolin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 1242) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "boolout", string(NewId(Section_Type, "pg_catalog", "bool"))), 1243) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "byteain", string(NewId(Section_Type, "pg_catalog", "cstring"))), 1244) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "charin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 1245) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "charlt", string(NewId(Section_Type, "pg_catalog", "char")), string(NewId(Section_Type, "pg_catalog", "char"))), 1246) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "unique_key_recheck"), 1250) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4abs", string(NewId(Section_Type, "pg_catalog", "int4"))), 1251) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nameregexne", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 1252) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2abs", string(NewId(Section_Type, "pg_catalog", "int2"))), 1253) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textregexeq", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1254) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textregexne", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1256) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textlen", string(NewId(Section_Type, "pg_catalog", "text"))), 1257) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textcat", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1258) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_char_to_encoding", string(NewId(Section_Type, "pg_catalog", "name"))), 1264) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tidne", string(NewId(Section_Type, "pg_catalog", "tid")), string(NewId(Section_Type, "pg_catalog", "tid"))), 1265) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cidr_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 1267) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "parse_ident", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text"))), 1268) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_column_size", string(NewId(Section_Type, "pg_catalog", "any"))), 1269) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlaps", string(NewId(Section_Type, "pg_catalog", "timetz")), string(NewId(Section_Type, "pg_catalog", "timetz")), string(NewId(Section_Type, "pg_catalog", "timetz")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1271) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "datetime_pl", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "time"))), 1272) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_part", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1273) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int84pl", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1274) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int84mi", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1275) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int84mul", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1276) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int84div", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1277) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int48pl", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1278) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int48mi", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1279) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int48mul", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1280) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int48div", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1281) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "quote_ident", string(NewId(Section_Type, "pg_catalog", "text"))), 1282) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "quote_literal", string(NewId(Section_Type, "pg_catalog", "text"))), 1283) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_trunc", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1284) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "quote_literal", string(NewId(Section_Type, "pg_catalog", "anyelement"))), 1285) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_fill", string(NewId(Section_Type, "pg_catalog", "_int4")), string(NewId(Section_Type, "pg_catalog", "_int4")), string(NewId(Section_Type, "pg_catalog", "anyelement"))), 1286) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oid", string(NewId(Section_Type, "pg_catalog", "int8"))), 1287) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8", string(NewId(Section_Type, "pg_catalog", "oid"))), 1288) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "quote_nullable", string(NewId(Section_Type, "pg_catalog", "text"))), 1289) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "quote_nullable", string(NewId(Section_Type, "pg_catalog", "anyelement"))), 1290) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "suppress_redundant_updates_trigger"), 1291) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tideq", string(NewId(Section_Type, "pg_catalog", "tid")), string(NewId(Section_Type, "pg_catalog", "tid"))), 1292) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "unnest", string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 1293) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "currtid2", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "tid"))), 1294) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "justify_days", string(NewId(Section_Type, "pg_catalog", "interval"))), 1295) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timedate_pl", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "time"))), 1296) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "datetimetz_pl", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1297) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetzdate_pl", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1298) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "now"), 1299) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "positionsel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1300) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "positionjoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1301) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "contsel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1302) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "contjoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1303) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlaps", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1304) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlaps", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1305) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlaps", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1306) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlaps", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1307) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlaps", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time"))), 1308) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlaps", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1309) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlaps", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1310) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlaps", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1311) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 1312) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_out", string(NewId(Section_Type, "pg_catalog", "timestamp"))), 1313) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_cmp", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1314) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_cmp", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1315) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time", string(NewId(Section_Type, "pg_catalog", "timestamp"))), 1316) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "length", string(NewId(Section_Type, "pg_catalog", "text"))), 1317) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "length", string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1318) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xideqint4", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "xid"))), 1319) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_div", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1326) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dlog10", string(NewId(Section_Type, "pg_catalog", "float8"))), 1339) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "log", string(NewId(Section_Type, "pg_catalog", "float8"))), 1340) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ln", string(NewId(Section_Type, "pg_catalog", "float8"))), 1341) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "round", string(NewId(Section_Type, "pg_catalog", "float8"))), 1342) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "trunc", string(NewId(Section_Type, "pg_catalog", "float8"))), 1343) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sqrt", string(NewId(Section_Type, "pg_catalog", "float8"))), 1344) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cbrt", string(NewId(Section_Type, "pg_catalog", "float8"))), 1345) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pow", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 1346) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "exp", string(NewId(Section_Type, "pg_catalog", "float8"))), 1347) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "obj_description", string(NewId(Section_Type, "pg_catalog", "oid"))), 1348) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidvectortypes", string(NewId(Section_Type, "pg_catalog", "oidvector"))), 1349) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 1350) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_out", string(NewId(Section_Type, "pg_catalog", "timetz"))), 1351) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_eq", string(NewId(Section_Type, "pg_catalog", "timetz")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1352) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_ne", string(NewId(Section_Type, "pg_catalog", "timetz")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1353) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_lt", string(NewId(Section_Type, "pg_catalog", "timetz")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1354) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_le", string(NewId(Section_Type, "pg_catalog", "timetz")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1355) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_ge", string(NewId(Section_Type, "pg_catalog", "timetz")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1356) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_gt", string(NewId(Section_Type, "pg_catalog", "timetz")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1357) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_cmp", string(NewId(Section_Type, "pg_catalog", "timetz")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1358) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1359) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hostmask", string(NewId(Section_Type, "pg_catalog", "inet"))), 1362) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textregexeq_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 1364) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "makeaclitem", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 1365) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "character_length", string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1367) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "power", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 1368) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "character_length", string(NewId(Section_Type, "pg_catalog", "text"))), 1369) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval", string(NewId(Section_Type, "pg_catalog", "time"))), 1370) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lock_status"), 1371) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "char_length", string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1372) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "isfinite", string(NewId(Section_Type, "pg_catalog", "date"))), 1373) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "octet_length", string(NewId(Section_Type, "pg_catalog", "text"))), 1374) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "octet_length", string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1375) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "factorial", string(NewId(Section_Type, "pg_catalog", "int8"))), 1376) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_larger", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time"))), 1377) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_smaller", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time"))), 1378) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_larger", string(NewId(Section_Type, "pg_catalog", "timetz")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1379) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_smaller", string(NewId(Section_Type, "pg_catalog", "timetz")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1380) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "char_length", string(NewId(Section_Type, "pg_catalog", "text"))), 1381) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_part", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "date"))), 1384) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_part", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "time"))), 1385) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "age", string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1386) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_constraintdef", string(NewId(Section_Type, "pg_catalog", "oid"))), 1387) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz", string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1388) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "isfinite", string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1389) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "isfinite", string(NewId(Section_Type, "pg_catalog", "interval"))), 1390) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_backend_start", string(NewId(Section_Type, "pg_catalog", "int4"))), 1391) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_backend_client_addr", string(NewId(Section_Type, "pg_catalog", "int4"))), 1392) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_backend_client_port", string(NewId(Section_Type, "pg_catalog", "int4"))), 1393) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "abs", string(NewId(Section_Type, "pg_catalog", "float4"))), 1394) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "abs", string(NewId(Section_Type, "pg_catalog", "float8"))), 1395) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "abs", string(NewId(Section_Type, "pg_catalog", "int8"))), 1396) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "abs", string(NewId(Section_Type, "pg_catalog", "int4"))), 1397) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "abs", string(NewId(Section_Type, "pg_catalog", "int2"))), 1398) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "name", string(NewId(Section_Type, "pg_catalog", "varchar"))), 1400) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varchar", string(NewId(Section_Type, "pg_catalog", "name"))), 1401) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "current_schema"), 1402) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "current_schemas", string(NewId(Section_Type, "pg_catalog", "bool"))), 1403) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlay", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1404) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlay", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1405) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "isvertical", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 1406) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ishorizontal", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 1407) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "isparallel", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 1408) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "isperp", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 1409) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "isvertical", string(NewId(Section_Type, "pg_catalog", "lseg"))), 1410) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ishorizontal", string(NewId(Section_Type, "pg_catalog", "lseg"))), 1411) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "isparallel", string(NewId(Section_Type, "pg_catalog", "line")), string(NewId(Section_Type, "pg_catalog", "line"))), 1412) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "isperp", string(NewId(Section_Type, "pg_catalog", "line")), string(NewId(Section_Type, "pg_catalog", "line"))), 1413) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "isvertical", string(NewId(Section_Type, "pg_catalog", "line"))), 1414) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ishorizontal", string(NewId(Section_Type, "pg_catalog", "line"))), 1415) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point", string(NewId(Section_Type, "pg_catalog", "circle"))), 1416) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time", string(NewId(Section_Type, "pg_catalog", "interval"))), 1419) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 1421) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_add", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "box"))), 1422) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_sub", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "box"))), 1423) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_mul", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "box"))), 1424) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_div", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "box"))), 1425) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_contain_pt", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "path"))), 1426) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cidr_out", string(NewId(Section_Type, "pg_catalog", "cidr"))), 1427) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_contain_pt", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 1428) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pt_contained_poly", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 1429) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "isclosed", string(NewId(Section_Type, "pg_catalog", "path"))), 1430) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "isopen", string(NewId(Section_Type, "pg_catalog", "path"))), 1431) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_npoints", string(NewId(Section_Type, "pg_catalog", "path"))), 1432) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pclose", string(NewId(Section_Type, "pg_catalog", "path"))), 1433) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "popen", string(NewId(Section_Type, "pg_catalog", "path"))), 1434) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_add", string(NewId(Section_Type, "pg_catalog", "path")), string(NewId(Section_Type, "pg_catalog", "path"))), 1435) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_add_pt", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "path"))), 1436) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_sub_pt", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "path"))), 1437) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_mul_pt", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "path"))), 1438) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_div_pt", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "path"))), 1439) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 1440) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_add", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 1441) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_sub", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 1442) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_mul", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 1443) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_div", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 1444) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_npoints", string(NewId(Section_Type, "pg_catalog", "polygon"))), 1445) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box", string(NewId(Section_Type, "pg_catalog", "polygon"))), 1446) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path", string(NewId(Section_Type, "pg_catalog", "polygon"))), 1447) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "polygon", string(NewId(Section_Type, "pg_catalog", "box"))), 1448) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "polygon", string(NewId(Section_Type, "pg_catalog", "path"))), 1449) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 1450) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_out", string(NewId(Section_Type, "pg_catalog", "circle"))), 1451) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_same", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1452) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_contain", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1453) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_left", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1454) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_overleft", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1455) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_overright", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1456) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_right", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1457) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_contained", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1458) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_overlap", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1459) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_below", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1460) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_above", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1461) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_eq", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1462) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_ne", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1463) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_lt", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1464) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_gt", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1465) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_le", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1466) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_ge", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1467) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "area", string(NewId(Section_Type, "pg_catalog", "circle"))), 1468) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "diameter", string(NewId(Section_Type, "pg_catalog", "circle"))), 1469) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "radius", string(NewId(Section_Type, "pg_catalog", "circle"))), 1470) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_distance", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1471) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_center", string(NewId(Section_Type, "pg_catalog", "circle"))), 1472) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "float8"))), 1473) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle", string(NewId(Section_Type, "pg_catalog", "polygon"))), 1474) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "polygon", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1475) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_pc", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1476) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_contain_pt", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1477) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pt_contained_circle", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "circle"))), 1478) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle", string(NewId(Section_Type, "pg_catalog", "box"))), 1479) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box", string(NewId(Section_Type, "pg_catalog", "circle"))), 1480) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "log10", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1481) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_ne", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 1482) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_lt", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 1483) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_le", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 1484) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_gt", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 1485) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_ge", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 1486) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_length", string(NewId(Section_Type, "pg_catalog", "lseg"))), 1487) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "close_ls", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "line"))), 1488) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "close_lseg", string(NewId(Section_Type, "pg_catalog", "lseg")), string(NewId(Section_Type, "pg_catalog", "lseg"))), 1489) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "line_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 1490) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "line_out", string(NewId(Section_Type, "pg_catalog", "line"))), 1491) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "line_eq", string(NewId(Section_Type, "pg_catalog", "line")), string(NewId(Section_Type, "pg_catalog", "line"))), 1492) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "line", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "point"))), 1493) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "line_interpt", string(NewId(Section_Type, "pg_catalog", "line")), string(NewId(Section_Type, "pg_catalog", "line"))), 1494) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "line_intersect", string(NewId(Section_Type, "pg_catalog", "line")), string(NewId(Section_Type, "pg_catalog", "line"))), 1495) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "line_parallel", string(NewId(Section_Type, "pg_catalog", "line")), string(NewId(Section_Type, "pg_catalog", "line"))), 1496) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "line_perp", string(NewId(Section_Type, "pg_catalog", "line")), string(NewId(Section_Type, "pg_catalog", "line"))), 1497) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "line_vertical", string(NewId(Section_Type, "pg_catalog", "line"))), 1498) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "line_horizontal", string(NewId(Section_Type, "pg_catalog", "line"))), 1499) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "length", string(NewId(Section_Type, "pg_catalog", "lseg"))), 1530) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "length", string(NewId(Section_Type, "pg_catalog", "path"))), 1531) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point", string(NewId(Section_Type, "pg_catalog", "lseg"))), 1532) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point", string(NewId(Section_Type, "pg_catalog", "box"))), 1534) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point", string(NewId(Section_Type, "pg_catalog", "polygon"))), 1540) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg", string(NewId(Section_Type, "pg_catalog", "box"))), 1541) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "center", string(NewId(Section_Type, "pg_catalog", "box"))), 1542) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "center", string(NewId(Section_Type, "pg_catalog", "circle"))), 1543) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "polygon", string(NewId(Section_Type, "pg_catalog", "circle"))), 1544) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "npoints", string(NewId(Section_Type, "pg_catalog", "path"))), 1545) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "npoints", string(NewId(Section_Type, "pg_catalog", "polygon"))), 1556) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 1564) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_out", string(NewId(Section_Type, "pg_catalog", "bit"))), 1565) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "like", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1569) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "notlike", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1570) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "like", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 1571) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "notlike", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 1572) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_ruledef", string(NewId(Section_Type, "pg_catalog", "oid"))), 1573) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nextval", string(NewId(Section_Type, "pg_catalog", "regclass"))), 1574) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "currval", string(NewId(Section_Type, "pg_catalog", "regclass"))), 1575) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "setval", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "regclass"))), 1576) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varbit_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 1579) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varbit_out", string(NewId(Section_Type, "pg_catalog", "varbit"))), 1580) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "biteq", string(NewId(Section_Type, "pg_catalog", "bit")), string(NewId(Section_Type, "pg_catalog", "bit"))), 1581) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bitne", string(NewId(Section_Type, "pg_catalog", "bit")), string(NewId(Section_Type, "pg_catalog", "bit"))), 1582) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bitge", string(NewId(Section_Type, "pg_catalog", "bit")), string(NewId(Section_Type, "pg_catalog", "bit"))), 1592) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bitgt", string(NewId(Section_Type, "pg_catalog", "bit")), string(NewId(Section_Type, "pg_catalog", "bit"))), 1593) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bitle", string(NewId(Section_Type, "pg_catalog", "bit")), string(NewId(Section_Type, "pg_catalog", "bit"))), 1594) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bitlt", string(NewId(Section_Type, "pg_catalog", "bit")), string(NewId(Section_Type, "pg_catalog", "bit"))), 1595) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bitcmp", string(NewId(Section_Type, "pg_catalog", "bit")), string(NewId(Section_Type, "pg_catalog", "bit"))), 1596) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_encoding_to_char", string(NewId(Section_Type, "pg_catalog", "int4"))), 1597) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "random"), 1598) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "setseed", string(NewId(Section_Type, "pg_catalog", "float8"))), 1599) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "asin", string(NewId(Section_Type, "pg_catalog", "float8"))), 1600) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "acos", string(NewId(Section_Type, "pg_catalog", "float8"))), 1601) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "atan", string(NewId(Section_Type, "pg_catalog", "float8"))), 1602) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "atan2", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 1603) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sin", string(NewId(Section_Type, "pg_catalog", "float8"))), 1604) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cos", string(NewId(Section_Type, "pg_catalog", "float8"))), 1605) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tan", string(NewId(Section_Type, "pg_catalog", "float8"))), 1606) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cot", string(NewId(Section_Type, "pg_catalog", "float8"))), 1607) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "degrees", string(NewId(Section_Type, "pg_catalog", "float8"))), 1608) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "radians", string(NewId(Section_Type, "pg_catalog", "float8"))), 1609) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pi"), 1610) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_mul", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1618) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_typeof", string(NewId(Section_Type, "pg_catalog", "any"))), 1619) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ascii", string(NewId(Section_Type, "pg_catalog", "text"))), 1620) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "chr", string(NewId(Section_Type, "pg_catalog", "int4"))), 1621) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "repeat", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text"))), 1622) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "similar_escape", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1623) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mul_d_interval", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1624) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpcharlike", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1631) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpcharnlike", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1632) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "texticlike", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1633) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "texticnlike", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1634) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nameiclike", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 1635) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nameicnlike", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 1636) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "like_escape", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1637) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidgt", string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 1638) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidge", string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 1639) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_viewdef", string(NewId(Section_Type, "pg_catalog", "text"))), 1640) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_viewdef", string(NewId(Section_Type, "pg_catalog", "oid"))), 1641) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_userbyid", string(NewId(Section_Type, "pg_catalog", "oid"))), 1642) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_indexdef", string(NewId(Section_Type, "pg_catalog", "oid"))), 1643) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "RI_FKey_check_ins"), 1644) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "RI_FKey_check_upd"), 1645) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "RI_FKey_cascade_del"), 1646) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "RI_FKey_cascade_upd"), 1647) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "RI_FKey_restrict_del"), 1648) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "RI_FKey_restrict_upd"), 1649) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "RI_FKey_setnull_del"), 1650) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "RI_FKey_setnull_upd"), 1651) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "RI_FKey_setdefault_del"), 1652) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "RI_FKey_setdefault_upd"), 1653) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "RI_FKey_noaction_del"), 1654) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "RI_FKey_noaction_upd"), 1655) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpcharicregexeq", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1656) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpcharicregexne", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1657) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpcharregexeq", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1658) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpcharregexne", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1659) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpchariclike", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1660) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpcharicnlike", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 1661) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_triggerdef", string(NewId(Section_Type, "pg_catalog", "oid"))), 1662) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_serial_sequence", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1665) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varbiteq", string(NewId(Section_Type, "pg_catalog", "varbit")), string(NewId(Section_Type, "pg_catalog", "varbit"))), 1666) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varbitne", string(NewId(Section_Type, "pg_catalog", "varbit")), string(NewId(Section_Type, "pg_catalog", "varbit"))), 1667) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varbitge", string(NewId(Section_Type, "pg_catalog", "varbit")), string(NewId(Section_Type, "pg_catalog", "varbit"))), 1668) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varbitgt", string(NewId(Section_Type, "pg_catalog", "varbit")), string(NewId(Section_Type, "pg_catalog", "varbit"))), 1669) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varbitle", string(NewId(Section_Type, "pg_catalog", "varbit")), string(NewId(Section_Type, "pg_catalog", "varbit"))), 1670) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varbitlt", string(NewId(Section_Type, "pg_catalog", "varbit")), string(NewId(Section_Type, "pg_catalog", "varbit"))), 1671) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varbitcmp", string(NewId(Section_Type, "pg_catalog", "varbit")), string(NewId(Section_Type, "pg_catalog", "varbit"))), 1672) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bitand", string(NewId(Section_Type, "pg_catalog", "bit")), string(NewId(Section_Type, "pg_catalog", "bit"))), 1673) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bitor", string(NewId(Section_Type, "pg_catalog", "bit")), string(NewId(Section_Type, "pg_catalog", "bit"))), 1674) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bitxor", string(NewId(Section_Type, "pg_catalog", "bit")), string(NewId(Section_Type, "pg_catalog", "bit"))), 1675) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bitnot", string(NewId(Section_Type, "pg_catalog", "bit"))), 1676) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bitshiftleft", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "bit"))), 1677) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bitshiftright", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "bit"))), 1678) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bitcat", string(NewId(Section_Type, "pg_catalog", "varbit")), string(NewId(Section_Type, "pg_catalog", "varbit"))), 1679) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "substring", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "bit"))), 1680) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "length", string(NewId(Section_Type, "pg_catalog", "bit"))), 1681) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "octet_length", string(NewId(Section_Type, "pg_catalog", "bit"))), 1682) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1683) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4", string(NewId(Section_Type, "pg_catalog", "bit"))), 1684) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "bit"))), 1685) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_keywords"), 1686) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varbit", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "varbit"))), 1687) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_hash", string(NewId(Section_Type, "pg_catalog", "time"))), 1688) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "aclexplode", string(NewId(Section_Type, "pg_catalog", "_aclitem"))), 1689) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_mi_time", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time"))), 1690) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "boolle", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool"))), 1691) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "boolge", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool"))), 1692) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btboolcmp", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool"))), 1693) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_hash", string(NewId(Section_Type, "pg_catalog", "timetz"))), 1696) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_hash", string(NewId(Section_Type, "pg_catalog", "interval"))), 1697) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "position", string(NewId(Section_Type, "pg_catalog", "bit")), string(NewId(Section_Type, "pg_catalog", "bit"))), 1698) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "substring", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "bit"))), 1699) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 1701) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_out", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1702) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1703) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_abs", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1704) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "abs", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1705) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sign", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1706) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "round", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1707) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "round", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1708) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "trunc", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1709) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "trunc", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1710) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ceil", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1711) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "floor", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1712) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "length", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "name"))), 1713) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "convert_from", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "name"))), 1714) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cidr", string(NewId(Section_Type, "pg_catalog", "inet"))), 1715) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_expr", string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "pg_node_tree"))), 1716) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "convert_to", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 1717) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_eq", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1718) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_ne", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1719) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_gt", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1720) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_ge", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1721) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_lt", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1722) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_le", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1723) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_add", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1724) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_sub", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1725) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_mul", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1726) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_div", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1727) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mod", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1728) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_mod", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1729) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sqrt", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1730) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_sqrt", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1731) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "exp", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1732) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_exp", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1733) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ln", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1734) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_ln", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1735) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "log", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1736) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_log", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1737) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pow", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1738) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_power", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1739) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric", string(NewId(Section_Type, "pg_catalog", "int4"))), 1740) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "log", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1741) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric", string(NewId(Section_Type, "pg_catalog", "float4"))), 1742) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric", string(NewId(Section_Type, "pg_catalog", "float8"))), 1743) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1744) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1745) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1746) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_pl_interval", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1747) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_mi_interval", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1748) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_pl_interval", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1749) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_mi_interval", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1750) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_inc", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1764) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "setval", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "regclass"))), 1765) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_smaller", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1766) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_larger", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1767) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_char", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1768) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_cmp", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1769) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_char", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1770) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_uminus", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1771) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_char", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1772) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_char", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text"))), 1773) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_char", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "text"))), 1774) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_char", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "float4"))), 1775) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_char", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "float8"))), 1776) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_number", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1777) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_timestamp", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1778) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1779) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_date", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1780) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric", string(NewId(Section_Type, "pg_catalog", "int8"))), 1781) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric", string(NewId(Section_Type, "pg_catalog", "int2"))), 1782) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1783) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 1798) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidout", string(NewId(Section_Type, "pg_catalog", "oid"))), 1799) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_length", string(NewId(Section_Type, "pg_catalog", "bytea"))), 1810) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_length", string(NewId(Section_Type, "pg_catalog", "text"))), 1811) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_length", string(NewId(Section_Type, "pg_catalog", "bit"))), 1812) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "convert", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "name"))), 1813) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "iclikesel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1814) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "icnlikesel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1815) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "iclikejoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1816) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "icnlikejoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1817) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexeqsel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1818) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "likesel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1819) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "icregexeqsel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1820) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexnesel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1821) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nlikesel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1822) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "icregexnesel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1823) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexeqjoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1824) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "likejoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1825) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "icregexeqjoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1826) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexnejoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1827) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nlikejoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1828) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "icregexnejoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1829) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_avg", string(NewId(Section_Type, "pg_catalog", "_float8"))), 1830) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_var_samp", string(NewId(Section_Type, "pg_catalog", "_float8"))), 1831) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_stddev_samp", string(NewId(Section_Type, "pg_catalog", "_float8"))), 1832) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_accum", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1833) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2_accum", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1834) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4_accum", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1835) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8_accum", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "internal"))), 1836) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_avg", string(NewId(Section_Type, "pg_catalog", "internal"))), 1837) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_var_samp", string(NewId(Section_Type, "pg_catalog", "internal"))), 1838) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_stddev_samp", string(NewId(Section_Type, "pg_catalog", "internal"))), 1839) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2_sum", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 1840) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4_sum", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1841) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8_sum", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1842) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_accum", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "_interval"))), 1843) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_avg", string(NewId(Section_Type, "pg_catalog", "_interval"))), 1844) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_ascii", string(NewId(Section_Type, "pg_catalog", "text"))), 1845) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_ascii", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text"))), 1846) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_ascii", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 1847) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_pl_time", string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "interval"))), 1848) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int28eq", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 1850) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int28ne", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 1851) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int28lt", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 1852) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int28gt", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 1853) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int28le", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 1854) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int28ge", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 1855) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int82eq", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 1856) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int82ne", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 1857) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int82lt", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 1858) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int82gt", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 1859) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int82le", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 1860) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int82ge", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 1861) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2and", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 1892) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2or", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 1893) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2xor", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 1894) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2not", string(NewId(Section_Type, "pg_catalog", "int2"))), 1895) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2shl", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1896) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2shr", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1897) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4and", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1898) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4or", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1899) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4xor", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1900) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4not", string(NewId(Section_Type, "pg_catalog", "int4"))), 1901) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4shl", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1902) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4shr", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1903) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8and", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 1904) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8or", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 1905) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8xor", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 1906) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8not", string(NewId(Section_Type, "pg_catalog", "int8"))), 1907) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8shl", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1908) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8shr", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 1909) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8up", string(NewId(Section_Type, "pg_catalog", "int8"))), 1910) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2up", string(NewId(Section_Type, "pg_catalog", "int2"))), 1911) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4up", string(NewId(Section_Type, "pg_catalog", "int4"))), 1912) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4up", string(NewId(Section_Type, "pg_catalog", "float4"))), 1913) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8up", string(NewId(Section_Type, "pg_catalog", "float8"))), 1914) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_uplus", string(NewId(Section_Type, "pg_catalog", "numeric"))), 1915) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_table_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1922) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_table_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 1923) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_table_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 1924) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_table_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 1925) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_table_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1926) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_table_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 1927) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_numscans", string(NewId(Section_Type, "pg_catalog", "oid"))), 1928) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_tuples_returned", string(NewId(Section_Type, "pg_catalog", "oid"))), 1929) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_tuples_fetched", string(NewId(Section_Type, "pg_catalog", "oid"))), 1930) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_tuples_inserted", string(NewId(Section_Type, "pg_catalog", "oid"))), 1931) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_tuples_updated", string(NewId(Section_Type, "pg_catalog", "oid"))), 1932) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_tuples_deleted", string(NewId(Section_Type, "pg_catalog", "oid"))), 1933) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_blocks_fetched", string(NewId(Section_Type, "pg_catalog", "oid"))), 1934) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_blocks_hit", string(NewId(Section_Type, "pg_catalog", "oid"))), 1935) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_backend_idset"), 1936) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_backend_pid", string(NewId(Section_Type, "pg_catalog", "int4"))), 1937) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_backend_dbid", string(NewId(Section_Type, "pg_catalog", "int4"))), 1938) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_backend_userid", string(NewId(Section_Type, "pg_catalog", "int4"))), 1939) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_backend_activity", string(NewId(Section_Type, "pg_catalog", "int4"))), 1940) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_numbackends", string(NewId(Section_Type, "pg_catalog", "oid"))), 1941) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_xact_commit", string(NewId(Section_Type, "pg_catalog", "oid"))), 1942) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_xact_rollback", string(NewId(Section_Type, "pg_catalog", "oid"))), 1943) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_blocks_fetched", string(NewId(Section_Type, "pg_catalog", "oid"))), 1944) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_blocks_hit", string(NewId(Section_Type, "pg_catalog", "oid"))), 1945) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "encode", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "text"))), 1946) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "decode", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1947) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "byteaeq", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 1948) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bytealt", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 1949) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "byteale", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 1950) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "byteagt", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 1951) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "byteage", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 1952) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "byteane", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 1953) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "byteacmp", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 1954) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 1961) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2_avg_accum", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "_int8"))), 1962) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4_avg_accum", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "_int8"))), 1963) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8_avg", string(NewId(Section_Type, "pg_catalog", "_int8"))), 1964) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidlarger", string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 1965) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidsmaller", string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 1966) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 1967) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "time"))), 1968) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 1969) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_tuples_hot_updated", string(NewId(Section_Type, "pg_catalog", "oid"))), 1972) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "div", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1973) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_div_trunc", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 1980) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "similar_to_escape", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 1986) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "similar_to_escape", string(NewId(Section_Type, "pg_catalog", "text"))), 1987) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "shobj_description", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "oid"))), 1993) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textanycat", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "anynonarray"))), 2003) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anytextcat", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "anynonarray"))), 2004) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bytealike", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 2005) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "byteanlike", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 2006) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "like", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 2007) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "notlike", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 2008) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "like_escape", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 2009) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "length", string(NewId(Section_Type, "pg_catalog", "bytea"))), 2010) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "byteacat", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 2011) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "substring", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 2012) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "substring", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "int4"))), 2013) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "position", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 2014) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btrim", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 2015) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time", string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2019) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_trunc", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2020) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_part", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2021) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_activity", string(NewId(Section_Type, "pg_catalog", "int4"))), 2022) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_path_query_first_tz", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonpath"))), 2023) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp", string(NewId(Section_Type, "pg_catalog", "date"))), 2024) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "time"))), 2025) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_backend_pid"), 2026) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp", string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2027) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz", string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2028) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date", string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2029) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_path_match_tz", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonpath"))), 2030) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_mi", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2031) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_pl_interval", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "interval"))), 2032) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_mi_interval", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "interval"))), 2033) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_conf_load_time"), 2034) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_smaller", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2035) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_larger", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2036) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timezone", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 2037) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timezone", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 2038) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_hash", string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2039) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlaps", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2041) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlaps", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "interval"))), 2042) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlaps", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "interval"))), 2043) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlaps", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "interval"))), 2044) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_cmp", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2045) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time", string(NewId(Section_Type, "pg_catalog", "timetz"))), 2046) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz", string(NewId(Section_Type, "pg_catalog", "time"))), 2047) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "isfinite", string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2048) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_char", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2049) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "anyarray"))), 2050) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "anyarray"))), 2051) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_eq", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2052) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_ne", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2053) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_lt", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2054) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_le", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2055) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_ge", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2056) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_gt", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2057) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "age", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2058) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "age", string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2059) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timezone", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2069) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timezone", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "interval"))), 2070) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_pl_interval", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "interval"))), 2071) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_mi_interval", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "interval"))), 2072) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "substring", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2073) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "substring", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2074) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 2075) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8", string(NewId(Section_Type, "pg_catalog", "bit"))), 2076) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "current_setting", string(NewId(Section_Type, "pg_catalog", "text"))), 2077) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "set_config", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2078) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_table_is_visible", string(NewId(Section_Type, "pg_catalog", "oid"))), 2079) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_type_is_visible", string(NewId(Section_Type, "pg_catalog", "oid"))), 2080) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_function_is_visible", string(NewId(Section_Type, "pg_catalog", "oid"))), 2081) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_operator_is_visible", string(NewId(Section_Type, "pg_catalog", "oid"))), 2082) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_opclass_is_visible", string(NewId(Section_Type, "pg_catalog", "oid"))), 2083) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_show_all_settings"), 2084) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "substr", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 2085) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "substr", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "int4"))), 2086) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "replace", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2087) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "split_part", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2088) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_hex", string(NewId(Section_Type, "pg_catalog", "int4"))), 2089) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_hex", string(NewId(Section_Type, "pg_catalog", "int8"))), 2090) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_lower", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 2091) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_upper", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 2092) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_conversion_is_visible", string(NewId(Section_Type, "pg_catalog", "oid"))), 2093) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_backend_activity_start", string(NewId(Section_Type, "pg_catalog", "int4"))), 2094) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_terminate_backend", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 2096) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_functiondef", string(NewId(Section_Type, "pg_catalog", "oid"))), 2098) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "avg", string(NewId(Section_Type, "pg_catalog", "int8"))), 2100) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "avg", string(NewId(Section_Type, "pg_catalog", "int4"))), 2101) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "avg", string(NewId(Section_Type, "pg_catalog", "int2"))), 2102) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "avg", string(NewId(Section_Type, "pg_catalog", "numeric"))), 2103) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "avg", string(NewId(Section_Type, "pg_catalog", "float4"))), 2104) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "avg", string(NewId(Section_Type, "pg_catalog", "float8"))), 2105) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "avg", string(NewId(Section_Type, "pg_catalog", "interval"))), 2106) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sum", string(NewId(Section_Type, "pg_catalog", "int8"))), 2107) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sum", string(NewId(Section_Type, "pg_catalog", "int4"))), 2108) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sum", string(NewId(Section_Type, "pg_catalog", "int2"))), 2109) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sum", string(NewId(Section_Type, "pg_catalog", "float4"))), 2110) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sum", string(NewId(Section_Type, "pg_catalog", "float8"))), 2111) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sum", string(NewId(Section_Type, "pg_catalog", "money"))), 2112) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sum", string(NewId(Section_Type, "pg_catalog", "interval"))), 2113) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sum", string(NewId(Section_Type, "pg_catalog", "numeric"))), 2114) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "int8"))), 2115) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "int4"))), 2116) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "int2"))), 2117) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "oid"))), 2118) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "float4"))), 2119) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "float8"))), 2120) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_column_compression", string(NewId(Section_Type, "pg_catalog", "any"))), 2121) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "date"))), 2122) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "time"))), 2123) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "timetz"))), 2124) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "money"))), 2125) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2126) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2127) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "interval"))), 2128) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "text"))), 2129) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "numeric"))), 2130) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "int8"))), 2131) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "int4"))), 2132) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "int2"))), 2133) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "oid"))), 2134) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "float4"))), 2135) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "float8"))), 2136) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_force_next_flush"), 2137) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "date"))), 2138) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "time"))), 2139) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "timetz"))), 2140) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "money"))), 2141) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2142) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2143) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "interval"))), 2144) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "text"))), 2145) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "numeric"))), 2146) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "count", string(NewId(Section_Type, "pg_catalog", "any"))), 2147) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "variance", string(NewId(Section_Type, "pg_catalog", "int8"))), 2148) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "variance", string(NewId(Section_Type, "pg_catalog", "int4"))), 2149) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "variance", string(NewId(Section_Type, "pg_catalog", "int2"))), 2150) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "variance", string(NewId(Section_Type, "pg_catalog", "float4"))), 2151) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "variance", string(NewId(Section_Type, "pg_catalog", "float8"))), 2152) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "variance", string(NewId(Section_Type, "pg_catalog", "numeric"))), 2153) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev", string(NewId(Section_Type, "pg_catalog", "int8"))), 2154) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev", string(NewId(Section_Type, "pg_catalog", "int4"))), 2155) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev", string(NewId(Section_Type, "pg_catalog", "int2"))), 2156) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev", string(NewId(Section_Type, "pg_catalog", "float4"))), 2157) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev", string(NewId(Section_Type, "pg_catalog", "float8"))), 2158) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev", string(NewId(Section_Type, "pg_catalog", "numeric"))), 2159) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text_pattern_lt", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2160) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text_pattern_le", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2161) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_function_arguments", string(NewId(Section_Type, "pg_catalog", "oid"))), 2162) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text_pattern_ge", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2163) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text_pattern_gt", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2164) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_function_result", string(NewId(Section_Type, "pg_catalog", "oid"))), 2165) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bttext_pattern_cmp", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2166) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ceiling", string(NewId(Section_Type, "pg_catalog", "numeric"))), 2167) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_database_size", string(NewId(Section_Type, "pg_catalog", "name"))), 2168) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "power", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 2169) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "width_bucket", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 2170) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_cancel_backend", string(NewId(Section_Type, "pg_catalog", "int4"))), 2171) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_backup_start", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text"))), 2172) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpchar_pattern_lt", string(NewId(Section_Type, "pg_catalog", "bpchar")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 2174) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpchar_pattern_le", string(NewId(Section_Type, "pg_catalog", "bpchar")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 2175) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_length", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 2176) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpchar_pattern_ge", string(NewId(Section_Type, "pg_catalog", "bpchar")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 2177) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpchar_pattern_gt", string(NewId(Section_Type, "pg_catalog", "bpchar")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 2178) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_point_consistent", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2179) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btbpchar_pattern_cmp", string(NewId(Section_Type, "pg_catalog", "bpchar")), string(NewId(Section_Type, "pg_catalog", "bpchar"))), 2180) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_sequence_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2181) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_sequence_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2182) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_sequence_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2183) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_sequence_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2184) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_sequence_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2185) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_sequence_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2186) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btint48cmp", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 2188) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btint84cmp", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 2189) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btint24cmp", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 2190) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btint42cmp", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 2191) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btint28cmp", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 2192) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btint82cmp", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2"))), 2193) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btfloat48cmp", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 2194) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btfloat84cmp", string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 2195) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_client_addr"), 2196) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_client_port"), 2197) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_server_addr"), 2198) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_server_port"), 2199) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regprocedurein", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2212) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regprocedureout", string(NewId(Section_Type, "pg_catalog", "regprocedure"))), 2213) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regoperin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2214) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regoperout", string(NewId(Section_Type, "pg_catalog", "regoper"))), 2215) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regoperatorin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2216) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regoperatorout", string(NewId(Section_Type, "pg_catalog", "regoperator"))), 2217) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regclassin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2218) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regclassout", string(NewId(Section_Type, "pg_catalog", "regclass"))), 2219) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regtypein", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2220) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regtypeout", string(NewId(Section_Type, "pg_catalog", "regtype"))), 2221) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_clear_snapshot"), 2230) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_function_identity_arguments", string(NewId(Section_Type, "pg_catalog", "oid"))), 2232) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashtid", string(NewId(Section_Type, "pg_catalog", "tid"))), 2233) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashtidextended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "tid"))), 2234) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_and", string(NewId(Section_Type, "pg_catalog", "int2"))), 2236) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_or", string(NewId(Section_Type, "pg_catalog", "int2"))), 2237) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_and", string(NewId(Section_Type, "pg_catalog", "int4"))), 2238) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_or", string(NewId(Section_Type, "pg_catalog", "int4"))), 2239) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_and", string(NewId(Section_Type, "pg_catalog", "int8"))), 2240) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_or", string(NewId(Section_Type, "pg_catalog", "int8"))), 2241) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_and", string(NewId(Section_Type, "pg_catalog", "bit"))), 2242) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_or", string(NewId(Section_Type, "pg_catalog", "bit"))), 2243) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "bpchar"))), 2244) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "bpchar"))), 2245) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "fmgr_internal_validator", string(NewId(Section_Type, "pg_catalog", "oid"))), 2246) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "fmgr_c_validator", string(NewId(Section_Type, "pg_catalog", "oid"))), 2247) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "fmgr_sql_validator", string(NewId(Section_Type, "pg_catalog", "oid"))), 2248) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_database_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2250) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_database_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2251) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_database_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2252) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_database_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2253) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_database_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2254) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_database_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2255) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_function_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2256) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_function_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2257) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_function_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2258) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_function_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2259) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_function_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2260) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_function_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2261) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_language_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2262) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_language_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2263) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_language_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2264) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_language_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2265) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_language_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2266) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_language_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2267) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_schema_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2268) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_schema_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2269) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_schema_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2270) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_schema_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2271) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_schema_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2272) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_schema_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2273) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_reset"), 2274) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_backend_memory_contexts"), 2282) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_replace", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2284) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_replace", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2285) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_total_relation_size", string(NewId(Section_Type, "pg_catalog", "regclass"))), 2286) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_size_pretty", string(NewId(Section_Type, "pg_catalog", "int8"))), 2288) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_options_to_table", string(NewId(Section_Type, "pg_catalog", "_text"))), 2289) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "record_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 2290) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "record_out", string(NewId(Section_Type, "pg_catalog", "record"))), 2291) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cstring_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2292) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cstring_out", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2293) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "any_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2294) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "any_out", string(NewId(Section_Type, "pg_catalog", "any"))), 2295) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anyarray_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2296) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anyarray_out", string(NewId(Section_Type, "pg_catalog", "anyarray"))), 2297) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "void_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2298) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "void_out", string(NewId(Section_Type, "pg_catalog", "void"))), 2299) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "trigger_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2300) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "trigger_out", string(NewId(Section_Type, "pg_catalog", "trigger"))), 2301) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "language_handler_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2302) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "language_handler_out", string(NewId(Section_Type, "pg_catalog", "language_handler"))), 2303) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "internal_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2304) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "internal_out", string(NewId(Section_Type, "pg_catalog", "internal"))), 2305) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_slru"), 2306) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_reset_slru", string(NewId(Section_Type, "pg_catalog", "text"))), 2307) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ceil", string(NewId(Section_Type, "pg_catalog", "float8"))), 2308) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "floor", string(NewId(Section_Type, "pg_catalog", "float8"))), 2309) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sign", string(NewId(Section_Type, "pg_catalog", "float8"))), 2310) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "md5", string(NewId(Section_Type, "pg_catalog", "text"))), 2311) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anyelement_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2312) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anyelement_out", string(NewId(Section_Type, "pg_catalog", "anyelement"))), 2313) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "postgresql_fdw_validator", string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "_text"))), 2316) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_encoding_max_length", string(NewId(Section_Type, "pg_catalog", "int4"))), 2319) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ceiling", string(NewId(Section_Type, "pg_catalog", "float8"))), 2320) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "md5", string(NewId(Section_Type, "pg_catalog", "bytea"))), 2321) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_tablespace_size", string(NewId(Section_Type, "pg_catalog", "oid"))), 2322) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_tablespace_size", string(NewId(Section_Type, "pg_catalog", "name"))), 2323) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_database_size", string(NewId(Section_Type, "pg_catalog", "oid"))), 2324) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_relation_size", string(NewId(Section_Type, "pg_catalog", "regclass"))), 2325) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "unnest", string(NewId(Section_Type, "pg_catalog", "anyarray"))), 2331) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_relation_size", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "regclass"))), 2332) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_agg_transfn", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "anynonarray"))), 2333) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_agg_finalfn", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "anynonarray"))), 2334) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_agg", string(NewId(Section_Type, "pg_catalog", "anynonarray"))), 2335) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_lt_timestamp", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2338) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_le_timestamp", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2339) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_eq_timestamp", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2340) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_gt_timestamp", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2341) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_ge_timestamp", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2342) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_ne_timestamp", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2343) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_cmp_timestamp", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2344) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_lt_timestamptz", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2351) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_le_timestamptz", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2352) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_eq_timestamptz", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2353) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_gt_timestamptz", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2354) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_ge_timestamptz", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2355) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_ne_timestamptz", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2356) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_cmp_timestamptz", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2357) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_lt_date", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2364) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_le_date", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2365) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_eq_date", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2366) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_gt_date", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2367) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_ge_date", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2368) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_ne_date", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2369) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_cmp_date", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2370) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_lt_date", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2377) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_le_date", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2378) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_eq_date", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2379) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_gt_date", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2380) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_ge_date", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2381) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_ne_date", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2382) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_cmp_date", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2383) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_tablespace_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2390) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_tablespace_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2391) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_tablespace_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2392) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_tablespace_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2393) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_tablespace_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2394) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_tablespace_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2395) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "shell_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2398) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "shell_out", string(NewId(Section_Type, "pg_catalog", "void"))), 2399) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_recv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2400) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_send", string(NewId(Section_Type, "pg_catalog", "anyarray"))), 2401) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "record_recv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2402) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "record_send", string(NewId(Section_Type, "pg_catalog", "record"))), 2403) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2404) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2send", string(NewId(Section_Type, "pg_catalog", "int2"))), 2405) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2406) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4send", string(NewId(Section_Type, "pg_catalog", "int4"))), 2407) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2408) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8send", string(NewId(Section_Type, "pg_catalog", "int8"))), 2409) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2vectorrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2410) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2vectorsend", string(NewId(Section_Type, "pg_catalog", "int2vector"))), 2411) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bytearecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2412) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "byteasend", string(NewId(Section_Type, "pg_catalog", "bytea"))), 2413) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2414) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "textsend", string(NewId(Section_Type, "pg_catalog", "text"))), 2415) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "unknownrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2416) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "unknownsend", string(NewId(Section_Type, "pg_catalog", "unknown"))), 2417) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2418) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidsend", string(NewId(Section_Type, "pg_catalog", "oid"))), 2419) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidvectorrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2420) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "oidvectorsend", string(NewId(Section_Type, "pg_catalog", "oidvector"))), 2421) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "namerecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2422) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "namesend", string(NewId(Section_Type, "pg_catalog", "name"))), 2423) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2424) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4send", string(NewId(Section_Type, "pg_catalog", "float4"))), 2425) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2426) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8send", string(NewId(Section_Type, "pg_catalog", "float8"))), 2427) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2428) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "point_send", string(NewId(Section_Type, "pg_catalog", "point"))), 2429) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpcharrecv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2430) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpcharsend", string(NewId(Section_Type, "pg_catalog", "bpchar"))), 2431) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varcharrecv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2432) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varcharsend", string(NewId(Section_Type, "pg_catalog", "varchar"))), 2433) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "charrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2434) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "charsend", string(NewId(Section_Type, "pg_catalog", "char"))), 2435) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "boolrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2436) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "boolsend", string(NewId(Section_Type, "pg_catalog", "bool"))), 2437) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tidrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2438) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tidsend", string(NewId(Section_Type, "pg_catalog", "tid"))), 2439) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xidrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2440) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xidsend", string(NewId(Section_Type, "pg_catalog", "xid"))), 2441) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cidrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2442) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cidsend", string(NewId(Section_Type, "pg_catalog", "cid"))), 2443) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regprocrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2444) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regprocsend", string(NewId(Section_Type, "pg_catalog", "regproc"))), 2445) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regprocedurerecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2446) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regproceduresend", string(NewId(Section_Type, "pg_catalog", "regprocedure"))), 2447) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regoperrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2448) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regopersend", string(NewId(Section_Type, "pg_catalog", "regoper"))), 2449) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regoperatorrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2450) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regoperatorsend", string(NewId(Section_Type, "pg_catalog", "regoperator"))), 2451) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regclassrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2452) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regclasssend", string(NewId(Section_Type, "pg_catalog", "regclass"))), 2453) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regtyperecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2454) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regtypesend", string(NewId(Section_Type, "pg_catalog", "regtype"))), 2455) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_recv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2456) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_send", string(NewId(Section_Type, "pg_catalog", "bit"))), 2457) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varbit_recv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2458) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varbit_send", string(NewId(Section_Type, "pg_catalog", "varbit"))), 2459) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_recv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2460) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_send", string(NewId(Section_Type, "pg_catalog", "numeric"))), 2461) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sinh", string(NewId(Section_Type, "pg_catalog", "float8"))), 2462) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cosh", string(NewId(Section_Type, "pg_catalog", "float8"))), 2463) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tanh", string(NewId(Section_Type, "pg_catalog", "float8"))), 2464) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "asinh", string(NewId(Section_Type, "pg_catalog", "float8"))), 2465) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "acosh", string(NewId(Section_Type, "pg_catalog", "float8"))), 2466) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "atanh", string(NewId(Section_Type, "pg_catalog", "float8"))), 2467) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2468) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_send", string(NewId(Section_Type, "pg_catalog", "date"))), 2469) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_recv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2470) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_send", string(NewId(Section_Type, "pg_catalog", "time"))), 2471) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_recv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2472) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_send", string(NewId(Section_Type, "pg_catalog", "timetz"))), 2473) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_recv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2474) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_send", string(NewId(Section_Type, "pg_catalog", "timestamp"))), 2475) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_recv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2476) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_send", string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2477) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_recv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2478) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_send", string(NewId(Section_Type, "pg_catalog", "interval"))), 2479) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2480) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lseg_send", string(NewId(Section_Type, "pg_catalog", "lseg"))), 2481) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2482) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "path_send", string(NewId(Section_Type, "pg_catalog", "path"))), 2483) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2484) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_send", string(NewId(Section_Type, "pg_catalog", "box"))), 2485) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2486) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_send", string(NewId(Section_Type, "pg_catalog", "polygon"))), 2487) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "line_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2488) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "line_send", string(NewId(Section_Type, "pg_catalog", "line"))), 2489) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2490) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_send", string(NewId(Section_Type, "pg_catalog", "circle"))), 2491) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2492) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_send", string(NewId(Section_Type, "pg_catalog", "money"))), 2493) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2494) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr_send", string(NewId(Section_Type, "pg_catalog", "macaddr"))), 2495) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2496) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_send", string(NewId(Section_Type, "pg_catalog", "inet"))), 2497) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cidr_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2498) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cidr_send", string(NewId(Section_Type, "pg_catalog", "cidr"))), 2499) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cstring_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2500) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cstring_send", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2501) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anyarray_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2502) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anyarray_send", string(NewId(Section_Type, "pg_catalog", "anyarray"))), 2503) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_ruledef", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2504) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_viewdef", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text"))), 2505) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_viewdef", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2506) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_indexdef", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2507) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_constraintdef", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2508) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_expr", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "pg_node_tree"))), 2509) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_prepared_statement"), 2510) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_cursor"), 2511) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_var_pop", string(NewId(Section_Type, "pg_catalog", "_float8"))), 2512) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_stddev_pop", string(NewId(Section_Type, "pg_catalog", "_float8"))), 2513) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_var_pop", string(NewId(Section_Type, "pg_catalog", "internal"))), 2514) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "booland_statefunc", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool"))), 2515) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "boolor_statefunc", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool"))), 2516) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bool_and", string(NewId(Section_Type, "pg_catalog", "bool"))), 2517) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bool_or", string(NewId(Section_Type, "pg_catalog", "bool"))), 2518) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "every", string(NewId(Section_Type, "pg_catalog", "bool"))), 2519) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_lt_timestamptz", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2520) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_le_timestamptz", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2521) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_eq_timestamptz", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2522) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_gt_timestamptz", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2523) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_ge_timestamptz", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2524) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_ne_timestamptz", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2525) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_cmp_timestamptz", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2526) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_lt_timestamp", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2527) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_le_timestamp", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2528) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_eq_timestamp", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2529) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_gt_timestamp", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2530) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_ge_timestamp", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2531) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_ne_timestamp", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2532) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptz_cmp_timestamp", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 2533) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_pl_date", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "interval"))), 2546) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_pl_timetz", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 2547) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_pl_timestamp", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "interval"))), 2548) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_pl_timestamptz", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "interval"))), 2549) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "integer_pl_date", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "date"))), 2550) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_tablespace_databases", string(NewId(Section_Type, "pg_catalog", "oid"))), 2556) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bool", string(NewId(Section_Type, "pg_catalog", "int4"))), 2557) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4", string(NewId(Section_Type, "pg_catalog", "bool"))), 2558) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lastval"), 2559) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_postmaster_start_time"), 2560) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_blocking_pids", string(NewId(Section_Type, "pg_catalog", "int4"))), 2561) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_below", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 2562) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_overbelow", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 2563) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_overabove", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 2564) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box_above", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 2565) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_below", string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 2566) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_overbelow", string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 2567) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_overabove", string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 2568) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "poly_above", string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 2569) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_box_consistent", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2578) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 2580) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_box_penalty", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2581) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_box_picksplit", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2582) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_box_union", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2583) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_box_same", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2584) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_poly_consistent", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2585) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_poly_compress", string(NewId(Section_Type, "pg_catalog", "internal"))), 2586) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_overbelow", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 2587) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "circle_overabove", string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "circle"))), 2588) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_circle_consistent", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2591) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_circle_compress", string(NewId(Section_Type, "pg_catalog", "internal"))), 2592) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_stddev_pop", string(NewId(Section_Type, "pg_catalog", "internal"))), 2596) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "domain_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 2597) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "domain_recv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2598) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_timezone_abbrevs"), 2599) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xmlexists", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "xml"))), 2614) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_reload_conf"), 2621) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_rotate_logfile"), 2622) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_file", string(NewId(Section_Type, "pg_catalog", "text"))), 2623) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_read_file", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "text"))), 2624) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ls_dir", string(NewId(Section_Type, "pg_catalog", "text"))), 2625) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_sleep", string(NewId(Section_Type, "pg_catalog", "float8"))), 2626) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inetnot", string(NewId(Section_Type, "pg_catalog", "inet"))), 2627) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inetand", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 2628) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inetor", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 2629) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inetpl", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "inet"))), 2630) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8pl_inet", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "inet"))), 2631) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inetmi_int8", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "inet"))), 2632) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inetmi", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 2633) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "var_samp", string(NewId(Section_Type, "pg_catalog", "int8"))), 2641) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "var_samp", string(NewId(Section_Type, "pg_catalog", "int4"))), 2642) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "var_samp", string(NewId(Section_Type, "pg_catalog", "int2"))), 2643) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "var_samp", string(NewId(Section_Type, "pg_catalog", "float4"))), 2644) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "var_samp", string(NewId(Section_Type, "pg_catalog", "float8"))), 2645) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "var_samp", string(NewId(Section_Type, "pg_catalog", "numeric"))), 2646) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "transaction_timestamp"), 2647) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "statement_timestamp"), 2648) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "clock_timestamp"), 2649) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_cmp_prefix", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2700) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_has_role", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 2705) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_has_role", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2706) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_has_role", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2707) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_has_role", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2708) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_has_role", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 2709) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_has_role", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2710) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "justify_interval", string(NewId(Section_Type, "pg_catalog", "interval"))), 2711) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev_samp", string(NewId(Section_Type, "pg_catalog", "int8"))), 2712) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev_samp", string(NewId(Section_Type, "pg_catalog", "int4"))), 2713) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev_samp", string(NewId(Section_Type, "pg_catalog", "int2"))), 2714) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev_samp", string(NewId(Section_Type, "pg_catalog", "float4"))), 2715) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev_samp", string(NewId(Section_Type, "pg_catalog", "float8"))), 2716) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev_samp", string(NewId(Section_Type, "pg_catalog", "numeric"))), 2717) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "var_pop", string(NewId(Section_Type, "pg_catalog", "int8"))), 2718) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "var_pop", string(NewId(Section_Type, "pg_catalog", "int4"))), 2719) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "var_pop", string(NewId(Section_Type, "pg_catalog", "int2"))), 2720) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "var_pop", string(NewId(Section_Type, "pg_catalog", "float4"))), 2721) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "var_pop", string(NewId(Section_Type, "pg_catalog", "float8"))), 2722) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "var_pop", string(NewId(Section_Type, "pg_catalog", "numeric"))), 2723) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev_pop", string(NewId(Section_Type, "pg_catalog", "int8"))), 2724) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev_pop", string(NewId(Section_Type, "pg_catalog", "int4"))), 2725) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev_pop", string(NewId(Section_Type, "pg_catalog", "int2"))), 2726) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev_pop", string(NewId(Section_Type, "pg_catalog", "float4"))), 2727) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev_pop", string(NewId(Section_Type, "pg_catalog", "float8"))), 2728) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "stddev_pop", string(NewId(Section_Type, "pg_catalog", "numeric"))), 2729) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_triggerdef", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "oid"))), 2730) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "asind", string(NewId(Section_Type, "pg_catalog", "float8"))), 2731) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "acosd", string(NewId(Section_Type, "pg_catalog", "float8"))), 2732) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "atand", string(NewId(Section_Type, "pg_catalog", "float8"))), 2733) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "atan2d", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 2734) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sind", string(NewId(Section_Type, "pg_catalog", "float8"))), 2735) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cosd", string(NewId(Section_Type, "pg_catalog", "float8"))), 2736) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tand", string(NewId(Section_Type, "pg_catalog", "float8"))), 2737) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cotd", string(NewId(Section_Type, "pg_catalog", "float8"))), 2738) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_backup_stop", string(NewId(Section_Type, "pg_catalog", "bool"))), 2739) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_avg_serialize", string(NewId(Section_Type, "pg_catalog", "internal"))), 2740) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_avg_deserialize", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2741) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ginarrayextract", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2743) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ginarrayconsistent", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2744) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8_avg_accum", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2746) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "arrayoverlap", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 2747) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "arraycontains", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 2748) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "arraycontained", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 2749) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_tuples_returned", string(NewId(Section_Type, "pg_catalog", "oid"))), 2758) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_tuples_fetched", string(NewId(Section_Type, "pg_catalog", "oid"))), 2759) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_tuples_inserted", string(NewId(Section_Type, "pg_catalog", "oid"))), 2760) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_tuples_updated", string(NewId(Section_Type, "pg_catalog", "oid"))), 2761) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_tuples_deleted", string(NewId(Section_Type, "pg_catalog", "oid"))), 2762) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_matches", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2763) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_matches", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2764) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_split_to_table", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2765) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_split_to_table", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2766) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_split_to_array", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2767) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_split_to_array", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2768) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_bgwriter_timed_checkpoints"), 2769) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_bgwriter_requested_checkpoints"), 2770) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_bgwriter_buf_written_checkpoints"), 2771) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_bgwriter_buf_written_clean"), 2772) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_bgwriter_maxwritten_clean"), 2773) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ginqueryarrayextract", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2774) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_buf_written_backend"), 2775) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anynonarray_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2777) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anynonarray_out", string(NewId(Section_Type, "pg_catalog", "anynonarray"))), 2778) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_last_vacuum_time", string(NewId(Section_Type, "pg_catalog", "oid"))), 2781) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_last_autovacuum_time", string(NewId(Section_Type, "pg_catalog", "oid"))), 2782) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_last_analyze_time", string(NewId(Section_Type, "pg_catalog", "oid"))), 2783) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_last_autoanalyze_time", string(NewId(Section_Type, "pg_catalog", "oid"))), 2784) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8_avg_combine", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2785) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8_avg_serialize", string(NewId(Section_Type, "pg_catalog", "internal"))), 2786) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8_avg_deserialize", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2787) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_backend_wait_event_type", string(NewId(Section_Type, "pg_catalog", "int4"))), 2788) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tidgt", string(NewId(Section_Type, "pg_catalog", "tid")), string(NewId(Section_Type, "pg_catalog", "tid"))), 2790) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tidlt", string(NewId(Section_Type, "pg_catalog", "tid")), string(NewId(Section_Type, "pg_catalog", "tid"))), 2791) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tidge", string(NewId(Section_Type, "pg_catalog", "tid")), string(NewId(Section_Type, "pg_catalog", "tid"))), 2792) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tidle", string(NewId(Section_Type, "pg_catalog", "tid")), string(NewId(Section_Type, "pg_catalog", "tid"))), 2793) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bttidcmp", string(NewId(Section_Type, "pg_catalog", "tid")), string(NewId(Section_Type, "pg_catalog", "tid"))), 2794) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tidlarger", string(NewId(Section_Type, "pg_catalog", "tid")), string(NewId(Section_Type, "pg_catalog", "tid"))), 2795) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tidsmaller", string(NewId(Section_Type, "pg_catalog", "tid")), string(NewId(Section_Type, "pg_catalog", "tid"))), 2796) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "tid"))), 2797) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "tid"))), 2798) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "count"), 2803) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8inc_any", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "any"))), 2804) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8inc_float8_float8", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 2805) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_regr_accum", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "_float8"))), 2806) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_regr_sxx", string(NewId(Section_Type, "pg_catalog", "_float8"))), 2807) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_regr_syy", string(NewId(Section_Type, "pg_catalog", "_float8"))), 2808) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_regr_sxy", string(NewId(Section_Type, "pg_catalog", "_float8"))), 2809) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_regr_avgx", string(NewId(Section_Type, "pg_catalog", "_float8"))), 2810) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_regr_avgy", string(NewId(Section_Type, "pg_catalog", "_float8"))), 2811) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_regr_r2", string(NewId(Section_Type, "pg_catalog", "_float8"))), 2812) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_regr_slope", string(NewId(Section_Type, "pg_catalog", "_float8"))), 2813) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_regr_intercept", string(NewId(Section_Type, "pg_catalog", "_float8"))), 2814) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_covar_pop", string(NewId(Section_Type, "pg_catalog", "_float8"))), 2815) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_covar_samp", string(NewId(Section_Type, "pg_catalog", "_float8"))), 2816) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_corr", string(NewId(Section_Type, "pg_catalog", "_float8"))), 2817) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regr_count", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 2818) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regr_sxx", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 2819) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regr_syy", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 2820) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regr_sxy", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 2821) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regr_avgx", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 2822) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regr_avgy", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 2823) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regr_r2", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 2824) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regr_slope", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 2825) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regr_intercept", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 2826) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "covar_pop", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 2827) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "covar_samp", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 2828) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "corr", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 2829) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_blk_read_time", string(NewId(Section_Type, "pg_catalog", "oid"))), 2844) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_blk_write_time", string(NewId(Section_Type, "pg_catalog", "oid"))), 2845) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_switch_wal"), 2848) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_current_wal_lsn"), 2849) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_walfile_name_offset", string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 2850) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_walfile_name", string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 2851) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_current_wal_insert_lsn"), 2852) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_backend_wait_event", string(NewId(Section_Type, "pg_catalog", "int4"))), 2853) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_my_temp_schema"), 2854) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_is_other_temp_schema", string(NewId(Section_Type, "pg_catalog", "oid"))), 2855) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_timezone_names"), 2856) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_backend_xact_start", string(NewId(Section_Type, "pg_catalog", "int4"))), 2857) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_avg_accum", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "internal"))), 2858) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_buf_alloc"), 2859) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_live_tuples", string(NewId(Section_Type, "pg_catalog", "oid"))), 2878) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_dead_tuples", string(NewId(Section_Type, "pg_catalog", "oid"))), 2879) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_advisory_lock", string(NewId(Section_Type, "pg_catalog", "int8"))), 2880) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_advisory_lock_shared", string(NewId(Section_Type, "pg_catalog", "int8"))), 2881) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_try_advisory_lock", string(NewId(Section_Type, "pg_catalog", "int8"))), 2882) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_try_advisory_lock_shared", string(NewId(Section_Type, "pg_catalog", "int8"))), 2883) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_advisory_unlock", string(NewId(Section_Type, "pg_catalog", "int8"))), 2884) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_advisory_unlock_shared", string(NewId(Section_Type, "pg_catalog", "int8"))), 2885) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_advisory_lock", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 2886) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_advisory_lock_shared", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 2887) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_try_advisory_lock", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 2888) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_try_advisory_lock_shared", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 2889) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_advisory_unlock", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 2890) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_advisory_unlock_shared", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 2891) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_advisory_unlock_all"), 2892) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xml_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2893) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xml_out", string(NewId(Section_Type, "pg_catalog", "xml"))), 2894) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xmlcomment", string(NewId(Section_Type, "pg_catalog", "text"))), 2895) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xml", string(NewId(Section_Type, "pg_catalog", "text"))), 2896) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xmlvalidate", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "xml"))), 2897) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xml_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2898) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xml_send", string(NewId(Section_Type, "pg_catalog", "xml"))), 2899) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xmlconcat2", string(NewId(Section_Type, "pg_catalog", "xml")), string(NewId(Section_Type, "pg_catalog", "xml"))), 2900) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xmlagg", string(NewId(Section_Type, "pg_catalog", "xml"))), 2901) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varbittypmodin", string(NewId(Section_Type, "pg_catalog", "_cstring"))), 2902) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "intervaltypmodin", string(NewId(Section_Type, "pg_catalog", "_cstring"))), 2903) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "intervaltypmodout", string(NewId(Section_Type, "pg_catalog", "int4"))), 2904) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptypmodin", string(NewId(Section_Type, "pg_catalog", "_cstring"))), 2905) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptypmodout", string(NewId(Section_Type, "pg_catalog", "int4"))), 2906) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptztypmodin", string(NewId(Section_Type, "pg_catalog", "_cstring"))), 2907) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamptztypmodout", string(NewId(Section_Type, "pg_catalog", "int4"))), 2908) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetypmodin", string(NewId(Section_Type, "pg_catalog", "_cstring"))), 2909) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetypmodout", string(NewId(Section_Type, "pg_catalog", "int4"))), 2910) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetztypmodin", string(NewId(Section_Type, "pg_catalog", "_cstring"))), 2911) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetztypmodout", string(NewId(Section_Type, "pg_catalog", "int4"))), 2912) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpchartypmodin", string(NewId(Section_Type, "pg_catalog", "_cstring"))), 2913) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpchartypmodout", string(NewId(Section_Type, "pg_catalog", "int4"))), 2914) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varchartypmodin", string(NewId(Section_Type, "pg_catalog", "_cstring"))), 2915) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varchartypmodout", string(NewId(Section_Type, "pg_catalog", "int4"))), 2916) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numerictypmodin", string(NewId(Section_Type, "pg_catalog", "_cstring"))), 2917) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numerictypmodout", string(NewId(Section_Type, "pg_catalog", "int4"))), 2918) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bittypmodin", string(NewId(Section_Type, "pg_catalog", "_cstring"))), 2919) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bittypmodout", string(NewId(Section_Type, "pg_catalog", "int4"))), 2920) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varbittypmodout", string(NewId(Section_Type, "pg_catalog", "int4"))), 2921) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text", string(NewId(Section_Type, "pg_catalog", "xml"))), 2922) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "table_to_xml", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "regclass"))), 2923) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "query_to_xml", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2924) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cursor_to_xml", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "refcursor"))), 2925) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "table_to_xmlschema", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "regclass"))), 2926) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "query_to_xmlschema", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2927) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cursor_to_xmlschema", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "refcursor"))), 2928) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "table_to_xml_and_xmlschema", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "regclass"))), 2929) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "query_to_xml_and_xmlschema", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 2930) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xpath", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "xml")), string(NewId(Section_Type, "pg_catalog", "_text"))), 2931) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xpath", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "xml"))), 2932) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "schema_to_xml", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 2933) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "schema_to_xmlschema", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 2934) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "schema_to_xml_and_xmlschema", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text"))), 2935) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "database_to_xml", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text"))), 2936) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "database_to_xmlschema", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text"))), 2937) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "database_to_xml_and_xmlschema", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text"))), 2938) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "txid_snapshot_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2939) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "txid_snapshot_out", string(NewId(Section_Type, "pg_catalog", "txid_snapshot"))), 2940) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "txid_snapshot_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2941) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "txid_snapshot_send", string(NewId(Section_Type, "pg_catalog", "txid_snapshot"))), 2942) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "txid_current"), 2943) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "txid_current_snapshot"), 2944) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "txid_snapshot_xmin", string(NewId(Section_Type, "pg_catalog", "txid_snapshot"))), 2945) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "txid_snapshot_xmax", string(NewId(Section_Type, "pg_catalog", "txid_snapshot"))), 2946) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "txid_snapshot_xip", string(NewId(Section_Type, "pg_catalog", "txid_snapshot"))), 2947) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "txid_visible_in_snapshot", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "txid_snapshot"))), 2948) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "uuid_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 2952) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "uuid_out", string(NewId(Section_Type, "pg_catalog", "uuid"))), 2953) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "uuid_lt", string(NewId(Section_Type, "pg_catalog", "uuid")), string(NewId(Section_Type, "pg_catalog", "uuid"))), 2954) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "uuid_le", string(NewId(Section_Type, "pg_catalog", "uuid")), string(NewId(Section_Type, "pg_catalog", "uuid"))), 2955) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "uuid_eq", string(NewId(Section_Type, "pg_catalog", "uuid")), string(NewId(Section_Type, "pg_catalog", "uuid"))), 2956) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "uuid_ge", string(NewId(Section_Type, "pg_catalog", "uuid")), string(NewId(Section_Type, "pg_catalog", "uuid"))), 2957) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "uuid_gt", string(NewId(Section_Type, "pg_catalog", "uuid")), string(NewId(Section_Type, "pg_catalog", "uuid"))), 2958) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "uuid_ne", string(NewId(Section_Type, "pg_catalog", "uuid")), string(NewId(Section_Type, "pg_catalog", "uuid"))), 2959) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "uuid_cmp", string(NewId(Section_Type, "pg_catalog", "uuid")), string(NewId(Section_Type, "pg_catalog", "uuid"))), 2960) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "uuid_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 2961) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "uuid_send", string(NewId(Section_Type, "pg_catalog", "uuid"))), 2962) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "uuid_hash", string(NewId(Section_Type, "pg_catalog", "uuid"))), 2963) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text", string(NewId(Section_Type, "pg_catalog", "bool"))), 2971) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_function_calls", string(NewId(Section_Type, "pg_catalog", "oid"))), 2978) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_function_total_time", string(NewId(Section_Type, "pg_catalog", "oid"))), 2979) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_function_self_time", string(NewId(Section_Type, "pg_catalog", "oid"))), 2980) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "record_eq", string(NewId(Section_Type, "pg_catalog", "record")), string(NewId(Section_Type, "pg_catalog", "record"))), 2981) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "record_ne", string(NewId(Section_Type, "pg_catalog", "record")), string(NewId(Section_Type, "pg_catalog", "record"))), 2982) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "record_lt", string(NewId(Section_Type, "pg_catalog", "record")), string(NewId(Section_Type, "pg_catalog", "record"))), 2983) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "record_gt", string(NewId(Section_Type, "pg_catalog", "record")), string(NewId(Section_Type, "pg_catalog", "record"))), 2984) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "record_le", string(NewId(Section_Type, "pg_catalog", "record")), string(NewId(Section_Type, "pg_catalog", "record"))), 2985) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "record_ge", string(NewId(Section_Type, "pg_catalog", "record")), string(NewId(Section_Type, "pg_catalog", "record"))), 2986) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btrecordcmp", string(NewId(Section_Type, "pg_catalog", "record")), string(NewId(Section_Type, "pg_catalog", "record"))), 2987) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_table_size", string(NewId(Section_Type, "pg_catalog", "regclass"))), 2997) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_indexes_size", string(NewId(Section_Type, "pg_catalog", "regclass"))), 2998) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_relation_filenode", string(NewId(Section_Type, "pg_catalog", "regclass"))), 2999) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_foreign_data_wrapper_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3000) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_foreign_data_wrapper_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3001) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_foreign_data_wrapper_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3002) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_foreign_data_wrapper_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3003) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_foreign_data_wrapper_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3004) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_foreign_data_wrapper_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3005) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_server_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3006) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_server_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3007) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_server_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3008) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_server_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3009) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_server_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3010) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_server_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3011) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_column_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3012) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_column_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3013) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_column_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3014) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_column_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3015) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_column_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3016) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_column_privilege", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3017) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_column_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3018) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_column_privilege", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3019) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_column_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3020) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_column_privilege", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3021) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_column_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3022) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_column_privilege", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3023) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_any_column_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3024) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_any_column_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3025) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_any_column_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3026) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_any_column_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3027) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_any_column_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3028) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_any_column_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3029) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlay", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "bit")), string(NewId(Section_Type, "pg_catalog", "bit"))), 3030) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "overlay", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "bit")), string(NewId(Section_Type, "pg_catalog", "bit"))), 3031) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "get_bit", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "bit"))), 3032) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "set_bit", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "bit"))), 3033) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_relation_filepath", string(NewId(Section_Type, "pg_catalog", "regclass"))), 3034) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_listening_channels"), 3035) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_notify", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3036) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_xact_numscans", string(NewId(Section_Type, "pg_catalog", "oid"))), 3037) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_xact_tuples_returned", string(NewId(Section_Type, "pg_catalog", "oid"))), 3038) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_xact_tuples_fetched", string(NewId(Section_Type, "pg_catalog", "oid"))), 3039) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_xact_tuples_inserted", string(NewId(Section_Type, "pg_catalog", "oid"))), 3040) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_xact_tuples_updated", string(NewId(Section_Type, "pg_catalog", "oid"))), 3041) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_xact_tuples_deleted", string(NewId(Section_Type, "pg_catalog", "oid"))), 3042) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_xact_tuples_hot_updated", string(NewId(Section_Type, "pg_catalog", "oid"))), 3043) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_xact_blocks_fetched", string(NewId(Section_Type, "pg_catalog", "oid"))), 3044) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_xact_blocks_hit", string(NewId(Section_Type, "pg_catalog", "oid"))), 3045) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_xact_function_calls", string(NewId(Section_Type, "pg_catalog", "oid"))), 3046) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_xact_function_total_time", string(NewId(Section_Type, "pg_catalog", "oid"))), 3047) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_xact_function_self_time", string(NewId(Section_Type, "pg_catalog", "oid"))), 3048) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xpath_exists", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "xml")), string(NewId(Section_Type, "pg_catalog", "_text"))), 3049) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xpath_exists", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "xml"))), 3050) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xml_is_well_formed", string(NewId(Section_Type, "pg_catalog", "text"))), 3051) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xml_is_well_formed_document", string(NewId(Section_Type, "pg_catalog", "text"))), 3052) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xml_is_well_formed_content", string(NewId(Section_Type, "pg_catalog", "text"))), 3053) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_vacuum_count", string(NewId(Section_Type, "pg_catalog", "oid"))), 3054) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_autovacuum_count", string(NewId(Section_Type, "pg_catalog", "oid"))), 3055) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_analyze_count", string(NewId(Section_Type, "pg_catalog", "oid"))), 3056) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_autoanalyze_count", string(NewId(Section_Type, "pg_catalog", "oid"))), 3057) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "concat", string(NewId(Section_Type, "pg_catalog", "any"))), 3058) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "concat_ws", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "any"))), 3059) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "left", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text"))), 3060) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "right", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text"))), 3061) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "reverse", string(NewId(Section_Type, "pg_catalog", "text"))), 3062) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_buf_fsync_backend"), 3063) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_point_distance", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3064) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_conflict_tablespace", string(NewId(Section_Type, "pg_catalog", "oid"))), 3065) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_conflict_lock", string(NewId(Section_Type, "pg_catalog", "oid"))), 3066) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_conflict_snapshot", string(NewId(Section_Type, "pg_catalog", "oid"))), 3067) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_conflict_bufferpin", string(NewId(Section_Type, "pg_catalog", "oid"))), 3068) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_conflict_startup_deadlock", string(NewId(Section_Type, "pg_catalog", "oid"))), 3069) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_conflict_all", string(NewId(Section_Type, "pg_catalog", "oid"))), 3070) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_wal_replay_pause"), 3071) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_wal_replay_resume"), 3072) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_is_wal_replay_paused"), 3073) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_stat_reset_time", string(NewId(Section_Type, "pg_catalog", "oid"))), 3074) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_bgwriter_stat_reset_time"), 3075) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ginarrayextract", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3076) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_extract_tsvector", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3077) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_sequence_parameters", string(NewId(Section_Type, "pg_catalog", "oid"))), 3078) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_available_extensions"), 3082) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_available_extension_versions"), 3083) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_extension_update_paths", string(NewId(Section_Type, "pg_catalog", "name"))), 3084) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_extension_config_dump", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "regclass"))), 3086) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_extract_tsquery", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3087) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_tsquery_consistent", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3088) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_advisory_xact_lock", string(NewId(Section_Type, "pg_catalog", "int8"))), 3089) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_advisory_xact_lock_shared", string(NewId(Section_Type, "pg_catalog", "int8"))), 3090) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_try_advisory_xact_lock", string(NewId(Section_Type, "pg_catalog", "int8"))), 3091) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_try_advisory_xact_lock_shared", string(NewId(Section_Type, "pg_catalog", "int8"))), 3092) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_advisory_xact_lock", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 3093) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_advisory_xact_lock_shared", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 3094) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_try_advisory_xact_lock", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 3095) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_try_advisory_xact_lock_shared", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 3096) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varchar_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 3097) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_create_restore_point", string(NewId(Section_Type, "pg_catalog", "text"))), 3098) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_wal_senders"), 3099) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "row_number"), 3100) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "rank"), 3101) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dense_rank"), 3102) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "percent_rank"), 3103) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cume_dist"), 3104) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ntile", string(NewId(Section_Type, "pg_catalog", "int4"))), 3105) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lag", string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3106) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lag", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3107) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lag", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "anycompatible")), string(NewId(Section_Type, "pg_catalog", "anycompatible"))), 3108) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lead", string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3109) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lead", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3110) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lead", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "anycompatible")), string(NewId(Section_Type, "pg_catalog", "anycompatible"))), 3111) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "first_value", string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3112) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "last_value", string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3113) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nth_value", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3114) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "fdw_handler_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 3116) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "fdw_handler_out", string(NewId(Section_Type, "pg_catalog", "fdw_handler"))), 3117) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "void_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 3120) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "void_send", string(NewId(Section_Type, "pg_catalog", "void"))), 3121) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btint2sortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3129) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btint4sortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3130) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btint8sortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3131) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btfloat4sortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3132) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btfloat8sortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3133) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btoidsortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3134) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btnamesortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3135) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_sortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3136) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_sortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3137) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_type_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3138) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_type_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3139) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_type_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3140) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_type_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3141) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_type_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3142) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_type_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3143) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr_not", string(NewId(Section_Type, "pg_catalog", "macaddr"))), 3144) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr_and", string(NewId(Section_Type, "pg_catalog", "macaddr")), string(NewId(Section_Type, "pg_catalog", "macaddr"))), 3145) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr_or", string(NewId(Section_Type, "pg_catalog", "macaddr")), string(NewId(Section_Type, "pg_catalog", "macaddr"))), 3146) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_temp_files", string(NewId(Section_Type, "pg_catalog", "oid"))), 3150) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_temp_bytes", string(NewId(Section_Type, "pg_catalog", "oid"))), 3151) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_deadlocks", string(NewId(Section_Type, "pg_catalog", "oid"))), 3152) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_to_json", string(NewId(Section_Type, "pg_catalog", "anyarray"))), 3153) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_to_json", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 3154) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "row_to_json", string(NewId(Section_Type, "pg_catalog", "record"))), 3155) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "row_to_json", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "record"))), 3156) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 3157) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "varbit_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 3158) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_viewdef", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3159) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_checkpoint_write_time"), 3160) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_checkpoint_sync_time"), 3161) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_collation_for", string(NewId(Section_Type, "pg_catalog", "any"))), 3162) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_trigger_depth"), 3163) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_wal_lsn_diff", string(NewId(Section_Type, "pg_catalog", "pg_lsn")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3165) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_size_pretty", string(NewId(Section_Type, "pg_catalog", "numeric"))), 3166) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_remove", string(NewId(Section_Type, "pg_catalog", "anycompatible")), string(NewId(Section_Type, "pg_catalog", "anycompatiblearray"))), 3167) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_replace", string(NewId(Section_Type, "pg_catalog", "anycompatible")), string(NewId(Section_Type, "pg_catalog", "anycompatible")), string(NewId(Section_Type, "pg_catalog", "anycompatiblearray"))), 3168) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "rangesel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3169) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_lseek64", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 3170) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_tell64", string(NewId(Section_Type, "pg_catalog", "int4"))), 3171) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_truncate64", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4"))), 3172) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_agg_transfn", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3173) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_agg_finalfn", string(NewId(Section_Type, "pg_catalog", "internal"))), 3174) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_agg", string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3175) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_json", string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3176) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_mod_since_analyze", string(NewId(Section_Type, "pg_catalog", "oid"))), 3177) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_sum", string(NewId(Section_Type, "pg_catalog", "internal"))), 3178) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cardinality", string(NewId(Section_Type, "pg_catalog", "anyarray"))), 3179) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_object_agg_transfn", string(NewId(Section_Type, "pg_catalog", "any")), string(NewId(Section_Type, "pg_catalog", "any")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3180) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "record_image_eq", string(NewId(Section_Type, "pg_catalog", "record")), string(NewId(Section_Type, "pg_catalog", "record"))), 3181) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "record_image_ne", string(NewId(Section_Type, "pg_catalog", "record")), string(NewId(Section_Type, "pg_catalog", "record"))), 3182) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "record_image_lt", string(NewId(Section_Type, "pg_catalog", "record")), string(NewId(Section_Type, "pg_catalog", "record"))), 3183) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "record_image_gt", string(NewId(Section_Type, "pg_catalog", "record")), string(NewId(Section_Type, "pg_catalog", "record"))), 3184) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "record_image_le", string(NewId(Section_Type, "pg_catalog", "record")), string(NewId(Section_Type, "pg_catalog", "record"))), 3185) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "record_image_ge", string(NewId(Section_Type, "pg_catalog", "record")), string(NewId(Section_Type, "pg_catalog", "record"))), 3186) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btrecordimagecmp", string(NewId(Section_Type, "pg_catalog", "record")), string(NewId(Section_Type, "pg_catalog", "record"))), 3187) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_archiver"), 3195) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_object_agg_finalfn", string(NewId(Section_Type, "pg_catalog", "internal"))), 3196) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_object_agg", string(NewId(Section_Type, "pg_catalog", "any")), string(NewId(Section_Type, "pg_catalog", "any"))), 3197) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_build_array", string(NewId(Section_Type, "pg_catalog", "any"))), 3198) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_build_array"), 3199) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_build_object", string(NewId(Section_Type, "pg_catalog", "any"))), 3200) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_build_object"), 3201) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_object", string(NewId(Section_Type, "pg_catalog", "_text"))), 3202) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_object", string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "_text"))), 3203) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_to_record", string(NewId(Section_Type, "pg_catalog", "json"))), 3204) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_to_recordset", string(NewId(Section_Type, "pg_catalog", "json"))), 3205) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_array_length", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3207) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_each", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3208) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_populate_record", string(NewId(Section_Type, "pg_catalog", "anyelement")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3209) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_typeof", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3210) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_object_field_text", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3214) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_array_element", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3215) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_array_element_text", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3216) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_extract_path", string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3217) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "width_bucket", string(NewId(Section_Type, "pg_catalog", "anycompatible")), string(NewId(Section_Type, "pg_catalog", "anycompatiblearray"))), 3218) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_array_elements", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3219) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 3229) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_out", string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3230) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_lt", string(NewId(Section_Type, "pg_catalog", "pg_lsn")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3231) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_le", string(NewId(Section_Type, "pg_catalog", "pg_lsn")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3232) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_eq", string(NewId(Section_Type, "pg_catalog", "pg_lsn")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3233) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_ge", string(NewId(Section_Type, "pg_catalog", "pg_lsn")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3234) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_gt", string(NewId(Section_Type, "pg_catalog", "pg_lsn")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3235) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_ne", string(NewId(Section_Type, "pg_catalog", "pg_lsn")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3236) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_mi", string(NewId(Section_Type, "pg_catalog", "pg_lsn")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3237) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 3238) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_send", string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3239) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_cmp", string(NewId(Section_Type, "pg_catalog", "pg_lsn")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3251) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_hash", string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3252) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bttextsortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3255) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "generate_series", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 3259) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "generate_series", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 3260) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_strip_nulls", string(NewId(Section_Type, "pg_catalog", "json"))), 3261) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_strip_nulls", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3262) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_object", string(NewId(Section_Type, "pg_catalog", "_text"))), 3263) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_object", string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "_text"))), 3264) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_agg_transfn", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3265) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_agg_finalfn", string(NewId(Section_Type, "pg_catalog", "internal"))), 3266) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_agg", string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3267) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_object_agg_transfn", string(NewId(Section_Type, "pg_catalog", "any")), string(NewId(Section_Type, "pg_catalog", "any")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3268) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_object_agg_finalfn", string(NewId(Section_Type, "pg_catalog", "internal"))), 3269) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_object_agg", string(NewId(Section_Type, "pg_catalog", "any")), string(NewId(Section_Type, "pg_catalog", "any"))), 3270) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_build_array", string(NewId(Section_Type, "pg_catalog", "any"))), 3271) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_build_array"), 3272) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_build_object", string(NewId(Section_Type, "pg_catalog", "any"))), 3273) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_build_object"), 3274) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_ppoly", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 3275) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_position", string(NewId(Section_Type, "pg_catalog", "anycompatible")), string(NewId(Section_Type, "pg_catalog", "anycompatiblearray"))), 3277) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_position", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "anycompatible")), string(NewId(Section_Type, "pg_catalog", "anycompatiblearray"))), 3278) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_positions", string(NewId(Section_Type, "pg_catalog", "anycompatible")), string(NewId(Section_Type, "pg_catalog", "anycompatiblearray"))), 3279) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_circle_distance", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "circle")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3280) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "scale", string(NewId(Section_Type, "pg_catalog", "numeric"))), 3281) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_point_fetch", string(NewId(Section_Type, "pg_catalog", "internal"))), 3282) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_sortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3283) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_poly_distance", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "polygon")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3288) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_cpoint", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "circle"))), 3290) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dist_polyp", string(NewId(Section_Type, "pg_catalog", "point")), string(NewId(Section_Type, "pg_catalog", "polygon"))), 3292) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_read_file", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "text"))), 3293) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "current_setting", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text"))), 3294) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_read_binary_file", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "text"))), 3295) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_notification_queue_usage"), 3296) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ls_dir", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text"))), 3297) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "row_security_active", string(NewId(Section_Type, "pg_catalog", "oid"))), 3298) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "row_security_active", string(NewId(Section_Type, "pg_catalog", "text"))), 3299) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "uuid_sortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3300) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_concat", string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3301) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_delete", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3302) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_delete", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3303) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_delete_path", string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3304) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_set", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3305) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_pretty", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3306) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_file", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text"))), 3307) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xidneq", string(NewId(Section_Type, "pg_catalog", "xid")), string(NewId(Section_Type, "pg_catalog", "xid"))), 3308) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xidneqint4", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "xid"))), 3309) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsm_handler_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 3311) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsm_handler_out", string(NewId(Section_Type, "pg_catalog", "tsm_handler"))), 3312) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bernoulli", string(NewId(Section_Type, "pg_catalog", "internal"))), 3313) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "system", string(NewId(Section_Type, "pg_catalog", "internal"))), 3314) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_wal_receiver"), 3317) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_progress_info", string(NewId(Section_Type, "pg_catalog", "text"))), 3318) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_filter", string(NewId(Section_Type, "pg_catalog", "_char")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3319) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "setweight", string(NewId(Section_Type, "pg_catalog", "char")), string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3320) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_delete", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3321) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "unnest", string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3322) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_delete", string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3323) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4_avg_combine", string(NewId(Section_Type, "pg_catalog", "_int8")), string(NewId(Section_Type, "pg_catalog", "_int8"))), 3324) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_combine", string(NewId(Section_Type, "pg_catalog", "_interval")), string(NewId(Section_Type, "pg_catalog", "_interval"))), 3325) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsvector_to_array", string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3326) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_to_tsvector", string(NewId(Section_Type, "pg_catalog", "_text"))), 3327) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bpchar_sortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3328) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_show_all_file_settings"), 3329) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_current_wal_flush_lsn"), 3330) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bytea_sortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3331) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bttext_pattern_sortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3332) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btbpchar_pattern_sortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3333) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_size_bytes", string(NewId(Section_Type, "pg_catalog", "text"))), 3334) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_serialize", string(NewId(Section_Type, "pg_catalog", "internal"))), 3335) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_deserialize", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3336) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_avg_combine", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3337) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_poly_combine", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3338) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_poly_serialize", string(NewId(Section_Type, "pg_catalog", "internal"))), 3339) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_poly_deserialize", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3340) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_combine", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3341) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float8_regr_combine", string(NewId(Section_Type, "pg_catalog", "_float8")), string(NewId(Section_Type, "pg_catalog", "_float8"))), 3342) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_delete", string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3343) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_mul_int8", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "money"))), 3344) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_div_int8", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "money"))), 3345) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "txid_current_if_assigned"), 3348) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_partkeydef", string(NewId(Section_Type, "pg_catalog", "oid"))), 3352) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ls_logdir"), 3353) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ls_waldir"), 3354) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ndistinct_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 3355) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ndistinct_out", string(NewId(Section_Type, "pg_catalog", "pg_ndistinct"))), 3356) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ndistinct_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 3357) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ndistinct_send", string(NewId(Section_Type, "pg_catalog", "pg_ndistinct"))), 3358) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr_sortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3359) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "txid_status", string(NewId(Section_Type, "pg_catalog", "int8"))), 3360) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_safe_snapshot_blocking_pids", string(NewId(Section_Type, "pg_catalog", "int4"))), 3376) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_isolation_test_session_is_blocked", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "_int4"))), 3378) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_identify_object_as_address", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3382) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_opcinfo", string(NewId(Section_Type, "pg_catalog", "internal"))), 3383) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_add_value", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3384) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_consistent", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3385) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_union", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3386) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8_avg_accum_inv", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3387) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_poly_sum", string(NewId(Section_Type, "pg_catalog", "internal"))), 3388) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_poly_avg", string(NewId(Section_Type, "pg_catalog", "internal"))), 3389) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_poly_var_pop", string(NewId(Section_Type, "pg_catalog", "internal"))), 3390) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_poly_var_samp", string(NewId(Section_Type, "pg_catalog", "internal"))), 3391) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_poly_stddev_pop", string(NewId(Section_Type, "pg_catalog", "internal"))), 3392) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_poly_stddev_samp", string(NewId(Section_Type, "pg_catalog", "internal"))), 3393) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_match", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3396) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_match", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3397) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8_mul_cash", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "money"))), 3399) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_config"), 3400) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_hba_file_rules"), 3401) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_statistics_obj_is_visible", string(NewId(Section_Type, "pg_catalog", "oid"))), 3403) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_dependencies_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 3404) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_dependencies_out", string(NewId(Section_Type, "pg_catalog", "pg_dependencies"))), 3405) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_dependencies_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 3406) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_dependencies_send", string(NewId(Section_Type, "pg_catalog", "pg_dependencies"))), 3407) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_partition_constraintdef", string(NewId(Section_Type, "pg_catalog", "oid"))), 3408) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_hash_extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "time"))), 3409) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timetz_hash_extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 3410) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_hash_extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 3411) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "uuid_hash_extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "uuid"))), 3412) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_hash_extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3413) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashenumextended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3414) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_statisticsobjdef", string(NewId(Section_Type, "pg_catalog", "oid"))), 3415) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_hash_extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3416) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hash_range_extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3417) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_hash_extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "interval"))), 3418) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sha224", string(NewId(Section_Type, "pg_catalog", "bytea"))), 3419) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sha256", string(NewId(Section_Type, "pg_catalog", "bytea"))), 3420) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sha384", string(NewId(Section_Type, "pg_catalog", "bytea"))), 3421) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sha512", string(NewId(Section_Type, "pg_catalog", "bytea"))), 3422) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_partition_tree", string(NewId(Section_Type, "pg_catalog", "regclass"))), 3423) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_partition_root", string(NewId(Section_Type, "pg_catalog", "regclass"))), 3424) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_partition_ancestors", string(NewId(Section_Type, "pg_catalog", "regclass"))), 3425) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_checksum_failures", string(NewId(Section_Type, "pg_catalog", "oid"))), 3426) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_mcv_list_items", string(NewId(Section_Type, "pg_catalog", "pg_mcv_list"))), 3427) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_checksum_last_failure", string(NewId(Section_Type, "pg_catalog", "oid"))), 3428) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gen_random_uuid"), 3432) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsvector_options", string(NewId(Section_Type, "pg_catalog", "internal"))), 3434) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_point_sortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 3435) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_promote", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4"))), 3436) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "prefixsel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3437) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "prefixjoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3438) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_control_system"), 3441) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_control_checkpoint"), 3442) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_control_recovery"), 3443) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_control_init"), 3444) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_import_system_collations", string(NewId(Section_Type, "pg_catalog", "regnamespace"))), 3445) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr8_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 3446) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr8_send", string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 3447) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_collation_actual_version", string(NewId(Section_Type, "pg_catalog", "oid"))), 3448) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3449) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3450) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3451) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3452) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "float4", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3453) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_filenode_relation", string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3454) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_from_bytea", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3457) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_get", string(NewId(Section_Type, "pg_catalog", "oid"))), 3458) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_get", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3459) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lo_put", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3460) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "make_timestamp", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 3461) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "make_timestamptz", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 3462) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "make_timestamptz", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "float8"))), 3463) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "make_interval", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 3464) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_array_elements_text", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3465) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_range_quad_config", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3469) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_range_quad_choose", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3470) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_range_quad_picksplit", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3471) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_range_quad_inner_consistent", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3472) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_range_quad_leaf_consistent", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3473) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_populate_recordset", string(NewId(Section_Type, "pg_catalog", "anyelement")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3475) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_regoperator", string(NewId(Section_Type, "pg_catalog", "text"))), 3476) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_object_field", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3478) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_regprocedure", string(NewId(Section_Type, "pg_catalog", "text"))), 3479) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_compare_jsonb", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3480) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_extract_jsonb", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3482) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_extract_jsonb_query", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3483) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_consistent_jsonb", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3484) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_extract_jsonb_path", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3485) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_extract_jsonb_query_path", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3486) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_consistent_jsonb_path", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3487) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_triconsistent_jsonb", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3488) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_triconsistent_jsonb_path", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3489) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_to_record", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3490) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_to_recordset", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3491) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_regoper", string(NewId(Section_Type, "pg_catalog", "text"))), 3492) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_regtype", string(NewId(Section_Type, "pg_catalog", "text"))), 3493) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_regproc", string(NewId(Section_Type, "pg_catalog", "text"))), 3494) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_regclass", string(NewId(Section_Type, "pg_catalog", "text"))), 3495) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bool_accum", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3496) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bool_accum_inv", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3497) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bool_alltrue", string(NewId(Section_Type, "pg_catalog", "internal"))), 3498) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bool_anytrue", string(NewId(Section_Type, "pg_catalog", "internal"))), 3499) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anyenum_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 3504) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anyenum_out", string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3505) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_in", string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 3506) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_out", string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3507) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_eq", string(NewId(Section_Type, "pg_catalog", "anyenum")), string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3508) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_ne", string(NewId(Section_Type, "pg_catalog", "anyenum")), string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3509) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_lt", string(NewId(Section_Type, "pg_catalog", "anyenum")), string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3510) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_gt", string(NewId(Section_Type, "pg_catalog", "anyenum")), string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3511) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_le", string(NewId(Section_Type, "pg_catalog", "anyenum")), string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3512) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_ge", string(NewId(Section_Type, "pg_catalog", "anyenum")), string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3513) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_cmp", string(NewId(Section_Type, "pg_catalog", "anyenum")), string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3514) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hashenum", string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3515) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_smaller", string(NewId(Section_Type, "pg_catalog", "anyenum")), string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3524) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_larger", string(NewId(Section_Type, "pg_catalog", "anyenum")), string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3525) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3526) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3527) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_first", string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3528) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_last", string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3529) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_range", string(NewId(Section_Type, "pg_catalog", "anyenum")), string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3530) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_range", string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3531) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_recv", string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3532) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "enum_send", string(NewId(Section_Type, "pg_catalog", "anyenum"))), 3533) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "string_agg_transfn", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3535) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "string_agg_finalfn", string(NewId(Section_Type, "pg_catalog", "internal"))), 3536) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_describe_object", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3537) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "string_agg", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3538) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "format", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "any"))), 3539) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "format", string(NewId(Section_Type, "pg_catalog", "text"))), 3540) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bytea_string_agg_transfn", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3543) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bytea_string_agg_finalfn", string(NewId(Section_Type, "pg_catalog", "internal"))), 3544) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "string_agg", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 3545) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8dec", string(NewId(Section_Type, "pg_catalog", "int8"))), 3546) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8dec_any", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "any"))), 3547) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_accum_inv", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3548) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_accum_inv", string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "_interval"))), 3549) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network_overlap", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 3551) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_gist_consistent", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3553) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_gist_union", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3554) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_gist_compress", string(NewId(Section_Type, "pg_catalog", "internal"))), 3555) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bool", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3556) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_gist_penalty", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3557) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_gist_picksplit", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3558) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_gist_same", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3559) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "networksel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3560) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "networkjoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3561) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network_larger", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 3562) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network_smaller", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 3563) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "inet"))), 3564) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "inet"))), 3565) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_event_trigger_dropped_objects"), 3566) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2_accum_inv", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3567) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4_accum_inv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3568) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8_accum_inv", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3569) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2_avg_accum_inv", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "_int8"))), 3570) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4_avg_accum_inv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "_int8"))), 3571) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int2int4_sum", string(NewId(Section_Type, "pg_catalog", "_int8"))), 3572) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_gist_fetch", string(NewId(Section_Type, "pg_catalog", "internal"))), 3573) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_logical_emit_message", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3577) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_logical_emit_message", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "text"))), 3578) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_insert", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3579) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_xact_commit_timestamp", string(NewId(Section_Type, "pg_catalog", "xid"))), 3581) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "binary_upgrade_set_next_pg_type_oid", string(NewId(Section_Type, "pg_catalog", "oid"))), 3582) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_last_committed_xact"), 3583) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "binary_upgrade_set_next_array_pg_type_oid", string(NewId(Section_Type, "pg_catalog", "oid"))), 3584) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "binary_upgrade_set_next_heap_pg_class_oid", string(NewId(Section_Type, "pg_catalog", "oid"))), 3586) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "binary_upgrade_set_next_index_pg_class_oid", string(NewId(Section_Type, "pg_catalog", "oid"))), 3587) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "binary_upgrade_set_next_toast_pg_class_oid", string(NewId(Section_Type, "pg_catalog", "oid"))), 3588) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "binary_upgrade_set_next_pg_enum_oid", string(NewId(Section_Type, "pg_catalog", "oid"))), 3589) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "binary_upgrade_set_next_pg_authid_oid", string(NewId(Section_Type, "pg_catalog", "oid"))), 3590) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "binary_upgrade_create_empty_extension", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "_oid"))), 3591) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "event_trigger_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 3594) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "event_trigger_out", string(NewId(Section_Type, "pg_catalog", "event_trigger"))), 3595) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsvectorin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 3610) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsvectorout", string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3611) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsqueryin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 3612) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsqueryout", string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3613) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsvector_lt", string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3616) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsvector_le", string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3617) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsvector_eq", string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3618) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsvector_ne", string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3619) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsvector_ge", string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3620) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsvector_gt", string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3621) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsvector_cmp", string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3622) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "strip", string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3623) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "setweight", string(NewId(Section_Type, "pg_catalog", "char")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3624) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsvector_concat", string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3625) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_match_vq", string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3634) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_match_qv", string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3635) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsvectorsend", string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3638) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsvectorrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 3639) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsquerysend", string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3640) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsqueryrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 3641) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsvectorin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 3646) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsvectorout", string(NewId(Section_Type, "pg_catalog", "gtsvector"))), 3647) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsvector_compress", string(NewId(Section_Type, "pg_catalog", "internal"))), 3648) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsvector_decompress", string(NewId(Section_Type, "pg_catalog", "internal"))), 3649) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsvector_picksplit", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3650) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsvector_union", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3651) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsvector_same", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "gtsvector")), string(NewId(Section_Type, "pg_catalog", "gtsvector"))), 3652) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsvector_penalty", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3653) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsvector_consistent", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3654) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_extract_tsvector", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3656) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_extract_tsquery", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3657) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_tsquery_consistent", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3658) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsquery_lt", string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3662) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsquery_le", string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3663) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsquery_eq", string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3664) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsquery_ne", string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3665) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsquery_ge", string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3666) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsquery_gt", string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3667) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsquery_cmp", string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3668) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsquery_and", string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3669) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsquery_or", string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3670) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsquery_not", string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3671) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numnode", string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3672) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "querytree", string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3673) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_rewrite", string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3684) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_rewrite", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3685) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsmatchsel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3686) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsmatchjoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3687) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_typanalyze", string(NewId(Section_Type, "pg_catalog", "internal"))), 3688) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_stat", string(NewId(Section_Type, "pg_catalog", "text"))), 3689) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_stat", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3690) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsq_mcontains", string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3691) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsq_mcontained", string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3692) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsquery_compress", string(NewId(Section_Type, "pg_catalog", "internal"))), 3695) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "starts_with", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3696) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsquery_picksplit", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3697) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsquery_union", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3698) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsquery_same", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3699) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsquery_penalty", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3700) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsquery_consistent", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3701) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_rank", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "_float4")), string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3703) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_rank", string(NewId(Section_Type, "pg_catalog", "_float4")), string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3704) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_rank", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3705) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_rank", string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3706) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_rank_cd", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "_float4")), string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3707) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_rank_cd", string(NewId(Section_Type, "pg_catalog", "_float4")), string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3708) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_rank_cd", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3709) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_rank_cd", string(NewId(Section_Type, "pg_catalog", "tsvector")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3710) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "length", string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3711) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_token_type", string(NewId(Section_Type, "pg_catalog", "oid"))), 3713) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_token_type", string(NewId(Section_Type, "pg_catalog", "text"))), 3714) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_parse", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3715) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_parse", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3716) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "prsd_start", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3717) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "prsd_nexttoken", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3718) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "prsd_end", string(NewId(Section_Type, "pg_catalog", "internal"))), 3719) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "prsd_headline", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3720) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "prsd_lextype", string(NewId(Section_Type, "pg_catalog", "internal"))), 3721) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_lexize", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "regdictionary"))), 3723) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_cmp_tslexeme", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3724) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dsimple_init", string(NewId(Section_Type, "pg_catalog", "internal"))), 3725) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dsimple_lexize", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3726) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dsynonym_init", string(NewId(Section_Type, "pg_catalog", "internal"))), 3728) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dsynonym_lexize", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3729) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dispell_init", string(NewId(Section_Type, "pg_catalog", "internal"))), 3731) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dispell_lexize", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3732) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regconfigin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 3736) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regconfigout", string(NewId(Section_Type, "pg_catalog", "regconfig"))), 3737) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regconfigrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 3738) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regconfigsend", string(NewId(Section_Type, "pg_catalog", "regconfig"))), 3739) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "thesaurus_init", string(NewId(Section_Type, "pg_catalog", "internal"))), 3740) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "thesaurus_lexize", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3741) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_headline", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "regconfig"))), 3743) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_headline", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "regconfig"))), 3744) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_tsvector", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "regconfig"))), 3745) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_tsquery", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "regconfig"))), 3746) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "plainto_tsquery", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "regconfig"))), 3747) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_tsvector", string(NewId(Section_Type, "pg_catalog", "text"))), 3749) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_tsquery", string(NewId(Section_Type, "pg_catalog", "text"))), 3750) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "plainto_tsquery", string(NewId(Section_Type, "pg_catalog", "text"))), 3751) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsvector_update_trigger"), 3752) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsvector_update_trigger_column"), 3753) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_headline", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3754) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_headline", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3755) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ts_parser_is_visible", string(NewId(Section_Type, "pg_catalog", "oid"))), 3756) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ts_dict_is_visible", string(NewId(Section_Type, "pg_catalog", "oid"))), 3757) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ts_config_is_visible", string(NewId(Section_Type, "pg_catalog", "oid"))), 3758) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "get_current_ts_config"), 3759) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_match_tt", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 3760) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_match_tq", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3761) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ts_template_is_visible", string(NewId(Section_Type, "pg_catalog", "oid"))), 3768) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regdictionaryin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 3771) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regdictionaryout", string(NewId(Section_Type, "pg_catalog", "regdictionary"))), 3772) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regdictionaryrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 3773) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regdictionarysend", string(NewId(Section_Type, "pg_catalog", "regdictionary"))), 3774) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_reset_shared", string(NewId(Section_Type, "pg_catalog", "text"))), 3775) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_reset_single_table_counters", string(NewId(Section_Type, "pg_catalog", "oid"))), 3776) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_reset_single_function_counters", string(NewId(Section_Type, "pg_catalog", "oid"))), 3777) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_tablespace_location", string(NewId(Section_Type, "pg_catalog", "oid"))), 3778) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_create_physical_replication_slot", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "name"))), 3779) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_drop_replication_slot", string(NewId(Section_Type, "pg_catalog", "name"))), 3780) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_replication_slots"), 3781) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_logical_slot_get_changes", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3782) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_logical_slot_get_binary_changes", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3783) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_logical_slot_peek_changes", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3784) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_logical_slot_peek_binary_changes", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3785) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_create_logical_replication_slot", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "name"))), 3786) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_jsonb", string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3787) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_snapshot_timestamp"), 3788) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_clean_pending_list", string(NewId(Section_Type, "pg_catalog", "regclass"))), 3789) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsvector_consistent", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "gtsvector"))), 3790) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_extract_tsquery", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3791) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_tsquery_consistent", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 3792) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gtsquery_consistent", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3793) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_spg_config", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3795) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_spg_choose", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3796) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_spg_picksplit", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3797) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_spg_inner_consistent", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3798) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_spg_leaf_consistent", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3799) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_current_logfile"), 3800) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_current_logfile", string(NewId(Section_Type, "pg_catalog", "text"))), 3801) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_send", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3803) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_out", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3804) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 3805) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 3806) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_function_arg_default", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3808) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_export_snapshot"), 3809) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_is_in_recovery"), 3810) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "money", string(NewId(Section_Type, "pg_catalog", "int4"))), 3811) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "money", string(NewId(Section_Type, "pg_catalog", "int8"))), 3812) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_collation_is_visible", string(NewId(Section_Type, "pg_catalog", "oid"))), 3815) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_typanalyze", string(NewId(Section_Type, "pg_catalog", "internal"))), 3816) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "arraycontsel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3817) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "arraycontjoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3818) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_multixact_members", string(NewId(Section_Type, "pg_catalog", "xid"))), 3819) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_last_wal_receive_lsn"), 3820) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_last_wal_replay_lsn"), 3821) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cash_div_cash", string(NewId(Section_Type, "pg_catalog", "money")), string(NewId(Section_Type, "pg_catalog", "money"))), 3822) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric", string(NewId(Section_Type, "pg_catalog", "money"))), 3823) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "money", string(NewId(Section_Type, "pg_catalog", "numeric"))), 3824) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_read_file", string(NewId(Section_Type, "pg_catalog", "text"))), 3826) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_read_binary_file", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "text"))), 3827) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_read_binary_file", string(NewId(Section_Type, "pg_catalog", "text"))), 3828) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_opfamily_is_visible", string(NewId(Section_Type, "pg_catalog", "oid"))), 3829) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_last_xact_replay_timestamp"), 3830) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anyrange_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 3832) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anyrange_out", string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3833) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 3834) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_out", string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3835) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_recv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3836) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_send", string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3837) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_identify_object", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3839) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4range", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 3840) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4range", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text"))), 3841) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_relation_is_updatable", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "regclass"))), 3842) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_column_is_updatable", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "regclass"))), 3843) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numrange", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 3844) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numrange", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 3845) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "make_date", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 3846) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "make_time", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 3847) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lower", string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3848) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "upper", string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3849) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "isempty", string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3850) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lower_inc", string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3851) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "upper_inc", string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3852) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lower_inf", string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3853) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "upper_inf", string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3854) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_eq", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3855) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_ne", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3856) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_overlaps", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3857) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_contains_elem", string(NewId(Section_Type, "pg_catalog", "anyelement")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3858) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_contains", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3859) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "elem_contained_by_range", string(NewId(Section_Type, "pg_catalog", "anyelement")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3860) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_contained_by", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3861) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_adjacent", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3862) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_before", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3863) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_after", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3864) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_overleft", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3865) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_overright", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3866) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_union", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3867) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_intersect", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3868) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_minus", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3869) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_cmp", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3870) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_lt", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3871) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_le", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3872) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_ge", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3873) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_gt", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3874) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_gist_consistent", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3875) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_gist_union", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3876) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_replication_slot_advance", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 3878) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_gist_penalty", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3879) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_gist_picksplit", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3880) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_gist_same", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3881) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hash_range", string(NewId(Section_Type, "pg_catalog", "anyrange"))), 3902) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4range_canonical", string(NewId(Section_Type, "pg_catalog", "int4range"))), 3914) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "daterange_canonical", string(NewId(Section_Type, "pg_catalog", "daterange"))), 3915) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_typanalyze", string(NewId(Section_Type, "pg_catalog", "internal"))), 3916) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "timestamp_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 3917) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "interval_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 3918) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ginarraytriconsistent", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3920) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gin_tsquery_triconsistent", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "tsvector"))), 3921) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4range_subdiff", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 3922) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8range_subdiff", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 3923) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numrange_subdiff", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 3924) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "daterange_subdiff", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "date"))), 3925) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8range_canonical", string(NewId(Section_Type, "pg_catalog", "int8range"))), 3928) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsrange_subdiff", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 3929) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tstzrange_subdiff", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 3930) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_object_keys", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3931) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_each_text", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3932) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsrange", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 3933) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsrange", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 3934) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_sleep_for", string(NewId(Section_Type, "pg_catalog", "interval"))), 3935) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_sleep_until", string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 3936) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tstzrange", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 3937) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tstzrange", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 3938) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mxid_age", string(NewId(Section_Type, "pg_catalog", "xid"))), 3939) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_extract_path_text", string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 3940) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "daterange", string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "date"))), 3941) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "daterange", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "date"))), 3942) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "acldefault", string(NewId(Section_Type, "pg_catalog", "char")), string(NewId(Section_Type, "pg_catalog", "oid"))), 3943) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "time_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 3944) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8range", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 3945) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8range", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "text"))), 3946) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_object_field", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "json"))), 3947) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_object_field_text", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "json"))), 3948) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_array_element", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "json"))), 3949) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_array_element_text", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "json"))), 3950) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_extract_path", string(NewId(Section_Type, "pg_catalog", "json")), string(NewId(Section_Type, "pg_catalog", "_text"))), 3951) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_summarize_new_values", string(NewId(Section_Type, "pg_catalog", "regclass"))), 3952) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_extract_path_text", string(NewId(Section_Type, "pg_catalog", "json")), string(NewId(Section_Type, "pg_catalog", "_text"))), 3953) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_object_address", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "_text"))), 3954) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_array_elements", string(NewId(Section_Type, "pg_catalog", "json"))), 3955) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_array_length", string(NewId(Section_Type, "pg_catalog", "json"))), 3956) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_object_keys", string(NewId(Section_Type, "pg_catalog", "json"))), 3957) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_each", string(NewId(Section_Type, "pg_catalog", "json"))), 3958) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_each_text", string(NewId(Section_Type, "pg_catalog", "json"))), 3959) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_populate_record", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "json")), string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3960) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_populate_recordset", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "json")), string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3961) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_typeof", string(NewId(Section_Type, "pg_catalog", "json"))), 3968) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_array_elements_text", string(NewId(Section_Type, "pg_catalog", "json"))), 3969) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ordered_set_transition", string(NewId(Section_Type, "pg_catalog", "any")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3970) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ordered_set_transition_multi", string(NewId(Section_Type, "pg_catalog", "any")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3971) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "percentile_disc", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3972) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "percentile_disc_final", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3973) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "percentile_cont", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 3974) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "percentile_cont_float8_final", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3975) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "percentile_cont", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "interval"))), 3976) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "percentile_cont_interval_final", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3977) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "percentile_disc", string(NewId(Section_Type, "pg_catalog", "_float8")), string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3978) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "percentile_disc_multi_final", string(NewId(Section_Type, "pg_catalog", "_float8")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3979) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "percentile_cont", string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "_float8"))), 3980) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "percentile_cont_float8_multi_final", string(NewId(Section_Type, "pg_catalog", "_float8")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3981) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "percentile_cont", string(NewId(Section_Type, "pg_catalog", "_float8")), string(NewId(Section_Type, "pg_catalog", "interval"))), 3982) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "percentile_cont_interval_multi_final", string(NewId(Section_Type, "pg_catalog", "_float8")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3983) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mode", string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3984) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mode_final", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "anyelement"))), 3985) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "rank", string(NewId(Section_Type, "pg_catalog", "any"))), 3986) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "rank_final", string(NewId(Section_Type, "pg_catalog", "any")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3987) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "percent_rank", string(NewId(Section_Type, "pg_catalog", "any"))), 3988) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "percent_rank_final", string(NewId(Section_Type, "pg_catalog", "any")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3989) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cume_dist", string(NewId(Section_Type, "pg_catalog", "any"))), 3990) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "cume_dist_final", string(NewId(Section_Type, "pg_catalog", "any")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3991) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dense_rank", string(NewId(Section_Type, "pg_catalog", "any"))), 3992) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dense_rank_final", string(NewId(Section_Type, "pg_catalog", "any")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3993) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "generate_series_int4_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 3994) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "generate_series_int8_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 3995) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_unnest_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 3996) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gist_box_distance", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 3998) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_summarize_range", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "regclass"))), 3999) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonpath_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 4001) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonpath_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 4002) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonpath_out", string(NewId(Section_Type, "pg_catalog", "jsonpath"))), 4003) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonpath_send", string(NewId(Section_Type, "pg_catalog", "jsonpath"))), 4004) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_path_exists", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonpath"))), 4005) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_path_query", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonpath"))), 4006) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_path_query_array", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonpath"))), 4007) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_path_query_first", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonpath"))), 4008) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_path_match", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonpath"))), 4009) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_path_exists_opr", string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonpath"))), 4010) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_path_match_opr", string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonpath"))), 4011) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_desummarize_range", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "regclass"))), 4014) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_quad_config", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4018) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_quad_choose", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4019) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_quad_picksplit", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4020) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_quad_inner_consistent", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4021) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_quad_leaf_consistent", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4022) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_kd_config", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4023) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_kd_choose", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4024) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_kd_picksplit", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4025) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_kd_inner_consistent", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4026) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_text_config", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4027) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_text_choose", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4028) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_text_picksplit", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4029) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_text_inner_consistent", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4030) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_text_leaf_consistent", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4031) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_sequence_last_value", string(NewId(Section_Type, "pg_catalog", "regclass"))), 4032) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_ne", string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4038) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_lt", string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4039) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_gt", string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4040) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_le", string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4041) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_ge", string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4042) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_eq", string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4043) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_cmp", string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4044) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_hash", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4045) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_contains", string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4046) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_exists", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4047) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_exists_any", string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4048) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_exists_all", string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4049) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_contained", string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4050) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_agg_array_transfn", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4051) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_agg_array_finalfn", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4052) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_agg", string(NewId(Section_Type, "pg_catalog", "anyarray"))), 4053) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_merge", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 4057) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_merge", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 4063) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bound_box", string(NewId(Section_Type, "pg_catalog", "box")), string(NewId(Section_Type, "pg_catalog", "box"))), 4067) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "inet_same_family", string(NewId(Section_Type, "pg_catalog", "inet")), string(NewId(Section_Type, "pg_catalog", "inet"))), 4071) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "binary_upgrade_set_record_init_privs", string(NewId(Section_Type, "pg_catalog", "bool"))), 4083) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regnamespacein", string(NewId(Section_Type, "pg_catalog", "cstring"))), 4084) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regnamespaceout", string(NewId(Section_Type, "pg_catalog", "regnamespace"))), 4085) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_regnamespace", string(NewId(Section_Type, "pg_catalog", "text"))), 4086) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regnamespacerecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 4087) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regnamespacesend", string(NewId(Section_Type, "pg_catalog", "regnamespace"))), 4088) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "box", string(NewId(Section_Type, "pg_catalog", "point"))), 4091) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regroleout", string(NewId(Section_Type, "pg_catalog", "regrole"))), 4092) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_regrole", string(NewId(Section_Type, "pg_catalog", "text"))), 4093) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regrolerecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 4094) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regrolesend", string(NewId(Section_Type, "pg_catalog", "regrole"))), 4095) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regrolein", string(NewId(Section_Type, "pg_catalog", "cstring"))), 4098) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_rotate_logfile_old"), 4099) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_read_file_old", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "text"))), 4100) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "binary_upgrade_set_missing_value", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 4101) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_inclusion_opcinfo", string(NewId(Section_Type, "pg_catalog", "internal"))), 4105) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_inclusion_add_value", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4106) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_inclusion_consistent", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4107) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_inclusion_union", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4108) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr8_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 4110) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr8_out", string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 4111) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "trunc", string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 4112) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr8_eq", string(NewId(Section_Type, "pg_catalog", "macaddr8")), string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 4113) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr8_lt", string(NewId(Section_Type, "pg_catalog", "macaddr8")), string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 4114) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr8_le", string(NewId(Section_Type, "pg_catalog", "macaddr8")), string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 4115) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr8_gt", string(NewId(Section_Type, "pg_catalog", "macaddr8")), string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 4116) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr8_ge", string(NewId(Section_Type, "pg_catalog", "macaddr8")), string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 4117) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr8_ne", string(NewId(Section_Type, "pg_catalog", "macaddr8")), string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 4118) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr8_cmp", string(NewId(Section_Type, "pg_catalog", "macaddr8")), string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 4119) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr8_not", string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 4120) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr8_and", string(NewId(Section_Type, "pg_catalog", "macaddr8")), string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 4121) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr8_or", string(NewId(Section_Type, "pg_catalog", "macaddr8")), string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 4122) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr8", string(NewId(Section_Type, "pg_catalog", "macaddr"))), 4123) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr", string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 4124) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "macaddr8_set7bit", string(NewId(Section_Type, "pg_catalog", "macaddr8"))), 4125) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "in_range", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 4126) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "in_range", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 4127) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "in_range", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 4128) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "in_range", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 4129) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "in_range", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 4130) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "in_range", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int4"))), 4131) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "in_range", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "int2"))), 4132) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "in_range", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "date")), string(NewId(Section_Type, "pg_catalog", "interval"))), 4133) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "in_range", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "interval"))), 4134) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "in_range", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "interval"))), 4135) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "in_range", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "interval"))), 4136) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "in_range", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "time")), string(NewId(Section_Type, "pg_catalog", "interval"))), 4137) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "in_range", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "interval")), string(NewId(Section_Type, "pg_catalog", "timetz")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 4138) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "in_range", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8")), string(NewId(Section_Type, "pg_catalog", "float8"))), 4139) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "in_range", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float4")), string(NewId(Section_Type, "pg_catalog", "float8"))), 4140) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "in_range", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 4141) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_larger", string(NewId(Section_Type, "pg_catalog", "pg_lsn")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 4187) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_smaller", string(NewId(Section_Type, "pg_catalog", "pg_lsn")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 4188) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 4189) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 4190) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regcollationin", string(NewId(Section_Type, "pg_catalog", "cstring"))), 4193) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regcollationout", string(NewId(Section_Type, "pg_catalog", "regcollation"))), 4194) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_regcollation", string(NewId(Section_Type, "pg_catalog", "text"))), 4195) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regcollationrecv", string(NewId(Section_Type, "pg_catalog", "internal"))), 4196) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regcollationsend", string(NewId(Section_Type, "pg_catalog", "regcollation"))), 4197) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_headline", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "regconfig")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4201) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_headline", string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "regconfig")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4202) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_headline", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4203) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_headline", string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4204) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_headline", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "json")), string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "regconfig"))), 4205) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_headline", string(NewId(Section_Type, "pg_catalog", "json")), string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "regconfig"))), 4206) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_headline", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "json")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 4207) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_headline", string(NewId(Section_Type, "pg_catalog", "json")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 4208) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_tsvector", string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4209) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_tsvector", string(NewId(Section_Type, "pg_catalog", "json"))), 4210) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_tsvector", string(NewId(Section_Type, "pg_catalog", "regconfig")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4211) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "to_tsvector", string(NewId(Section_Type, "pg_catalog", "json")), string(NewId(Section_Type, "pg_catalog", "regconfig"))), 4212) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_to_tsvector", string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4213) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_to_tsvector", string(NewId(Section_Type, "pg_catalog", "regconfig")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4214) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_to_tsvector", string(NewId(Section_Type, "pg_catalog", "json")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4215) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "json_to_tsvector", string(NewId(Section_Type, "pg_catalog", "json")), string(NewId(Section_Type, "pg_catalog", "regconfig")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 4216) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_copy_physical_replication_slot", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "name"))), 4220) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_copy_physical_replication_slot", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "name"))), 4221) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_copy_logical_replication_slot", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "name"))), 4222) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_copy_logical_replication_slot", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "name"))), 4223) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_copy_logical_replication_slot", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "name"))), 4224) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anycompatiblemultirange_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 4226) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anycompatiblemultirange_out", string(NewId(Section_Type, "pg_catalog", "anycompatiblemultirange"))), 4227) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_merge", string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4228) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anymultirange_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 4229) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anymultirange_out", string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4230) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 4231) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_out", string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4232) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_recv", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4233) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_send", string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4234) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lower", string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4235) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "upper", string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4236) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "isempty", string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4237) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lower_inc", string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4238) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "upper_inc", string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4239) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lower_inf", string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4240) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "upper_inf", string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4241) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_typanalyze", string(NewId(Section_Type, "pg_catalog", "internal"))), 4242) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirangesel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4243) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_eq", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4244) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_ne", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4245) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_overlaps_multirange", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4246) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_overlaps_range", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4247) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_overlaps_multirange", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4248) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_contains_elem", string(NewId(Section_Type, "pg_catalog", "anyelement")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4249) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_contains_range", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4250) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_contains_multirange", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4251) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "elem_contained_by_multirange", string(NewId(Section_Type, "pg_catalog", "anyelement")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4252) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_contained_by_multirange", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4253) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_contained_by_multirange", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4254) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_adjacent_multirange", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4255) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_adjacent_multirange", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4256) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_adjacent_range", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4257) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_before_multirange", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4258) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_before_range", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4259) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_before_multirange", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4260) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_after_multirange", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4261) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_after_range", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4262) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_after_multirange", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4263) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_overleft_multirange", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4264) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_overleft_range", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4265) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_overleft_multirange", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4266) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_overright_multirange", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4267) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_overright_range", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4268) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_overright_multirange", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4269) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_union", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4270) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_minus", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4271) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_intersect", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4272) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_cmp", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4273) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_lt", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4274) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_le", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4275) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_ge", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4276) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_gt", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4277) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hash_multirange", string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4278) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hash_multirange_extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4279) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4multirange"), 4280) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4multirange", string(NewId(Section_Type, "pg_catalog", "int4range"))), 4281) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int4multirange", string(NewId(Section_Type, "pg_catalog", "_int4range"))), 4282) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nummultirange"), 4283) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nummultirange", string(NewId(Section_Type, "pg_catalog", "numrange"))), 4284) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "nummultirange", string(NewId(Section_Type, "pg_catalog", "_numrange"))), 4285) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsmultirange"), 4286) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsmultirange", string(NewId(Section_Type, "pg_catalog", "tsrange"))), 4287) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsmultirange", string(NewId(Section_Type, "pg_catalog", "_tsrange"))), 4288) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tstzmultirange"), 4289) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tstzmultirange", string(NewId(Section_Type, "pg_catalog", "tstzrange"))), 4290) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tstzmultirange", string(NewId(Section_Type, "pg_catalog", "_tstzrange"))), 4291) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "datemultirange"), 4292) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "datemultirange", string(NewId(Section_Type, "pg_catalog", "daterange"))), 4293) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "datemultirange", string(NewId(Section_Type, "pg_catalog", "_daterange"))), 4294) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8multirange"), 4295) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8multirange", string(NewId(Section_Type, "pg_catalog", "int8range"))), 4296) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8multirange", string(NewId(Section_Type, "pg_catalog", "_int8range"))), 4297) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange", string(NewId(Section_Type, "pg_catalog", "anyrange"))), 4298) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_agg_transfn", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 4299) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_agg_finalfn", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 4300) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_agg", string(NewId(Section_Type, "pg_catalog", "anyrange"))), 4301) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "koi8r_to_mic", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4302) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mic_to_koi8r", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4303) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "iso_to_mic", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4304) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mic_to_iso", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4305) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "win1251_to_mic", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4306) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mic_to_win1251", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4307) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "win866_to_mic", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4308) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mic_to_win866", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4309) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "koi8r_to_win1251", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4310) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "win1251_to_koi8r", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4311) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "koi8r_to_win866", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4312) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "win866_to_koi8r", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4313) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "win866_to_win1251", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4314) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "win1251_to_win866", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4315) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "iso_to_koi8r", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4316) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "koi8r_to_iso", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4317) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "iso_to_win1251", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4318) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "win1251_to_iso", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4319) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "iso_to_win866", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4320) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "win866_to_iso", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4321) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "euc_cn_to_mic", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4322) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mic_to_euc_cn", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4323) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "euc_jp_to_sjis", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4324) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sjis_to_euc_jp", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4325) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "euc_jp_to_mic", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4326) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sjis_to_mic", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4327) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mic_to_euc_jp", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4328) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mic_to_sjis", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4329) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "euc_kr_to_mic", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4330) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mic_to_euc_kr", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4331) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "euc_tw_to_big5", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4332) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "big5_to_euc_tw", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4333) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "euc_tw_to_mic", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4334) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "big5_to_mic", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4335) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mic_to_euc_tw", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4336) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mic_to_big5", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4337) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "latin2_to_mic", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4338) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mic_to_latin2", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4339) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "win1250_to_mic", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4340) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mic_to_win1250", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4341) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "latin2_to_win1250", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4342) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "win1250_to_latin2", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4343) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "latin1_to_mic", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4344) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mic_to_latin1", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4345) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "latin3_to_mic", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4346) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mic_to_latin3", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4347) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "latin4_to_mic", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4348) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "mic_to_latin4", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4349) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "normalize", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 4350) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "is_normalized", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 4351) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "big5_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4352) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_big5", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4353) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_koi8r", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4354) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "koi8r_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4355) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_koi8u", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4356) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "koi8u_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4357) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_win", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4358) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "win_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4359) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "euc_cn_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4360) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_euc_cn", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4361) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "euc_jp_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4362) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_euc_jp", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4363) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "euc_kr_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4364) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_euc_kr", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4365) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "euc_tw_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4366) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_euc_tw", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4367) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gb18030_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4368) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_gb18030", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4369) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gbk_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4370) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_gbk", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4371) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_iso8859", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4372) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "iso8859_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4373) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "iso8859_1_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4374) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_iso8859_1", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4375) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "johab_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4376) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_johab", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4377) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "sjis_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4378) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_sjis", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4379) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "uhc_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4380) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_uhc", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4381) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "euc_jis_2004_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4382) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_euc_jis_2004", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4383) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "shift_jis_2004_to_utf8", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4384) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "utf8_to_shift_jis_2004", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4385) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "euc_jis_2004_to_shift_jis_2004", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4386) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "shift_jis_2004_to_euc_jis_2004", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "cstring")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4387) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_intersect_agg_transfn", string(NewId(Section_Type, "pg_catalog", "anymultirange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4388) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_intersect_agg", string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4389) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "binary_upgrade_set_next_multirange_pg_type_oid", string(NewId(Section_Type, "pg_catalog", "oid"))), 4390) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "binary_upgrade_set_next_multirange_array_pg_type_oid", string(NewId(Section_Type, "pg_catalog", "oid"))), 4391) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_intersect_agg_transfn", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anyrange"))), 4401) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_intersect_agg", string(NewId(Section_Type, "pg_catalog", "anyrange"))), 4450) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_contains_multirange", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4541) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_contained_by_range", string(NewId(Section_Type, "pg_catalog", "anyrange")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 4542) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_log_backend_memory_contexts", string(NewId(Section_Type, "pg_catalog", "int4"))), 4543) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "binary_upgrade_set_next_heap_relfilenode", string(NewId(Section_Type, "pg_catalog", "oid"))), 4545) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "binary_upgrade_set_next_index_relfilenode", string(NewId(Section_Type, "pg_catalog", "oid"))), 4546) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "binary_upgrade_set_next_toast_relfilenode", string(NewId(Section_Type, "pg_catalog", "oid"))), 4547) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "binary_upgrade_set_next_pg_tablespace_oid", string(NewId(Section_Type, "pg_catalog", "oid"))), 4548) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_event_trigger_table_rewrite_oid"), 4566) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_event_trigger_table_rewrite_reason"), 4567) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_event_trigger_ddl_commands"), 4568) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_bloom_opcinfo", string(NewId(Section_Type, "pg_catalog", "internal"))), 4591) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_bloom_add_value", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4592) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_bloom_consistent", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4593) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_bloom_union", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4594) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_bloom_options", string(NewId(Section_Type, "pg_catalog", "internal"))), 4595) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_bloom_summary_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 4596) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_bloom_summary_out", string(NewId(Section_Type, "pg_catalog", "pg_brin_bloom_summary"))), 4597) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_bloom_summary_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 4598) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_bloom_summary_send", string(NewId(Section_Type, "pg_catalog", "pg_brin_bloom_summary"))), 4599) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_opcinfo", string(NewId(Section_Type, "pg_catalog", "internal"))), 4616) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_add_value", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4617) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_consistent", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4618) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_union", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4619) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_options", string(NewId(Section_Type, "pg_catalog", "internal"))), 4620) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_int2", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4621) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_int4", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4622) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_int8", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4623) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_float4", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4624) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_float8", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4625) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_numeric", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4626) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_tid", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4627) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_uuid", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4628) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_date", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4629) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_time", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4630) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_interval", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4631) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_timetz", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4632) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_pg_lsn", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4633) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_macaddr", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4634) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_macaddr8", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4635) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_inet", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4636) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_distance_timestamp", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 4637) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_summary_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 4638) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_summary_out", string(NewId(Section_Type, "pg_catalog", "pg_brin_minmax_multi_summary"))), 4639) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_summary_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 4640) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "brin_minmax_multi_summary_send", string(NewId(Section_Type, "pg_catalog", "pg_brin_minmax_multi_summary"))), 4641) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "phraseto_tsquery", string(NewId(Section_Type, "pg_catalog", "text"))), 5001) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsquery_phrase", string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 5003) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "tsquery_phrase", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "tsquery")), string(NewId(Section_Type, "pg_catalog", "tsquery"))), 5004) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "phraseto_tsquery", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "regconfig"))), 5006) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "websearch_to_tsquery", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "regconfig"))), 5007) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "websearch_to_tsquery", string(NewId(Section_Type, "pg_catalog", "text"))), 5009) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_bbox_quad_config", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 5010) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_poly_quad_compress", string(NewId(Section_Type, "pg_catalog", "polygon"))), 5011) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_box_quad_config", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 5012) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_box_quad_choose", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 5013) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_box_quad_picksplit", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 5014) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_box_quad_inner_consistent", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 5015) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "spg_box_quad_leaf_consistent", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 5016) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_mcv_list_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 5018) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_mcv_list_out", string(NewId(Section_Type, "pg_catalog", "pg_mcv_list"))), 5019) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_mcv_list_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 5020) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_mcv_list_send", string(NewId(Section_Type, "pg_catalog", "pg_mcv_list"))), 5021) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_pli", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 5022) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "numeric_pl_pg_lsn", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 5023) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn_mii", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 5024) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "satisfies_hash_partition", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "any"))), 5028) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ls_tmpdir"), 5029) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ls_tmpdir", string(NewId(Section_Type, "pg_catalog", "oid"))), 5030) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ls_archive_statusdir"), 5031) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "network_sortsupport", string(NewId(Section_Type, "pg_catalog", "internal"))), 5033) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xid8lt", string(NewId(Section_Type, "pg_catalog", "xid8")), string(NewId(Section_Type, "pg_catalog", "xid8"))), 5034) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xid8gt", string(NewId(Section_Type, "pg_catalog", "xid8")), string(NewId(Section_Type, "pg_catalog", "xid8"))), 5035) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xid8le", string(NewId(Section_Type, "pg_catalog", "xid8")), string(NewId(Section_Type, "pg_catalog", "xid8"))), 5036) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xid8ge", string(NewId(Section_Type, "pg_catalog", "xid8")), string(NewId(Section_Type, "pg_catalog", "xid8"))), 5037) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "matchingsel", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 5040) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "matchingjoinsel", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 5041) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min_scale", string(NewId(Section_Type, "pg_catalog", "numeric"))), 5042) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "trim_scale", string(NewId(Section_Type, "pg_catalog", "numeric"))), 5043) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gcd", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 5044) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gcd", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 5045) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lcm", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4"))), 5046) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lcm", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "int8"))), 5047) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "gcd", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 5048) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "lcm", string(NewId(Section_Type, "pg_catalog", "numeric")), string(NewId(Section_Type, "pg_catalog", "numeric"))), 5049) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btvarstrequalimage", string(NewId(Section_Type, "pg_catalog", "oid"))), 5050) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "btequalimage", string(NewId(Section_Type, "pg_catalog", "oid"))), 5051) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_shmem_allocations"), 5052) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_ins_since_vacuum", string(NewId(Section_Type, "pg_catalog", "oid"))), 5053) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_set_lax", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "_text")), string(NewId(Section_Type, "pg_catalog", "jsonb")), string(NewId(Section_Type, "pg_catalog", "jsonb"))), 5054) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_snapshot_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 5055) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_snapshot_out", string(NewId(Section_Type, "pg_catalog", "pg_snapshot"))), 5056) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_snapshot_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 5057) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_snapshot_send", string(NewId(Section_Type, "pg_catalog", "pg_snapshot"))), 5058) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_current_xact_id"), 5059) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_current_xact_id_if_assigned"), 5060) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_current_snapshot"), 5061) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_snapshot_xmin", string(NewId(Section_Type, "pg_catalog", "pg_snapshot"))), 5062) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_snapshot_xmax", string(NewId(Section_Type, "pg_catalog", "pg_snapshot"))), 5063) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_snapshot_xip", string(NewId(Section_Type, "pg_catalog", "pg_snapshot"))), 5064) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_visible_in_snapshot", string(NewId(Section_Type, "pg_catalog", "pg_snapshot")), string(NewId(Section_Type, "pg_catalog", "xid8"))), 5065) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_xact_status", string(NewId(Section_Type, "pg_catalog", "xid8"))), 5066) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xid8in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 5070) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xid", string(NewId(Section_Type, "pg_catalog", "xid8"))), 5071) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xid8out", string(NewId(Section_Type, "pg_catalog", "xid8"))), 5081) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xid8recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 5082) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xid8send", string(NewId(Section_Type, "pg_catalog", "xid8"))), 5083) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xid8eq", string(NewId(Section_Type, "pg_catalog", "xid8")), string(NewId(Section_Type, "pg_catalog", "xid8"))), 5084) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xid8ne", string(NewId(Section_Type, "pg_catalog", "xid8")), string(NewId(Section_Type, "pg_catalog", "xid8"))), 5085) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anycompatible_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 5086) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anycompatible_out", string(NewId(Section_Type, "pg_catalog", "anycompatible"))), 5087) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anycompatiblearray_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 5088) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anycompatiblearray_out", string(NewId(Section_Type, "pg_catalog", "anycompatiblearray"))), 5089) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anycompatiblearray_recv", string(NewId(Section_Type, "pg_catalog", "internal"))), 5090) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anycompatiblearray_send", string(NewId(Section_Type, "pg_catalog", "anycompatiblearray"))), 5091) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anycompatiblenonarray_in", string(NewId(Section_Type, "pg_catalog", "cstring"))), 5092) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anycompatiblenonarray_out", string(NewId(Section_Type, "pg_catalog", "anycompatiblenonarray"))), 5093) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anycompatiblerange_in", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "cstring"))), 5094) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "anycompatiblerange_out", string(NewId(Section_Type, "pg_catalog", "anycompatiblerange"))), 5095) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xid8cmp", string(NewId(Section_Type, "pg_catalog", "xid8")), string(NewId(Section_Type, "pg_catalog", "xid8"))), 5096) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xid8_larger", string(NewId(Section_Type, "pg_catalog", "xid8")), string(NewId(Section_Type, "pg_catalog", "xid8"))), 5097) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "xid8_smaller", string(NewId(Section_Type, "pg_catalog", "xid8")), string(NewId(Section_Type, "pg_catalog", "xid8"))), 5098) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "max", string(NewId(Section_Type, "pg_catalog", "xid8"))), 5099) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "min", string(NewId(Section_Type, "pg_catalog", "xid8"))), 5100) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_replication_origin_create", string(NewId(Section_Type, "pg_catalog", "text"))), 6003) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_replication_origin_drop", string(NewId(Section_Type, "pg_catalog", "text"))), 6004) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_replication_origin_oid", string(NewId(Section_Type, "pg_catalog", "text"))), 6005) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_replication_origin_session_setup", string(NewId(Section_Type, "pg_catalog", "text"))), 6006) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_replication_origin_session_reset"), 6007) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_replication_origin_session_is_setup"), 6008) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_replication_origin_session_progress", string(NewId(Section_Type, "pg_catalog", "bool"))), 6009) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_replication_origin_xact_setup", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 6010) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_replication_origin_xact_reset"), 6011) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_replication_origin_advance", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "pg_lsn"))), 6012) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_replication_origin_progress", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text"))), 6013) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_show_replication_origin_status"), 6014) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "jsonb_subscript_handler", string(NewId(Section_Type, "pg_catalog", "internal"))), 6098) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_lsn", string(NewId(Section_Type, "pg_catalog", "numeric"))), 6103) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_subscription", string(NewId(Section_Type, "pg_catalog", "oid"))), 6118) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_publication_tables", string(NewId(Section_Type, "pg_catalog", "text"))), 6119) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_replica_identity_index", string(NewId(Section_Type, "pg_catalog", "regclass"))), 6120) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_relation_is_publishable", string(NewId(Section_Type, "pg_catalog", "regclass"))), 6121) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_gist_consistent", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 6154) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_gist_compress", string(NewId(Section_Type, "pg_catalog", "internal"))), 6156) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_catalog_foreign_keys"), 6159) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "string_to_table", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6160) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "string_to_table", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6161) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_count", string(NewId(Section_Type, "pg_catalog", "bit"))), 6162) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_count", string(NewId(Section_Type, "pg_catalog", "bytea"))), 6163) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_xor", string(NewId(Section_Type, "pg_catalog", "int2"))), 6164) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_xor", string(NewId(Section_Type, "pg_catalog", "int4"))), 6165) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_xor", string(NewId(Section_Type, "pg_catalog", "int8"))), 6166) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "bit_xor", string(NewId(Section_Type, "pg_catalog", "bit"))), 6167) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_xact_commit_timestamp_origin", string(NewId(Section_Type, "pg_catalog", "xid"))), 6168) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_replication_slot", string(NewId(Section_Type, "pg_catalog", "text"))), 6169) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_reset_replication_slot", string(NewId(Section_Type, "pg_catalog", "text"))), 6170) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "trim_array", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "anyarray"))), 6172) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_statisticsobjdef_expressions", string(NewId(Section_Type, "pg_catalog", "oid"))), 6173) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_statisticsobjdef_columns", string(NewId(Section_Type, "pg_catalog", "oid"))), 6174) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_bin", string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "timestamp")), string(NewId(Section_Type, "pg_catalog", "interval"))), 6177) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "date_bin", string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "timestamptz")), string(NewId(Section_Type, "pg_catalog", "interval"))), 6178) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "array_subscript_handler", string(NewId(Section_Type, "pg_catalog", "internal"))), 6179) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "raw_array_subscript_handler", string(NewId(Section_Type, "pg_catalog", "internal"))), 6180) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_debug", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "regconfig"))), 6183) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ts_debug", string(NewId(Section_Type, "pg_catalog", "text"))), 6184) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_session_time", string(NewId(Section_Type, "pg_catalog", "oid"))), 6185) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_active_time", string(NewId(Section_Type, "pg_catalog", "oid"))), 6186) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_idle_in_transaction_time", string(NewId(Section_Type, "pg_catalog", "oid"))), 6187) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_sessions", string(NewId(Section_Type, "pg_catalog", "oid"))), 6188) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_sessions_abandoned", string(NewId(Section_Type, "pg_catalog", "oid"))), 6189) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_sessions_fatal", string(NewId(Section_Type, "pg_catalog", "oid"))), 6190) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_db_sessions_killed", string(NewId(Section_Type, "pg_catalog", "oid"))), 6191) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hash_record", string(NewId(Section_Type, "pg_catalog", "record"))), 6192) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "hash_record_extended", string(NewId(Section_Type, "pg_catalog", "int8")), string(NewId(Section_Type, "pg_catalog", "record"))), 6193) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ltrim", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 6195) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "rtrim", string(NewId(Section_Type, "pg_catalog", "bytea")), string(NewId(Section_Type, "pg_catalog", "bytea"))), 6196) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_function_sqlbody", string(NewId(Section_Type, "pg_catalog", "oid"))), 6197) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "unistr", string(NewId(Section_Type, "pg_catalog", "text"))), 6198) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "extract", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "date"))), 6199) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "extract", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "time"))), 6200) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "extract", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "timetz"))), 6201) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "extract", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "timestamp"))), 6202) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "extract", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "timestamptz"))), 6203) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "extract", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "interval"))), 6204) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_parameter_privilege", string(NewId(Section_Type, "pg_catalog", "name")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6205) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_parameter_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid"))), 6206) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "has_parameter_privilege", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6207) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_get_wal_resource_managers"), 6224) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_agg_transfn", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 6225) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "multirange_agg_finalfn", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 6226) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "range_agg", string(NewId(Section_Type, "pg_catalog", "anymultirange"))), 6227) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_have_stats", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "oid")), string(NewId(Section_Type, "pg_catalog", "oid"))), 6230) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_subscription_stats", string(NewId(Section_Type, "pg_catalog", "oid"))), 6231) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_reset_subscription_stats", string(NewId(Section_Type, "pg_catalog", "oid"))), 6232) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "window_row_number_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 6233) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "window_rank_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 6234) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "window_dense_rank_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 6235) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "int8inc_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 6236) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_settings_get_flags", string(NewId(Section_Type, "pg_catalog", "text"))), 6240) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stop_making_pinned_objects"), 6241) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "text_starts_with_support", string(NewId(Section_Type, "pg_catalog", "internal"))), 6242) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_stat_get_recovery_prefetch"), 6248) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_database_collation_actual_version", string(NewId(Section_Type, "pg_catalog", "oid"))), 6249) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ident_file_mappings"), 6250) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_replace", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6251) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_replace", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6252) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_replace", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6253) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_count", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6254) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_count", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6255) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_count", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6256) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_instr", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6257) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_instr", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6258) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_instr", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6259) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_instr", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6260) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_instr", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6261) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_instr", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6262) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_like", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6263) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_like", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6264) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_substr", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6265) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_substr", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6266) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_substr", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6267) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_substr", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6268) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "regexp_substr", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 6269) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ls_logicalsnapdir"), 6270) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ls_logicalmapdir"), 6271) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_ls_replslotdir", string(NewId(Section_Type, "pg_catalog", "text"))), 6272) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dsnowball_init", string(NewId(Section_Type, "pg_catalog", "internal"))), 13124) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "dsnowball_lexize", string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal")), string(NewId(Section_Type, "pg_catalog", "internal"))), 13125) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "_pg_expandarray", string(NewId(Section_Type, "pg_catalog", "anyarray"))), 13184) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "_pg_index_position", string(NewId(Section_Type, "pg_catalog", "int2")), string(NewId(Section_Type, "pg_catalog", "oid"))), 13185) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "_pg_truetypid", string(NewId(Section_Type, "pg_catalog", "pg_type")), string(NewId(Section_Type, "pg_catalog", "pg_attribute"))), 13186) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "_pg_truetypmod", string(NewId(Section_Type, "pg_catalog", "pg_type")), string(NewId(Section_Type, "pg_catalog", "pg_attribute"))), 13187) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "_pg_char_max_length", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid"))), 13188) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "_pg_char_octet_length", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid"))), 13189) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "_pg_numeric_precision", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid"))), 13191) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "_pg_numeric_precision_radix", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid"))), 13192) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "_pg_numeric_scale", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid"))), 13193) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "_pg_datetime_precision", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid"))), 13194) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "_pg_interval_type", string(NewId(Section_Type, "pg_catalog", "int4")), string(NewId(Section_Type, "pg_catalog", "oid"))), 13195) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "plpgsql_call_handler"), 13536) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "plpgsql_inline_handler", string(NewId(Section_Type, "pg_catalog", "internal"))), 13537) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "plpgsql_validator", string(NewId(Section_Type, "pg_catalog", "oid"))), 13538) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_file_write", string(NewId(Section_Type, "pg_catalog", "bool")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 16385) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_file_rename", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 16386) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_file_rename", string(NewId(Section_Type, "pg_catalog", "text")), string(NewId(Section_Type, "pg_catalog", "text"))), 16387) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_file_unlink", string(NewId(Section_Type, "pg_catalog", "text"))), 16388) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_logdir_ls"), 16389) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "pg_file_sync", string(NewId(Section_Type, "pg_catalog", "text"))), 16393) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "check_sql_syntax", string(NewId(Section_Type, "pg_catalog", "text"))), 56640) globalCache.setBuiltIn(NewId(Section_Function, "pg_catalog", "ret_test", string(NewId(Section_Type, "pg_catalog", "anyarray")), string(NewId(Section_Type, "pg_catalog", "anyelement"))), 61951) }