columns.generated.h 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055
  1. {"information_schema", "_pg_foreign_data_wrappers", "authorization_identifier", "name"},
  2. {"information_schema", "_pg_foreign_data_wrappers", "fdwoptions", "_text"},
  3. {"information_schema", "_pg_foreign_data_wrappers", "fdwowner", "oid"},
  4. {"information_schema", "_pg_foreign_data_wrappers", "foreign_data_wrapper_catalog", "name"},
  5. {"information_schema", "_pg_foreign_data_wrappers", "foreign_data_wrapper_language", "varchar"},
  6. {"information_schema", "_pg_foreign_data_wrappers", "foreign_data_wrapper_name", "name"},
  7. {"information_schema", "_pg_foreign_data_wrappers", "oid", "oid"},
  8. {"information_schema", "_pg_foreign_servers", "authorization_identifier", "name"},
  9. {"information_schema", "_pg_foreign_servers", "foreign_data_wrapper_catalog", "name"},
  10. {"information_schema", "_pg_foreign_servers", "foreign_data_wrapper_name", "name"},
  11. {"information_schema", "_pg_foreign_servers", "foreign_server_catalog", "name"},
  12. {"information_schema", "_pg_foreign_servers", "foreign_server_name", "name"},
  13. {"information_schema", "_pg_foreign_servers", "foreign_server_type", "varchar"},
  14. {"information_schema", "_pg_foreign_servers", "foreign_server_version", "varchar"},
  15. {"information_schema", "_pg_foreign_servers", "oid", "oid"},
  16. {"information_schema", "_pg_foreign_servers", "srvoptions", "_text"},
  17. {"information_schema", "_pg_foreign_table_columns", "attfdwoptions", "_text"},
  18. {"information_schema", "_pg_foreign_table_columns", "attname", "name"},
  19. {"information_schema", "_pg_foreign_table_columns", "nspname", "name"},
  20. {"information_schema", "_pg_foreign_table_columns", "relname", "name"},
  21. {"information_schema", "_pg_foreign_tables", "authorization_identifier", "name"},
  22. {"information_schema", "_pg_foreign_tables", "foreign_server_catalog", "name"},
  23. {"information_schema", "_pg_foreign_tables", "foreign_server_name", "name"},
  24. {"information_schema", "_pg_foreign_tables", "foreign_table_catalog", "name"},
  25. {"information_schema", "_pg_foreign_tables", "foreign_table_name", "name"},
  26. {"information_schema", "_pg_foreign_tables", "foreign_table_schema", "name"},
  27. {"information_schema", "_pg_foreign_tables", "ftoptions", "_text"},
  28. {"information_schema", "_pg_user_mappings", "authorization_identifier", "name"},
  29. {"information_schema", "_pg_user_mappings", "foreign_server_catalog", "name"},
  30. {"information_schema", "_pg_user_mappings", "foreign_server_name", "name"},
  31. {"information_schema", "_pg_user_mappings", "oid", "oid"},
  32. {"information_schema", "_pg_user_mappings", "srvowner", "name"},
  33. {"information_schema", "_pg_user_mappings", "umoptions", "_text"},
  34. {"information_schema", "_pg_user_mappings", "umuser", "oid"},
  35. {"information_schema", "administrable_role_authorizations", "grantee", "name"},
  36. {"information_schema", "administrable_role_authorizations", "is_grantable", "varchar"},
  37. {"information_schema", "administrable_role_authorizations", "role_name", "name"},
  38. {"information_schema", "applicable_roles", "grantee", "name"},
  39. {"information_schema", "applicable_roles", "is_grantable", "varchar"},
  40. {"information_schema", "applicable_roles", "role_name", "name"},
  41. {"information_schema", "attributes", "attribute_default", "varchar"},
  42. {"information_schema", "attributes", "attribute_name", "name"},
  43. {"information_schema", "attributes", "attribute_udt_catalog", "name"},
  44. {"information_schema", "attributes", "attribute_udt_name", "name"},
  45. {"information_schema", "attributes", "attribute_udt_schema", "name"},
  46. {"information_schema", "attributes", "character_maximum_length", "int4"},
  47. {"information_schema", "attributes", "character_octet_length", "int4"},
  48. {"information_schema", "attributes", "character_set_catalog", "name"},
  49. {"information_schema", "attributes", "character_set_name", "name"},
  50. {"information_schema", "attributes", "character_set_schema", "name"},
  51. {"information_schema", "attributes", "collation_catalog", "name"},
  52. {"information_schema", "attributes", "collation_name", "name"},
  53. {"information_schema", "attributes", "collation_schema", "name"},
  54. {"information_schema", "attributes", "data_type", "varchar"},
  55. {"information_schema", "attributes", "datetime_precision", "int4"},
  56. {"information_schema", "attributes", "dtd_identifier", "name"},
  57. {"information_schema", "attributes", "interval_precision", "int4"},
  58. {"information_schema", "attributes", "interval_type", "varchar"},
  59. {"information_schema", "attributes", "is_derived_reference_attribute", "varchar"},
  60. {"information_schema", "attributes", "is_nullable", "varchar"},
  61. {"information_schema", "attributes", "maximum_cardinality", "int4"},
  62. {"information_schema", "attributes", "numeric_precision", "int4"},
  63. {"information_schema", "attributes", "numeric_precision_radix", "int4"},
  64. {"information_schema", "attributes", "numeric_scale", "int4"},
  65. {"information_schema", "attributes", "ordinal_position", "int4"},
  66. {"information_schema", "attributes", "scope_catalog", "name"},
  67. {"information_schema", "attributes", "scope_name", "name"},
  68. {"information_schema", "attributes", "scope_schema", "name"},
  69. {"information_schema", "attributes", "udt_catalog", "name"},
  70. {"information_schema", "attributes", "udt_name", "name"},
  71. {"information_schema", "attributes", "udt_schema", "name"},
  72. {"information_schema", "character_sets", "character_repertoire", "name"},
  73. {"information_schema", "character_sets", "character_set_catalog", "name"},
  74. {"information_schema", "character_sets", "character_set_name", "name"},
  75. {"information_schema", "character_sets", "character_set_schema", "name"},
  76. {"information_schema", "character_sets", "default_collate_catalog", "name"},
  77. {"information_schema", "character_sets", "default_collate_name", "name"},
  78. {"information_schema", "character_sets", "default_collate_schema", "name"},
  79. {"information_schema", "character_sets", "form_of_use", "name"},
  80. {"information_schema", "check_constraint_routine_usage", "constraint_catalog", "name"},
  81. {"information_schema", "check_constraint_routine_usage", "constraint_name", "name"},
  82. {"information_schema", "check_constraint_routine_usage", "constraint_schema", "name"},
  83. {"information_schema", "check_constraint_routine_usage", "specific_catalog", "name"},
  84. {"information_schema", "check_constraint_routine_usage", "specific_name", "name"},
  85. {"information_schema", "check_constraint_routine_usage", "specific_schema", "name"},
  86. {"information_schema", "check_constraints", "check_clause", "varchar"},
  87. {"information_schema", "check_constraints", "constraint_catalog", "name"},
  88. {"information_schema", "check_constraints", "constraint_name", "name"},
  89. {"information_schema", "check_constraints", "constraint_schema", "name"},
  90. {"information_schema", "collation_character_set_applicability", "character_set_catalog", "name"},
  91. {"information_schema", "collation_character_set_applicability", "character_set_name", "name"},
  92. {"information_schema", "collation_character_set_applicability", "character_set_schema", "name"},
  93. {"information_schema", "collation_character_set_applicability", "collation_catalog", "name"},
  94. {"information_schema", "collation_character_set_applicability", "collation_name", "name"},
  95. {"information_schema", "collation_character_set_applicability", "collation_schema", "name"},
  96. {"information_schema", "collations", "collation_catalog", "name"},
  97. {"information_schema", "collations", "collation_name", "name"},
  98. {"information_schema", "collations", "collation_schema", "name"},
  99. {"information_schema", "collations", "pad_attribute", "varchar"},
  100. {"information_schema", "column_column_usage", "column_name", "name"},
  101. {"information_schema", "column_column_usage", "dependent_column", "name"},
  102. {"information_schema", "column_column_usage", "table_catalog", "name"},
  103. {"information_schema", "column_column_usage", "table_name", "name"},
  104. {"information_schema", "column_column_usage", "table_schema", "name"},
  105. {"information_schema", "column_domain_usage", "column_name", "name"},
  106. {"information_schema", "column_domain_usage", "domain_catalog", "name"},
  107. {"information_schema", "column_domain_usage", "domain_name", "name"},
  108. {"information_schema", "column_domain_usage", "domain_schema", "name"},
  109. {"information_schema", "column_domain_usage", "table_catalog", "name"},
  110. {"information_schema", "column_domain_usage", "table_name", "name"},
  111. {"information_schema", "column_domain_usage", "table_schema", "name"},
  112. {"information_schema", "column_options", "column_name", "name"},
  113. {"information_schema", "column_options", "option_name", "name"},
  114. {"information_schema", "column_options", "option_value", "varchar"},
  115. {"information_schema", "column_options", "table_catalog", "name"},
  116. {"information_schema", "column_options", "table_name", "name"},
  117. {"information_schema", "column_options", "table_schema", "name"},
  118. {"information_schema", "column_privileges", "column_name", "name"},
  119. {"information_schema", "column_privileges", "grantee", "name"},
  120. {"information_schema", "column_privileges", "grantor", "name"},
  121. {"information_schema", "column_privileges", "is_grantable", "varchar"},
  122. {"information_schema", "column_privileges", "privilege_type", "varchar"},
  123. {"information_schema", "column_privileges", "table_catalog", "name"},
  124. {"information_schema", "column_privileges", "table_name", "name"},
  125. {"information_schema", "column_privileges", "table_schema", "name"},
  126. {"information_schema", "column_udt_usage", "column_name", "name"},
  127. {"information_schema", "column_udt_usage", "table_catalog", "name"},
  128. {"information_schema", "column_udt_usage", "table_name", "name"},
  129. {"information_schema", "column_udt_usage", "table_schema", "name"},
  130. {"information_schema", "column_udt_usage", "udt_catalog", "name"},
  131. {"information_schema", "column_udt_usage", "udt_name", "name"},
  132. {"information_schema", "column_udt_usage", "udt_schema", "name"},
  133. {"information_schema", "columns", "character_maximum_length", "int4"},
  134. {"information_schema", "columns", "character_octet_length", "int4"},
  135. {"information_schema", "columns", "character_set_catalog", "name"},
  136. {"information_schema", "columns", "character_set_name", "name"},
  137. {"information_schema", "columns", "character_set_schema", "name"},
  138. {"information_schema", "columns", "collation_catalog", "name"},
  139. {"information_schema", "columns", "collation_name", "name"},
  140. {"information_schema", "columns", "collation_schema", "name"},
  141. {"information_schema", "columns", "column_default", "varchar"},
  142. {"information_schema", "columns", "column_name", "name"},
  143. {"information_schema", "columns", "data_type", "varchar"},
  144. {"information_schema", "columns", "datetime_precision", "int4"},
  145. {"information_schema", "columns", "domain_catalog", "name"},
  146. {"information_schema", "columns", "domain_name", "name"},
  147. {"information_schema", "columns", "domain_schema", "name"},
  148. {"information_schema", "columns", "dtd_identifier", "name"},
  149. {"information_schema", "columns", "generation_expression", "varchar"},
  150. {"information_schema", "columns", "identity_cycle", "varchar"},
  151. {"information_schema", "columns", "identity_generation", "varchar"},
  152. {"information_schema", "columns", "identity_increment", "varchar"},
  153. {"information_schema", "columns", "identity_maximum", "varchar"},
  154. {"information_schema", "columns", "identity_minimum", "varchar"},
  155. {"information_schema", "columns", "identity_start", "varchar"},
  156. {"information_schema", "columns", "interval_precision", "int4"},
  157. {"information_schema", "columns", "interval_type", "varchar"},
  158. {"information_schema", "columns", "is_generated", "varchar"},
  159. {"information_schema", "columns", "is_identity", "varchar"},
  160. {"information_schema", "columns", "is_nullable", "varchar"},
  161. {"information_schema", "columns", "is_self_referencing", "varchar"},
  162. {"information_schema", "columns", "is_updatable", "varchar"},
  163. {"information_schema", "columns", "maximum_cardinality", "int4"},
  164. {"information_schema", "columns", "numeric_precision", "int4"},
  165. {"information_schema", "columns", "numeric_precision_radix", "int4"},
  166. {"information_schema", "columns", "numeric_scale", "int4"},
  167. {"information_schema", "columns", "ordinal_position", "int4"},
  168. {"information_schema", "columns", "scope_catalog", "name"},
  169. {"information_schema", "columns", "scope_name", "name"},
  170. {"information_schema", "columns", "scope_schema", "name"},
  171. {"information_schema", "columns", "table_catalog", "name"},
  172. {"information_schema", "columns", "table_name", "name"},
  173. {"information_schema", "columns", "table_schema", "name"},
  174. {"information_schema", "columns", "udt_catalog", "name"},
  175. {"information_schema", "columns", "udt_name", "name"},
  176. {"information_schema", "columns", "udt_schema", "name"},
  177. {"information_schema", "constraint_column_usage", "column_name", "name"},
  178. {"information_schema", "constraint_column_usage", "constraint_catalog", "name"},
  179. {"information_schema", "constraint_column_usage", "constraint_name", "name"},
  180. {"information_schema", "constraint_column_usage", "constraint_schema", "name"},
  181. {"information_schema", "constraint_column_usage", "table_catalog", "name"},
  182. {"information_schema", "constraint_column_usage", "table_name", "name"},
  183. {"information_schema", "constraint_column_usage", "table_schema", "name"},
  184. {"information_schema", "constraint_table_usage", "constraint_catalog", "name"},
  185. {"information_schema", "constraint_table_usage", "constraint_name", "name"},
  186. {"information_schema", "constraint_table_usage", "constraint_schema", "name"},
  187. {"information_schema", "constraint_table_usage", "table_catalog", "name"},
  188. {"information_schema", "constraint_table_usage", "table_name", "name"},
  189. {"information_schema", "constraint_table_usage", "table_schema", "name"},
  190. {"information_schema", "data_type_privileges", "dtd_identifier", "name"},
  191. {"information_schema", "data_type_privileges", "object_catalog", "name"},
  192. {"information_schema", "data_type_privileges", "object_name", "name"},
  193. {"information_schema", "data_type_privileges", "object_schema", "name"},
  194. {"information_schema", "data_type_privileges", "object_type", "varchar"},
  195. {"information_schema", "domain_constraints", "constraint_catalog", "name"},
  196. {"information_schema", "domain_constraints", "constraint_name", "name"},
  197. {"information_schema", "domain_constraints", "constraint_schema", "name"},
  198. {"information_schema", "domain_constraints", "domain_catalog", "name"},
  199. {"information_schema", "domain_constraints", "domain_name", "name"},
  200. {"information_schema", "domain_constraints", "domain_schema", "name"},
  201. {"information_schema", "domain_constraints", "initially_deferred", "varchar"},
  202. {"information_schema", "domain_constraints", "is_deferrable", "varchar"},
  203. {"information_schema", "domain_udt_usage", "domain_catalog", "name"},
  204. {"information_schema", "domain_udt_usage", "domain_name", "name"},
  205. {"information_schema", "domain_udt_usage", "domain_schema", "name"},
  206. {"information_schema", "domain_udt_usage", "udt_catalog", "name"},
  207. {"information_schema", "domain_udt_usage", "udt_name", "name"},
  208. {"information_schema", "domain_udt_usage", "udt_schema", "name"},
  209. {"information_schema", "domains", "character_maximum_length", "int4"},
  210. {"information_schema", "domains", "character_octet_length", "int4"},
  211. {"information_schema", "domains", "character_set_catalog", "name"},
  212. {"information_schema", "domains", "character_set_name", "name"},
  213. {"information_schema", "domains", "character_set_schema", "name"},
  214. {"information_schema", "domains", "collation_catalog", "name"},
  215. {"information_schema", "domains", "collation_name", "name"},
  216. {"information_schema", "domains", "collation_schema", "name"},
  217. {"information_schema", "domains", "data_type", "varchar"},
  218. {"information_schema", "domains", "datetime_precision", "int4"},
  219. {"information_schema", "domains", "domain_catalog", "name"},
  220. {"information_schema", "domains", "domain_default", "varchar"},
  221. {"information_schema", "domains", "domain_name", "name"},
  222. {"information_schema", "domains", "domain_schema", "name"},
  223. {"information_schema", "domains", "dtd_identifier", "name"},
  224. {"information_schema", "domains", "interval_precision", "int4"},
  225. {"information_schema", "domains", "interval_type", "varchar"},
  226. {"information_schema", "domains", "maximum_cardinality", "int4"},
  227. {"information_schema", "domains", "numeric_precision", "int4"},
  228. {"information_schema", "domains", "numeric_precision_radix", "int4"},
  229. {"information_schema", "domains", "numeric_scale", "int4"},
  230. {"information_schema", "domains", "scope_catalog", "name"},
  231. {"information_schema", "domains", "scope_name", "name"},
  232. {"information_schema", "domains", "scope_schema", "name"},
  233. {"information_schema", "domains", "udt_catalog", "name"},
  234. {"information_schema", "domains", "udt_name", "name"},
  235. {"information_schema", "domains", "udt_schema", "name"},
  236. {"information_schema", "element_types", "character_maximum_length", "int4"},
  237. {"information_schema", "element_types", "character_octet_length", "int4"},
  238. {"information_schema", "element_types", "character_set_catalog", "name"},
  239. {"information_schema", "element_types", "character_set_name", "name"},
  240. {"information_schema", "element_types", "character_set_schema", "name"},
  241. {"information_schema", "element_types", "collation_catalog", "name"},
  242. {"information_schema", "element_types", "collation_name", "name"},
  243. {"information_schema", "element_types", "collation_schema", "name"},
  244. {"information_schema", "element_types", "collection_type_identifier", "name"},
  245. {"information_schema", "element_types", "data_type", "varchar"},
  246. {"information_schema", "element_types", "datetime_precision", "int4"},
  247. {"information_schema", "element_types", "domain_default", "varchar"},
  248. {"information_schema", "element_types", "dtd_identifier", "name"},
  249. {"information_schema", "element_types", "interval_precision", "int4"},
  250. {"information_schema", "element_types", "interval_type", "varchar"},
  251. {"information_schema", "element_types", "maximum_cardinality", "int4"},
  252. {"information_schema", "element_types", "numeric_precision", "int4"},
  253. {"information_schema", "element_types", "numeric_precision_radix", "int4"},
  254. {"information_schema", "element_types", "numeric_scale", "int4"},
  255. {"information_schema", "element_types", "object_catalog", "name"},
  256. {"information_schema", "element_types", "object_name", "name"},
  257. {"information_schema", "element_types", "object_schema", "name"},
  258. {"information_schema", "element_types", "object_type", "varchar"},
  259. {"information_schema", "element_types", "scope_catalog", "name"},
  260. {"information_schema", "element_types", "scope_name", "name"},
  261. {"information_schema", "element_types", "scope_schema", "name"},
  262. {"information_schema", "element_types", "udt_catalog", "name"},
  263. {"information_schema", "element_types", "udt_name", "name"},
  264. {"information_schema", "element_types", "udt_schema", "name"},
  265. {"information_schema", "enabled_roles", "role_name", "name"},
  266. {"information_schema", "foreign_data_wrapper_options", "foreign_data_wrapper_catalog", "name"},
  267. {"information_schema", "foreign_data_wrapper_options", "foreign_data_wrapper_name", "name"},
  268. {"information_schema", "foreign_data_wrapper_options", "option_name", "name"},
  269. {"information_schema", "foreign_data_wrapper_options", "option_value", "varchar"},
  270. {"information_schema", "foreign_data_wrappers", "authorization_identifier", "name"},
  271. {"information_schema", "foreign_data_wrappers", "foreign_data_wrapper_catalog", "name"},
  272. {"information_schema", "foreign_data_wrappers", "foreign_data_wrapper_language", "varchar"},
  273. {"information_schema", "foreign_data_wrappers", "foreign_data_wrapper_name", "name"},
  274. {"information_schema", "foreign_data_wrappers", "library_name", "varchar"},
  275. {"information_schema", "foreign_server_options", "foreign_server_catalog", "name"},
  276. {"information_schema", "foreign_server_options", "foreign_server_name", "name"},
  277. {"information_schema", "foreign_server_options", "option_name", "name"},
  278. {"information_schema", "foreign_server_options", "option_value", "varchar"},
  279. {"information_schema", "foreign_servers", "authorization_identifier", "name"},
  280. {"information_schema", "foreign_servers", "foreign_data_wrapper_catalog", "name"},
  281. {"information_schema", "foreign_servers", "foreign_data_wrapper_name", "name"},
  282. {"information_schema", "foreign_servers", "foreign_server_catalog", "name"},
  283. {"information_schema", "foreign_servers", "foreign_server_name", "name"},
  284. {"information_schema", "foreign_servers", "foreign_server_type", "varchar"},
  285. {"information_schema", "foreign_servers", "foreign_server_version", "varchar"},
  286. {"information_schema", "foreign_table_options", "foreign_table_catalog", "name"},
  287. {"information_schema", "foreign_table_options", "foreign_table_name", "name"},
  288. {"information_schema", "foreign_table_options", "foreign_table_schema", "name"},
  289. {"information_schema", "foreign_table_options", "option_name", "name"},
  290. {"information_schema", "foreign_table_options", "option_value", "varchar"},
  291. {"information_schema", "foreign_tables", "foreign_server_catalog", "name"},
  292. {"information_schema", "foreign_tables", "foreign_server_name", "name"},
  293. {"information_schema", "foreign_tables", "foreign_table_catalog", "name"},
  294. {"information_schema", "foreign_tables", "foreign_table_name", "name"},
  295. {"information_schema", "foreign_tables", "foreign_table_schema", "name"},
  296. {"information_schema", "information_schema_catalog_name", "catalog_name", "name"},
  297. {"information_schema", "key_column_usage", "column_name", "name"},
  298. {"information_schema", "key_column_usage", "constraint_catalog", "name"},
  299. {"information_schema", "key_column_usage", "constraint_name", "name"},
  300. {"information_schema", "key_column_usage", "constraint_schema", "name"},
  301. {"information_schema", "key_column_usage", "ordinal_position", "int4"},
  302. {"information_schema", "key_column_usage", "position_in_unique_constraint", "int4"},
  303. {"information_schema", "key_column_usage", "table_catalog", "name"},
  304. {"information_schema", "key_column_usage", "table_name", "name"},
  305. {"information_schema", "key_column_usage", "table_schema", "name"},
  306. {"information_schema", "parameters", "as_locator", "varchar"},
  307. {"information_schema", "parameters", "character_maximum_length", "int4"},
  308. {"information_schema", "parameters", "character_octet_length", "int4"},
  309. {"information_schema", "parameters", "character_set_catalog", "name"},
  310. {"information_schema", "parameters", "character_set_name", "name"},
  311. {"information_schema", "parameters", "character_set_schema", "name"},
  312. {"information_schema", "parameters", "collation_catalog", "name"},
  313. {"information_schema", "parameters", "collation_name", "name"},
  314. {"information_schema", "parameters", "collation_schema", "name"},
  315. {"information_schema", "parameters", "data_type", "varchar"},
  316. {"information_schema", "parameters", "datetime_precision", "int4"},
  317. {"information_schema", "parameters", "dtd_identifier", "name"},
  318. {"information_schema", "parameters", "interval_precision", "int4"},
  319. {"information_schema", "parameters", "interval_type", "varchar"},
  320. {"information_schema", "parameters", "is_result", "varchar"},
  321. {"information_schema", "parameters", "maximum_cardinality", "int4"},
  322. {"information_schema", "parameters", "numeric_precision", "int4"},
  323. {"information_schema", "parameters", "numeric_precision_radix", "int4"},
  324. {"information_schema", "parameters", "numeric_scale", "int4"},
  325. {"information_schema", "parameters", "ordinal_position", "int4"},
  326. {"information_schema", "parameters", "parameter_default", "varchar"},
  327. {"information_schema", "parameters", "parameter_mode", "varchar"},
  328. {"information_schema", "parameters", "parameter_name", "name"},
  329. {"information_schema", "parameters", "scope_catalog", "name"},
  330. {"information_schema", "parameters", "scope_name", "name"},
  331. {"information_schema", "parameters", "scope_schema", "name"},
  332. {"information_schema", "parameters", "specific_catalog", "name"},
  333. {"information_schema", "parameters", "specific_name", "name"},
  334. {"information_schema", "parameters", "specific_schema", "name"},
  335. {"information_schema", "parameters", "udt_catalog", "name"},
  336. {"information_schema", "parameters", "udt_name", "name"},
  337. {"information_schema", "parameters", "udt_schema", "name"},
  338. {"information_schema", "referential_constraints", "constraint_catalog", "name"},
  339. {"information_schema", "referential_constraints", "constraint_name", "name"},
  340. {"information_schema", "referential_constraints", "constraint_schema", "name"},
  341. {"information_schema", "referential_constraints", "delete_rule", "varchar"},
  342. {"information_schema", "referential_constraints", "match_option", "varchar"},
  343. {"information_schema", "referential_constraints", "unique_constraint_catalog", "name"},
  344. {"information_schema", "referential_constraints", "unique_constraint_name", "name"},
  345. {"information_schema", "referential_constraints", "unique_constraint_schema", "name"},
  346. {"information_schema", "referential_constraints", "update_rule", "varchar"},
  347. {"information_schema", "role_column_grants", "column_name", "name"},
  348. {"information_schema", "role_column_grants", "grantee", "name"},
  349. {"information_schema", "role_column_grants", "grantor", "name"},
  350. {"information_schema", "role_column_grants", "is_grantable", "varchar"},
  351. {"information_schema", "role_column_grants", "privilege_type", "varchar"},
  352. {"information_schema", "role_column_grants", "table_catalog", "name"},
  353. {"information_schema", "role_column_grants", "table_name", "name"},
  354. {"information_schema", "role_column_grants", "table_schema", "name"},
  355. {"information_schema", "role_routine_grants", "grantee", "name"},
  356. {"information_schema", "role_routine_grants", "grantor", "name"},
  357. {"information_schema", "role_routine_grants", "is_grantable", "varchar"},
  358. {"information_schema", "role_routine_grants", "privilege_type", "varchar"},
  359. {"information_schema", "role_routine_grants", "routine_catalog", "name"},
  360. {"information_schema", "role_routine_grants", "routine_name", "name"},
  361. {"information_schema", "role_routine_grants", "routine_schema", "name"},
  362. {"information_schema", "role_routine_grants", "specific_catalog", "name"},
  363. {"information_schema", "role_routine_grants", "specific_name", "name"},
  364. {"information_schema", "role_routine_grants", "specific_schema", "name"},
  365. {"information_schema", "role_table_grants", "grantee", "name"},
  366. {"information_schema", "role_table_grants", "grantor", "name"},
  367. {"information_schema", "role_table_grants", "is_grantable", "varchar"},
  368. {"information_schema", "role_table_grants", "privilege_type", "varchar"},
  369. {"information_schema", "role_table_grants", "table_catalog", "name"},
  370. {"information_schema", "role_table_grants", "table_name", "name"},
  371. {"information_schema", "role_table_grants", "table_schema", "name"},
  372. {"information_schema", "role_table_grants", "with_hierarchy", "varchar"},
  373. {"information_schema", "role_udt_grants", "grantee", "name"},
  374. {"information_schema", "role_udt_grants", "grantor", "name"},
  375. {"information_schema", "role_udt_grants", "is_grantable", "varchar"},
  376. {"information_schema", "role_udt_grants", "privilege_type", "varchar"},
  377. {"information_schema", "role_udt_grants", "udt_catalog", "name"},
  378. {"information_schema", "role_udt_grants", "udt_name", "name"},
  379. {"information_schema", "role_udt_grants", "udt_schema", "name"},
  380. {"information_schema", "role_usage_grants", "grantee", "name"},
  381. {"information_schema", "role_usage_grants", "grantor", "name"},
  382. {"information_schema", "role_usage_grants", "is_grantable", "varchar"},
  383. {"information_schema", "role_usage_grants", "object_catalog", "name"},
  384. {"information_schema", "role_usage_grants", "object_name", "name"},
  385. {"information_schema", "role_usage_grants", "object_schema", "name"},
  386. {"information_schema", "role_usage_grants", "object_type", "varchar"},
  387. {"information_schema", "role_usage_grants", "privilege_type", "varchar"},
  388. {"information_schema", "routine_column_usage", "column_name", "name"},
  389. {"information_schema", "routine_column_usage", "routine_catalog", "name"},
  390. {"information_schema", "routine_column_usage", "routine_name", "name"},
  391. {"information_schema", "routine_column_usage", "routine_schema", "name"},
  392. {"information_schema", "routine_column_usage", "specific_catalog", "name"},
  393. {"information_schema", "routine_column_usage", "specific_name", "name"},
  394. {"information_schema", "routine_column_usage", "specific_schema", "name"},
  395. {"information_schema", "routine_column_usage", "table_catalog", "name"},
  396. {"information_schema", "routine_column_usage", "table_name", "name"},
  397. {"information_schema", "routine_column_usage", "table_schema", "name"},
  398. {"information_schema", "routine_privileges", "grantee", "name"},
  399. {"information_schema", "routine_privileges", "grantor", "name"},
  400. {"information_schema", "routine_privileges", "is_grantable", "varchar"},
  401. {"information_schema", "routine_privileges", "privilege_type", "varchar"},
  402. {"information_schema", "routine_privileges", "routine_catalog", "name"},
  403. {"information_schema", "routine_privileges", "routine_name", "name"},
  404. {"information_schema", "routine_privileges", "routine_schema", "name"},
  405. {"information_schema", "routine_privileges", "specific_catalog", "name"},
  406. {"information_schema", "routine_privileges", "specific_name", "name"},
  407. {"information_schema", "routine_privileges", "specific_schema", "name"},
  408. {"information_schema", "routine_routine_usage", "routine_catalog", "name"},
  409. {"information_schema", "routine_routine_usage", "routine_name", "name"},
  410. {"information_schema", "routine_routine_usage", "routine_schema", "name"},
  411. {"information_schema", "routine_routine_usage", "specific_catalog", "name"},
  412. {"information_schema", "routine_routine_usage", "specific_name", "name"},
  413. {"information_schema", "routine_routine_usage", "specific_schema", "name"},
  414. {"information_schema", "routine_sequence_usage", "routine_catalog", "name"},
  415. {"information_schema", "routine_sequence_usage", "routine_name", "name"},
  416. {"information_schema", "routine_sequence_usage", "routine_schema", "name"},
  417. {"information_schema", "routine_sequence_usage", "sequence_catalog", "name"},
  418. {"information_schema", "routine_sequence_usage", "sequence_name", "name"},
  419. {"information_schema", "routine_sequence_usage", "sequence_schema", "name"},
  420. {"information_schema", "routine_sequence_usage", "specific_catalog", "name"},
  421. {"information_schema", "routine_sequence_usage", "specific_name", "name"},
  422. {"information_schema", "routine_sequence_usage", "specific_schema", "name"},
  423. {"information_schema", "routine_table_usage", "routine_catalog", "name"},
  424. {"information_schema", "routine_table_usage", "routine_name", "name"},
  425. {"information_schema", "routine_table_usage", "routine_schema", "name"},
  426. {"information_schema", "routine_table_usage", "specific_catalog", "name"},
  427. {"information_schema", "routine_table_usage", "specific_name", "name"},
  428. {"information_schema", "routine_table_usage", "specific_schema", "name"},
  429. {"information_schema", "routine_table_usage", "table_catalog", "name"},
  430. {"information_schema", "routine_table_usage", "table_name", "name"},
  431. {"information_schema", "routine_table_usage", "table_schema", "name"},
  432. {"information_schema", "routines", "as_locator", "varchar"},
  433. {"information_schema", "routines", "character_maximum_length", "int4"},
  434. {"information_schema", "routines", "character_octet_length", "int4"},
  435. {"information_schema", "routines", "character_set_catalog", "name"},
  436. {"information_schema", "routines", "character_set_name", "name"},
  437. {"information_schema", "routines", "character_set_schema", "name"},
  438. {"information_schema", "routines", "collation_catalog", "name"},
  439. {"information_schema", "routines", "collation_name", "name"},
  440. {"information_schema", "routines", "collation_schema", "name"},
  441. {"information_schema", "routines", "created", "timestamptz"},
  442. {"information_schema", "routines", "data_type", "varchar"},
  443. {"information_schema", "routines", "datetime_precision", "int4"},
  444. {"information_schema", "routines", "dtd_identifier", "name"},
  445. {"information_schema", "routines", "external_language", "varchar"},
  446. {"information_schema", "routines", "external_name", "varchar"},
  447. {"information_schema", "routines", "interval_precision", "int4"},
  448. {"information_schema", "routines", "interval_type", "varchar"},
  449. {"information_schema", "routines", "is_deterministic", "varchar"},
  450. {"information_schema", "routines", "is_implicitly_invocable", "varchar"},
  451. {"information_schema", "routines", "is_null_call", "varchar"},
  452. {"information_schema", "routines", "is_udt_dependent", "varchar"},
  453. {"information_schema", "routines", "is_user_defined_cast", "varchar"},
  454. {"information_schema", "routines", "last_altered", "timestamptz"},
  455. {"information_schema", "routines", "max_dynamic_result_sets", "int4"},
  456. {"information_schema", "routines", "maximum_cardinality", "int4"},
  457. {"information_schema", "routines", "module_catalog", "name"},
  458. {"information_schema", "routines", "module_name", "name"},
  459. {"information_schema", "routines", "module_schema", "name"},
  460. {"information_schema", "routines", "new_savepoint_level", "varchar"},
  461. {"information_schema", "routines", "numeric_precision", "int4"},
  462. {"information_schema", "routines", "numeric_precision_radix", "int4"},
  463. {"information_schema", "routines", "numeric_scale", "int4"},
  464. {"information_schema", "routines", "parameter_style", "varchar"},
  465. {"information_schema", "routines", "result_cast_as_locator", "varchar"},
  466. {"information_schema", "routines", "result_cast_char_max_length", "int4"},
  467. {"information_schema", "routines", "result_cast_char_octet_length", "int4"},
  468. {"information_schema", "routines", "result_cast_char_set_catalog", "name"},
  469. {"information_schema", "routines", "result_cast_char_set_name", "name"},
  470. {"information_schema", "routines", "result_cast_char_set_schema", "name"},
  471. {"information_schema", "routines", "result_cast_collation_catalog", "name"},
  472. {"information_schema", "routines", "result_cast_collation_name", "name"},
  473. {"information_schema", "routines", "result_cast_collation_schema", "name"},
  474. {"information_schema", "routines", "result_cast_datetime_precision", "int4"},
  475. {"information_schema", "routines", "result_cast_dtd_identifier", "name"},
  476. {"information_schema", "routines", "result_cast_from_data_type", "varchar"},
  477. {"information_schema", "routines", "result_cast_interval_precision", "int4"},
  478. {"information_schema", "routines", "result_cast_interval_type", "varchar"},
  479. {"information_schema", "routines", "result_cast_maximum_cardinality", "int4"},
  480. {"information_schema", "routines", "result_cast_numeric_precision", "int4"},
  481. {"information_schema", "routines", "result_cast_numeric_precision_radix", "int4"},
  482. {"information_schema", "routines", "result_cast_numeric_scale", "int4"},
  483. {"information_schema", "routines", "result_cast_scope_catalog", "name"},
  484. {"information_schema", "routines", "result_cast_scope_name", "name"},
  485. {"information_schema", "routines", "result_cast_scope_schema", "name"},
  486. {"information_schema", "routines", "result_cast_type_udt_catalog", "name"},
  487. {"information_schema", "routines", "result_cast_type_udt_name", "name"},
  488. {"information_schema", "routines", "result_cast_type_udt_schema", "name"},
  489. {"information_schema", "routines", "routine_body", "varchar"},
  490. {"information_schema", "routines", "routine_catalog", "name"},
  491. {"information_schema", "routines", "routine_definition", "varchar"},
  492. {"information_schema", "routines", "routine_name", "name"},
  493. {"information_schema", "routines", "routine_schema", "name"},
  494. {"information_schema", "routines", "routine_type", "varchar"},
  495. {"information_schema", "routines", "schema_level_routine", "varchar"},
  496. {"information_schema", "routines", "scope_catalog", "name"},
  497. {"information_schema", "routines", "scope_name", "name"},
  498. {"information_schema", "routines", "scope_schema", "name"},
  499. {"information_schema", "routines", "security_type", "varchar"},
  500. {"information_schema", "routines", "specific_catalog", "name"},
  501. {"information_schema", "routines", "specific_name", "name"},
  502. {"information_schema", "routines", "specific_schema", "name"},
  503. {"information_schema", "routines", "sql_data_access", "varchar"},
  504. {"information_schema", "routines", "sql_path", "varchar"},
  505. {"information_schema", "routines", "to_sql_specific_catalog", "name"},
  506. {"information_schema", "routines", "to_sql_specific_name", "name"},
  507. {"information_schema", "routines", "to_sql_specific_schema", "name"},
  508. {"information_schema", "routines", "type_udt_catalog", "name"},
  509. {"information_schema", "routines", "type_udt_name", "name"},
  510. {"information_schema", "routines", "type_udt_schema", "name"},
  511. {"information_schema", "routines", "udt_catalog", "name"},
  512. {"information_schema", "routines", "udt_name", "name"},
  513. {"information_schema", "routines", "udt_schema", "name"},
  514. {"information_schema", "schemata", "catalog_name", "name"},
  515. {"information_schema", "schemata", "default_character_set_catalog", "name"},
  516. {"information_schema", "schemata", "default_character_set_name", "name"},
  517. {"information_schema", "schemata", "default_character_set_schema", "name"},
  518. {"information_schema", "schemata", "schema_name", "name"},
  519. {"information_schema", "schemata", "schema_owner", "name"},
  520. {"information_schema", "schemata", "sql_path", "varchar"},
  521. {"information_schema", "sequences", "cycle_option", "varchar"},
  522. {"information_schema", "sequences", "data_type", "varchar"},
  523. {"information_schema", "sequences", "increment", "varchar"},
  524. {"information_schema", "sequences", "maximum_value", "varchar"},
  525. {"information_schema", "sequences", "minimum_value", "varchar"},
  526. {"information_schema", "sequences", "numeric_precision", "int4"},
  527. {"information_schema", "sequences", "numeric_precision_radix", "int4"},
  528. {"information_schema", "sequences", "numeric_scale", "int4"},
  529. {"information_schema", "sequences", "sequence_catalog", "name"},
  530. {"information_schema", "sequences", "sequence_name", "name"},
  531. {"information_schema", "sequences", "sequence_schema", "name"},
  532. {"information_schema", "sequences", "start_value", "varchar"},
  533. {"information_schema", "sql_features", "comments", "varchar"},
  534. {"information_schema", "sql_features", "feature_id", "varchar"},
  535. {"information_schema", "sql_features", "feature_name", "varchar"},
  536. {"information_schema", "sql_features", "is_supported", "varchar"},
  537. {"information_schema", "sql_features", "is_verified_by", "varchar"},
  538. {"information_schema", "sql_features", "sub_feature_id", "varchar"},
  539. {"information_schema", "sql_features", "sub_feature_name", "varchar"},
  540. {"information_schema", "sql_implementation_info", "character_value", "varchar"},
  541. {"information_schema", "sql_implementation_info", "comments", "varchar"},
  542. {"information_schema", "sql_implementation_info", "implementation_info_id", "varchar"},
  543. {"information_schema", "sql_implementation_info", "implementation_info_name", "varchar"},
  544. {"information_schema", "sql_implementation_info", "integer_value", "int4"},
  545. {"information_schema", "sql_parts", "comments", "varchar"},
  546. {"information_schema", "sql_parts", "feature_id", "varchar"},
  547. {"information_schema", "sql_parts", "feature_name", "varchar"},
  548. {"information_schema", "sql_parts", "is_supported", "varchar"},
  549. {"information_schema", "sql_parts", "is_verified_by", "varchar"},
  550. {"information_schema", "sql_sizing", "comments", "varchar"},
  551. {"information_schema", "sql_sizing", "sizing_id", "int4"},
  552. {"information_schema", "sql_sizing", "sizing_name", "varchar"},
  553. {"information_schema", "sql_sizing", "supported_value", "int4"},
  554. {"information_schema", "table_constraints", "constraint_catalog", "name"},
  555. {"information_schema", "table_constraints", "constraint_name", "name"},
  556. {"information_schema", "table_constraints", "constraint_schema", "name"},
  557. {"information_schema", "table_constraints", "constraint_type", "varchar"},
  558. {"information_schema", "table_constraints", "enforced", "varchar"},
  559. {"information_schema", "table_constraints", "initially_deferred", "varchar"},
  560. {"information_schema", "table_constraints", "is_deferrable", "varchar"},
  561. {"information_schema", "table_constraints", "nulls_distinct", "varchar"},
  562. {"information_schema", "table_constraints", "table_catalog", "name"},
  563. {"information_schema", "table_constraints", "table_name", "name"},
  564. {"information_schema", "table_constraints", "table_schema", "name"},
  565. {"information_schema", "table_privileges", "grantee", "name"},
  566. {"information_schema", "table_privileges", "grantor", "name"},
  567. {"information_schema", "table_privileges", "is_grantable", "varchar"},
  568. {"information_schema", "table_privileges", "privilege_type", "varchar"},
  569. {"information_schema", "table_privileges", "table_catalog", "name"},
  570. {"information_schema", "table_privileges", "table_name", "name"},
  571. {"information_schema", "table_privileges", "table_schema", "name"},
  572. {"information_schema", "table_privileges", "with_hierarchy", "varchar"},
  573. {"information_schema", "tables", "commit_action", "varchar"},
  574. {"information_schema", "tables", "is_insertable_into", "varchar"},
  575. {"information_schema", "tables", "is_typed", "varchar"},
  576. {"information_schema", "tables", "reference_generation", "varchar"},
  577. {"information_schema", "tables", "self_referencing_column_name", "name"},
  578. {"information_schema", "tables", "table_catalog", "name"},
  579. {"information_schema", "tables", "table_name", "name"},
  580. {"information_schema", "tables", "table_schema", "name"},
  581. {"information_schema", "tables", "table_type", "varchar"},
  582. {"information_schema", "tables", "user_defined_type_catalog", "name"},
  583. {"information_schema", "tables", "user_defined_type_name", "name"},
  584. {"information_schema", "tables", "user_defined_type_schema", "name"},
  585. {"information_schema", "transforms", "group_name", "name"},
  586. {"information_schema", "transforms", "specific_catalog", "name"},
  587. {"information_schema", "transforms", "specific_name", "name"},
  588. {"information_schema", "transforms", "specific_schema", "name"},
  589. {"information_schema", "transforms", "transform_type", "varchar"},
  590. {"information_schema", "transforms", "udt_catalog", "name"},
  591. {"information_schema", "transforms", "udt_name", "name"},
  592. {"information_schema", "transforms", "udt_schema", "name"},
  593. {"information_schema", "triggered_update_columns", "event_object_catalog", "name"},
  594. {"information_schema", "triggered_update_columns", "event_object_column", "name"},
  595. {"information_schema", "triggered_update_columns", "event_object_schema", "name"},
  596. {"information_schema", "triggered_update_columns", "event_object_table", "name"},
  597. {"information_schema", "triggered_update_columns", "trigger_catalog", "name"},
  598. {"information_schema", "triggered_update_columns", "trigger_name", "name"},
  599. {"information_schema", "triggered_update_columns", "trigger_schema", "name"},
  600. {"information_schema", "triggers", "action_condition", "varchar"},
  601. {"information_schema", "triggers", "action_order", "int4"},
  602. {"information_schema", "triggers", "action_orientation", "varchar"},
  603. {"information_schema", "triggers", "action_reference_new_row", "name"},
  604. {"information_schema", "triggers", "action_reference_new_table", "name"},
  605. {"information_schema", "triggers", "action_reference_old_row", "name"},
  606. {"information_schema", "triggers", "action_reference_old_table", "name"},
  607. {"information_schema", "triggers", "action_statement", "varchar"},
  608. {"information_schema", "triggers", "action_timing", "varchar"},
  609. {"information_schema", "triggers", "created", "timestamptz"},
  610. {"information_schema", "triggers", "event_manipulation", "varchar"},
  611. {"information_schema", "triggers", "event_object_catalog", "name"},
  612. {"information_schema", "triggers", "event_object_schema", "name"},
  613. {"information_schema", "triggers", "event_object_table", "name"},
  614. {"information_schema", "triggers", "trigger_catalog", "name"},
  615. {"information_schema", "triggers", "trigger_name", "name"},
  616. {"information_schema", "triggers", "trigger_schema", "name"},
  617. {"information_schema", "udt_privileges", "grantee", "name"},
  618. {"information_schema", "udt_privileges", "grantor", "name"},
  619. {"information_schema", "udt_privileges", "is_grantable", "varchar"},
  620. {"information_schema", "udt_privileges", "privilege_type", "varchar"},
  621. {"information_schema", "udt_privileges", "udt_catalog", "name"},
  622. {"information_schema", "udt_privileges", "udt_name", "name"},
  623. {"information_schema", "udt_privileges", "udt_schema", "name"},
  624. {"information_schema", "usage_privileges", "grantee", "name"},
  625. {"information_schema", "usage_privileges", "grantor", "name"},
  626. {"information_schema", "usage_privileges", "is_grantable", "varchar"},
  627. {"information_schema", "usage_privileges", "object_catalog", "name"},
  628. {"information_schema", "usage_privileges", "object_name", "name"},
  629. {"information_schema", "usage_privileges", "object_schema", "name"},
  630. {"information_schema", "usage_privileges", "object_type", "varchar"},
  631. {"information_schema", "usage_privileges", "privilege_type", "varchar"},
  632. {"information_schema", "user_defined_types", "character_maximum_length", "int4"},
  633. {"information_schema", "user_defined_types", "character_octet_length", "int4"},
  634. {"information_schema", "user_defined_types", "character_set_catalog", "name"},
  635. {"information_schema", "user_defined_types", "character_set_name", "name"},
  636. {"information_schema", "user_defined_types", "character_set_schema", "name"},
  637. {"information_schema", "user_defined_types", "collation_catalog", "name"},
  638. {"information_schema", "user_defined_types", "collation_name", "name"},
  639. {"information_schema", "user_defined_types", "collation_schema", "name"},
  640. {"information_schema", "user_defined_types", "data_type", "varchar"},
  641. {"information_schema", "user_defined_types", "datetime_precision", "int4"},
  642. {"information_schema", "user_defined_types", "interval_precision", "int4"},
  643. {"information_schema", "user_defined_types", "interval_type", "varchar"},
  644. {"information_schema", "user_defined_types", "is_final", "varchar"},
  645. {"information_schema", "user_defined_types", "is_instantiable", "varchar"},
  646. {"information_schema", "user_defined_types", "numeric_precision", "int4"},
  647. {"information_schema", "user_defined_types", "numeric_precision_radix", "int4"},
  648. {"information_schema", "user_defined_types", "numeric_scale", "int4"},
  649. {"information_schema", "user_defined_types", "ordering_category", "varchar"},
  650. {"information_schema", "user_defined_types", "ordering_form", "varchar"},
  651. {"information_schema", "user_defined_types", "ordering_routine_catalog", "name"},
  652. {"information_schema", "user_defined_types", "ordering_routine_name", "name"},
  653. {"information_schema", "user_defined_types", "ordering_routine_schema", "name"},
  654. {"information_schema", "user_defined_types", "ref_dtd_identifier", "name"},
  655. {"information_schema", "user_defined_types", "reference_type", "varchar"},
  656. {"information_schema", "user_defined_types", "source_dtd_identifier", "name"},
  657. {"information_schema", "user_defined_types", "user_defined_type_catalog", "name"},
  658. {"information_schema", "user_defined_types", "user_defined_type_category", "varchar"},
  659. {"information_schema", "user_defined_types", "user_defined_type_name", "name"},
  660. {"information_schema", "user_defined_types", "user_defined_type_schema", "name"},
  661. {"information_schema", "user_mapping_options", "authorization_identifier", "name"},
  662. {"information_schema", "user_mapping_options", "foreign_server_catalog", "name"},
  663. {"information_schema", "user_mapping_options", "foreign_server_name", "name"},
  664. {"information_schema", "user_mapping_options", "option_name", "name"},
  665. {"information_schema", "user_mapping_options", "option_value", "varchar"},
  666. {"information_schema", "user_mappings", "authorization_identifier", "name"},
  667. {"information_schema", "user_mappings", "foreign_server_catalog", "name"},
  668. {"information_schema", "user_mappings", "foreign_server_name", "name"},
  669. {"information_schema", "view_column_usage", "column_name", "name"},
  670. {"information_schema", "view_column_usage", "table_catalog", "name"},
  671. {"information_schema", "view_column_usage", "table_name", "name"},
  672. {"information_schema", "view_column_usage", "table_schema", "name"},
  673. {"information_schema", "view_column_usage", "view_catalog", "name"},
  674. {"information_schema", "view_column_usage", "view_name", "name"},
  675. {"information_schema", "view_column_usage", "view_schema", "name"},
  676. {"information_schema", "view_routine_usage", "specific_catalog", "name"},
  677. {"information_schema", "view_routine_usage", "specific_name", "name"},
  678. {"information_schema", "view_routine_usage", "specific_schema", "name"},
  679. {"information_schema", "view_routine_usage", "table_catalog", "name"},
  680. {"information_schema", "view_routine_usage", "table_name", "name"},
  681. {"information_schema", "view_routine_usage", "table_schema", "name"},
  682. {"information_schema", "view_table_usage", "table_catalog", "name"},
  683. {"information_schema", "view_table_usage", "table_name", "name"},
  684. {"information_schema", "view_table_usage", "table_schema", "name"},
  685. {"information_schema", "view_table_usage", "view_catalog", "name"},
  686. {"information_schema", "view_table_usage", "view_name", "name"},
  687. {"information_schema", "view_table_usage", "view_schema", "name"},
  688. {"information_schema", "views", "check_option", "varchar"},
  689. {"information_schema", "views", "is_insertable_into", "varchar"},
  690. {"information_schema", "views", "is_trigger_deletable", "varchar"},
  691. {"information_schema", "views", "is_trigger_insertable_into", "varchar"},
  692. {"information_schema", "views", "is_trigger_updatable", "varchar"},
  693. {"information_schema", "views", "is_updatable", "varchar"},
  694. {"information_schema", "views", "table_catalog", "name"},
  695. {"information_schema", "views", "table_name", "name"},
  696. {"information_schema", "views", "table_schema", "name"},
  697. {"information_schema", "views", "view_definition", "varchar"},
  698. {"pg_catalog", "pg_aggregate", "aggcombinefn", "regproc"},
  699. {"pg_catalog", "pg_aggregate", "aggdeserialfn", "regproc"},
  700. {"pg_catalog", "pg_aggregate", "aggfinalextra", "bool"},
  701. {"pg_catalog", "pg_aggregate", "aggfinalfn", "regproc"},
  702. {"pg_catalog", "pg_aggregate", "aggfinalmodify", "char"},
  703. {"pg_catalog", "pg_aggregate", "aggfnoid", "regproc"},
  704. {"pg_catalog", "pg_aggregate", "agginitval", "text"},
  705. {"pg_catalog", "pg_aggregate", "aggkind", "char"},
  706. {"pg_catalog", "pg_aggregate", "aggmfinalextra", "bool"},
  707. {"pg_catalog", "pg_aggregate", "aggmfinalfn", "regproc"},
  708. {"pg_catalog", "pg_aggregate", "aggmfinalmodify", "char"},
  709. {"pg_catalog", "pg_aggregate", "aggminitval", "text"},
  710. {"pg_catalog", "pg_aggregate", "aggminvtransfn", "regproc"},
  711. {"pg_catalog", "pg_aggregate", "aggmtransfn", "regproc"},
  712. {"pg_catalog", "pg_aggregate", "aggmtransspace", "int4"},
  713. {"pg_catalog", "pg_aggregate", "aggmtranstype", "oid"},
  714. {"pg_catalog", "pg_aggregate", "aggnumdirectargs", "int2"},
  715. {"pg_catalog", "pg_aggregate", "aggserialfn", "regproc"},
  716. {"pg_catalog", "pg_aggregate", "aggsortop", "oid"},
  717. {"pg_catalog", "pg_aggregate", "aggtransfn", "regproc"},
  718. {"pg_catalog", "pg_aggregate", "aggtransspace", "int4"},
  719. {"pg_catalog", "pg_aggregate", "aggtranstype", "oid"},
  720. {"pg_catalog", "pg_am", "amhandler", "regproc"},
  721. {"pg_catalog", "pg_am", "amname", "name"},
  722. {"pg_catalog", "pg_am", "amtype", "char"},
  723. {"pg_catalog", "pg_am", "oid", "oid"},
  724. {"pg_catalog", "pg_amop", "amopfamily", "oid"},
  725. {"pg_catalog", "pg_amop", "amoplefttype", "oid"},
  726. {"pg_catalog", "pg_amop", "amopmethod", "oid"},
  727. {"pg_catalog", "pg_amop", "amopopr", "oid"},
  728. {"pg_catalog", "pg_amop", "amoppurpose", "char"},
  729. {"pg_catalog", "pg_amop", "amoprighttype", "oid"},
  730. {"pg_catalog", "pg_amop", "amopsortfamily", "oid"},
  731. {"pg_catalog", "pg_amop", "amopstrategy", "int2"},
  732. {"pg_catalog", "pg_amop", "oid", "oid"},
  733. {"pg_catalog", "pg_amproc", "amproc", "regproc"},
  734. {"pg_catalog", "pg_amproc", "amprocfamily", "oid"},
  735. {"pg_catalog", "pg_amproc", "amproclefttype", "oid"},
  736. {"pg_catalog", "pg_amproc", "amprocnum", "int2"},
  737. {"pg_catalog", "pg_amproc", "amprocrighttype", "oid"},
  738. {"pg_catalog", "pg_amproc", "oid", "oid"},
  739. {"pg_catalog", "pg_attrdef", "adbin", "pg_node_tree"},
  740. {"pg_catalog", "pg_attrdef", "adnum", "int2"},
  741. {"pg_catalog", "pg_attrdef", "adrelid", "oid"},
  742. {"pg_catalog", "pg_attrdef", "oid", "oid"},
  743. {"pg_catalog", "pg_attribute", "attacl", "_aclitem"},
  744. {"pg_catalog", "pg_attribute", "attalign", "char"},
  745. {"pg_catalog", "pg_attribute", "attbyval", "bool"},
  746. {"pg_catalog", "pg_attribute", "attcacheoff", "int4"},
  747. {"pg_catalog", "pg_attribute", "attcollation", "oid"},
  748. {"pg_catalog", "pg_attribute", "attcompression", "char"},
  749. {"pg_catalog", "pg_attribute", "attfdwoptions", "_text"},
  750. {"pg_catalog", "pg_attribute", "attgenerated", "char"},
  751. {"pg_catalog", "pg_attribute", "atthasdef", "bool"},
  752. {"pg_catalog", "pg_attribute", "atthasmissing", "bool"},
  753. {"pg_catalog", "pg_attribute", "attidentity", "char"},
  754. {"pg_catalog", "pg_attribute", "attinhcount", "int2"},
  755. {"pg_catalog", "pg_attribute", "attisdropped", "bool"},
  756. {"pg_catalog", "pg_attribute", "attislocal", "bool"},
  757. {"pg_catalog", "pg_attribute", "attlen", "int2"},
  758. {"pg_catalog", "pg_attribute", "attmissingval", "anyarray"},
  759. {"pg_catalog", "pg_attribute", "attname", "name"},
  760. {"pg_catalog", "pg_attribute", "attndims", "int2"},
  761. {"pg_catalog", "pg_attribute", "attnotnull", "bool"},
  762. {"pg_catalog", "pg_attribute", "attnum", "int2"},
  763. {"pg_catalog", "pg_attribute", "attoptions", "_text"},
  764. {"pg_catalog", "pg_attribute", "attrelid", "oid"},
  765. {"pg_catalog", "pg_attribute", "attstattarget", "int2"},
  766. {"pg_catalog", "pg_attribute", "attstorage", "char"},
  767. {"pg_catalog", "pg_attribute", "atttypid", "oid"},
  768. {"pg_catalog", "pg_attribute", "atttypmod", "int4"},
  769. {"pg_catalog", "pg_auth_members", "admin_option", "bool"},
  770. {"pg_catalog", "pg_auth_members", "grantor", "oid"},
  771. {"pg_catalog", "pg_auth_members", "inherit_option", "bool"},
  772. {"pg_catalog", "pg_auth_members", "member", "oid"},
  773. {"pg_catalog", "pg_auth_members", "oid", "oid"},
  774. {"pg_catalog", "pg_auth_members", "roleid", "oid"},
  775. {"pg_catalog", "pg_auth_members", "set_option", "bool"},
  776. {"pg_catalog", "pg_authid", "oid", "oid"},
  777. {"pg_catalog", "pg_authid", "rolbypassrls", "bool"},
  778. {"pg_catalog", "pg_authid", "rolcanlogin", "bool"},
  779. {"pg_catalog", "pg_authid", "rolconnlimit", "int4"},
  780. {"pg_catalog", "pg_authid", "rolcreatedb", "bool"},
  781. {"pg_catalog", "pg_authid", "rolcreaterole", "bool"},
  782. {"pg_catalog", "pg_authid", "rolinherit", "bool"},
  783. {"pg_catalog", "pg_authid", "rolname", "name"},
  784. {"pg_catalog", "pg_authid", "rolpassword", "text"},
  785. {"pg_catalog", "pg_authid", "rolreplication", "bool"},
  786. {"pg_catalog", "pg_authid", "rolsuper", "bool"},
  787. {"pg_catalog", "pg_authid", "rolvaliduntil", "timestamptz"},
  788. {"pg_catalog", "pg_available_extension_versions", "comment", "text"},
  789. {"pg_catalog", "pg_available_extension_versions", "installed", "bool"},
  790. {"pg_catalog", "pg_available_extension_versions", "name", "name"},
  791. {"pg_catalog", "pg_available_extension_versions", "relocatable", "bool"},
  792. {"pg_catalog", "pg_available_extension_versions", "requires", "_name"},
  793. {"pg_catalog", "pg_available_extension_versions", "schema", "name"},
  794. {"pg_catalog", "pg_available_extension_versions", "superuser", "bool"},
  795. {"pg_catalog", "pg_available_extension_versions", "trusted", "bool"},
  796. {"pg_catalog", "pg_available_extension_versions", "version", "text"},
  797. {"pg_catalog", "pg_available_extensions", "comment", "text"},
  798. {"pg_catalog", "pg_available_extensions", "default_version", "text"},
  799. {"pg_catalog", "pg_available_extensions", "installed_version", "text"},
  800. {"pg_catalog", "pg_available_extensions", "name", "name"},
  801. {"pg_catalog", "pg_backend_memory_contexts", "free_bytes", "int8"},
  802. {"pg_catalog", "pg_backend_memory_contexts", "free_chunks", "int8"},
  803. {"pg_catalog", "pg_backend_memory_contexts", "ident", "text"},
  804. {"pg_catalog", "pg_backend_memory_contexts", "level", "int4"},
  805. {"pg_catalog", "pg_backend_memory_contexts", "name", "text"},
  806. {"pg_catalog", "pg_backend_memory_contexts", "parent", "text"},
  807. {"pg_catalog", "pg_backend_memory_contexts", "total_bytes", "int8"},
  808. {"pg_catalog", "pg_backend_memory_contexts", "total_nblocks", "int8"},
  809. {"pg_catalog", "pg_backend_memory_contexts", "used_bytes", "int8"},
  810. {"pg_catalog", "pg_cast", "castcontext", "char"},
  811. {"pg_catalog", "pg_cast", "castfunc", "oid"},
  812. {"pg_catalog", "pg_cast", "castmethod", "char"},
  813. {"pg_catalog", "pg_cast", "castsource", "oid"},
  814. {"pg_catalog", "pg_cast", "casttarget", "oid"},
  815. {"pg_catalog", "pg_cast", "oid", "oid"},
  816. {"pg_catalog", "pg_class", "oid", "oid"},
  817. {"pg_catalog", "pg_class", "relacl", "_aclitem"},
  818. {"pg_catalog", "pg_class", "relallvisible", "int4"},
  819. {"pg_catalog", "pg_class", "relam", "oid"},
  820. {"pg_catalog", "pg_class", "relchecks", "int2"},
  821. {"pg_catalog", "pg_class", "relfilenode", "oid"},
  822. {"pg_catalog", "pg_class", "relforcerowsecurity", "bool"},
  823. {"pg_catalog", "pg_class", "relfrozenxid", "xid"},
  824. {"pg_catalog", "pg_class", "relhasindex", "bool"},
  825. {"pg_catalog", "pg_class", "relhasrules", "bool"},
  826. {"pg_catalog", "pg_class", "relhassubclass", "bool"},
  827. {"pg_catalog", "pg_class", "relhastriggers", "bool"},
  828. {"pg_catalog", "pg_class", "relispartition", "bool"},
  829. {"pg_catalog", "pg_class", "relispopulated", "bool"},
  830. {"pg_catalog", "pg_class", "relisshared", "bool"},
  831. {"pg_catalog", "pg_class", "relkind", "char"},
  832. {"pg_catalog", "pg_class", "relminmxid", "xid"},
  833. {"pg_catalog", "pg_class", "relname", "name"},
  834. {"pg_catalog", "pg_class", "relnamespace", "oid"},
  835. {"pg_catalog", "pg_class", "relnatts", "int2"},
  836. {"pg_catalog", "pg_class", "reloftype", "oid"},
  837. {"pg_catalog", "pg_class", "reloptions", "_text"},
  838. {"pg_catalog", "pg_class", "relowner", "oid"},
  839. {"pg_catalog", "pg_class", "relpages", "int4"},
  840. {"pg_catalog", "pg_class", "relpartbound", "pg_node_tree"},
  841. {"pg_catalog", "pg_class", "relpersistence", "char"},
  842. {"pg_catalog", "pg_class", "relreplident", "char"},
  843. {"pg_catalog", "pg_class", "relrewrite", "oid"},
  844. {"pg_catalog", "pg_class", "relrowsecurity", "bool"},
  845. {"pg_catalog", "pg_class", "reltablespace", "oid"},
  846. {"pg_catalog", "pg_class", "reltoastrelid", "oid"},
  847. {"pg_catalog", "pg_class", "reltuples", "float4"},
  848. {"pg_catalog", "pg_class", "reltype", "oid"},
  849. {"pg_catalog", "pg_collation", "collcollate", "text"},
  850. {"pg_catalog", "pg_collation", "collctype", "text"},
  851. {"pg_catalog", "pg_collation", "collencoding", "int4"},
  852. {"pg_catalog", "pg_collation", "colliculocale", "text"},
  853. {"pg_catalog", "pg_collation", "collicurules", "text"},
  854. {"pg_catalog", "pg_collation", "collisdeterministic", "bool"},
  855. {"pg_catalog", "pg_collation", "collname", "name"},
  856. {"pg_catalog", "pg_collation", "collnamespace", "oid"},
  857. {"pg_catalog", "pg_collation", "collowner", "oid"},
  858. {"pg_catalog", "pg_collation", "collprovider", "char"},
  859. {"pg_catalog", "pg_collation", "collversion", "text"},
  860. {"pg_catalog", "pg_collation", "oid", "oid"},
  861. {"pg_catalog", "pg_config", "name", "text"},
  862. {"pg_catalog", "pg_config", "setting", "text"},
  863. {"pg_catalog", "pg_constraint", "conbin", "pg_node_tree"},
  864. {"pg_catalog", "pg_constraint", "condeferrable", "bool"},
  865. {"pg_catalog", "pg_constraint", "condeferred", "bool"},
  866. {"pg_catalog", "pg_constraint", "conexclop", "_oid"},
  867. {"pg_catalog", "pg_constraint", "confdelsetcols", "_int2"},
  868. {"pg_catalog", "pg_constraint", "confdeltype", "char"},
  869. {"pg_catalog", "pg_constraint", "conffeqop", "_oid"},
  870. {"pg_catalog", "pg_constraint", "confkey", "_int2"},
  871. {"pg_catalog", "pg_constraint", "confmatchtype", "char"},
  872. {"pg_catalog", "pg_constraint", "confrelid", "oid"},
  873. {"pg_catalog", "pg_constraint", "confupdtype", "char"},
  874. {"pg_catalog", "pg_constraint", "conindid", "oid"},
  875. {"pg_catalog", "pg_constraint", "coninhcount", "int2"},
  876. {"pg_catalog", "pg_constraint", "conislocal", "bool"},
  877. {"pg_catalog", "pg_constraint", "conkey", "_int2"},
  878. {"pg_catalog", "pg_constraint", "conname", "name"},
  879. {"pg_catalog", "pg_constraint", "connamespace", "oid"},
  880. {"pg_catalog", "pg_constraint", "connoinherit", "bool"},
  881. {"pg_catalog", "pg_constraint", "conparentid", "oid"},
  882. {"pg_catalog", "pg_constraint", "conpfeqop", "_oid"},
  883. {"pg_catalog", "pg_constraint", "conppeqop", "_oid"},
  884. {"pg_catalog", "pg_constraint", "conrelid", "oid"},
  885. {"pg_catalog", "pg_constraint", "contype", "char"},
  886. {"pg_catalog", "pg_constraint", "contypid", "oid"},
  887. {"pg_catalog", "pg_constraint", "convalidated", "bool"},
  888. {"pg_catalog", "pg_constraint", "oid", "oid"},
  889. {"pg_catalog", "pg_conversion", "condefault", "bool"},
  890. {"pg_catalog", "pg_conversion", "conforencoding", "int4"},
  891. {"pg_catalog", "pg_conversion", "conname", "name"},
  892. {"pg_catalog", "pg_conversion", "connamespace", "oid"},
  893. {"pg_catalog", "pg_conversion", "conowner", "oid"},
  894. {"pg_catalog", "pg_conversion", "conproc", "regproc"},
  895. {"pg_catalog", "pg_conversion", "contoencoding", "int4"},
  896. {"pg_catalog", "pg_conversion", "oid", "oid"},
  897. {"pg_catalog", "pg_cursors", "creation_time", "timestamptz"},
  898. {"pg_catalog", "pg_cursors", "is_binary", "bool"},
  899. {"pg_catalog", "pg_cursors", "is_holdable", "bool"},
  900. {"pg_catalog", "pg_cursors", "is_scrollable", "bool"},
  901. {"pg_catalog", "pg_cursors", "name", "text"},
  902. {"pg_catalog", "pg_cursors", "statement", "text"},
  903. {"pg_catalog", "pg_database", "datacl", "_aclitem"},
  904. {"pg_catalog", "pg_database", "datallowconn", "bool"},
  905. {"pg_catalog", "pg_database", "datcollate", "text"},
  906. {"pg_catalog", "pg_database", "datcollversion", "text"},
  907. {"pg_catalog", "pg_database", "datconnlimit", "int4"},
  908. {"pg_catalog", "pg_database", "datctype", "text"},
  909. {"pg_catalog", "pg_database", "datdba", "oid"},
  910. {"pg_catalog", "pg_database", "datfrozenxid", "xid"},
  911. {"pg_catalog", "pg_database", "daticulocale", "text"},
  912. {"pg_catalog", "pg_database", "daticurules", "text"},
  913. {"pg_catalog", "pg_database", "datistemplate", "bool"},
  914. {"pg_catalog", "pg_database", "datlocprovider", "char"},
  915. {"pg_catalog", "pg_database", "datminmxid", "xid"},
  916. {"pg_catalog", "pg_database", "datname", "name"},
  917. {"pg_catalog", "pg_database", "dattablespace", "oid"},
  918. {"pg_catalog", "pg_database", "encoding", "int4"},
  919. {"pg_catalog", "pg_database", "oid", "oid"},
  920. {"pg_catalog", "pg_db_role_setting", "setconfig", "_text"},
  921. {"pg_catalog", "pg_db_role_setting", "setdatabase", "oid"},
  922. {"pg_catalog", "pg_db_role_setting", "setrole", "oid"},
  923. {"pg_catalog", "pg_default_acl", "defaclacl", "_aclitem"},
  924. {"pg_catalog", "pg_default_acl", "defaclnamespace", "oid"},
  925. {"pg_catalog", "pg_default_acl", "defaclobjtype", "char"},
  926. {"pg_catalog", "pg_default_acl", "defaclrole", "oid"},
  927. {"pg_catalog", "pg_default_acl", "oid", "oid"},
  928. {"pg_catalog", "pg_depend", "classid", "oid"},
  929. {"pg_catalog", "pg_depend", "deptype", "char"},
  930. {"pg_catalog", "pg_depend", "objid", "oid"},
  931. {"pg_catalog", "pg_depend", "objsubid", "int4"},
  932. {"pg_catalog", "pg_depend", "refclassid", "oid"},
  933. {"pg_catalog", "pg_depend", "refobjid", "oid"},
  934. {"pg_catalog", "pg_depend", "refobjsubid", "int4"},
  935. {"pg_catalog", "pg_description", "classoid", "oid"},
  936. {"pg_catalog", "pg_description", "description", "text"},
  937. {"pg_catalog", "pg_description", "objoid", "oid"},
  938. {"pg_catalog", "pg_description", "objsubid", "int4"},
  939. {"pg_catalog", "pg_enum", "enumlabel", "name"},
  940. {"pg_catalog", "pg_enum", "enumsortorder", "float4"},
  941. {"pg_catalog", "pg_enum", "enumtypid", "oid"},
  942. {"pg_catalog", "pg_enum", "oid", "oid"},
  943. {"pg_catalog", "pg_event_trigger", "evtenabled", "char"},
  944. {"pg_catalog", "pg_event_trigger", "evtevent", "name"},
  945. {"pg_catalog", "pg_event_trigger", "evtfoid", "oid"},
  946. {"pg_catalog", "pg_event_trigger", "evtname", "name"},
  947. {"pg_catalog", "pg_event_trigger", "evtowner", "oid"},
  948. {"pg_catalog", "pg_event_trigger", "evttags", "_text"},
  949. {"pg_catalog", "pg_event_trigger", "oid", "oid"},
  950. {"pg_catalog", "pg_extension", "extcondition", "_text"},
  951. {"pg_catalog", "pg_extension", "extconfig", "_oid"},
  952. {"pg_catalog", "pg_extension", "extname", "name"},
  953. {"pg_catalog", "pg_extension", "extnamespace", "oid"},
  954. {"pg_catalog", "pg_extension", "extowner", "oid"},
  955. {"pg_catalog", "pg_extension", "extrelocatable", "bool"},
  956. {"pg_catalog", "pg_extension", "extversion", "text"},
  957. {"pg_catalog", "pg_extension", "oid", "oid"},
  958. {"pg_catalog", "pg_file_settings", "applied", "bool"},
  959. {"pg_catalog", "pg_file_settings", "error", "text"},
  960. {"pg_catalog", "pg_file_settings", "name", "text"},
  961. {"pg_catalog", "pg_file_settings", "seqno", "int4"},
  962. {"pg_catalog", "pg_file_settings", "setting", "text"},
  963. {"pg_catalog", "pg_file_settings", "sourcefile", "text"},
  964. {"pg_catalog", "pg_file_settings", "sourceline", "int4"},
  965. {"pg_catalog", "pg_foreign_data_wrapper", "fdwacl", "_aclitem"},
  966. {"pg_catalog", "pg_foreign_data_wrapper", "fdwhandler", "oid"},
  967. {"pg_catalog", "pg_foreign_data_wrapper", "fdwname", "name"},
  968. {"pg_catalog", "pg_foreign_data_wrapper", "fdwoptions", "_text"},
  969. {"pg_catalog", "pg_foreign_data_wrapper", "fdwowner", "oid"},
  970. {"pg_catalog", "pg_foreign_data_wrapper", "fdwvalidator", "oid"},
  971. {"pg_catalog", "pg_foreign_data_wrapper", "oid", "oid"},
  972. {"pg_catalog", "pg_foreign_server", "oid", "oid"},
  973. {"pg_catalog", "pg_foreign_server", "srvacl", "_aclitem"},
  974. {"pg_catalog", "pg_foreign_server", "srvfdw", "oid"},
  975. {"pg_catalog", "pg_foreign_server", "srvname", "name"},
  976. {"pg_catalog", "pg_foreign_server", "srvoptions", "_text"},
  977. {"pg_catalog", "pg_foreign_server", "srvowner", "oid"},
  978. {"pg_catalog", "pg_foreign_server", "srvtype", "text"},
  979. {"pg_catalog", "pg_foreign_server", "srvversion", "text"},
  980. {"pg_catalog", "pg_foreign_table", "ftoptions", "_text"},
  981. {"pg_catalog", "pg_foreign_table", "ftrelid", "oid"},
  982. {"pg_catalog", "pg_foreign_table", "ftserver", "oid"},
  983. {"pg_catalog", "pg_group", "grolist", "_oid"},
  984. {"pg_catalog", "pg_group", "groname", "name"},
  985. {"pg_catalog", "pg_group", "grosysid", "oid"},
  986. {"pg_catalog", "pg_hba_file_rules", "address", "text"},
  987. {"pg_catalog", "pg_hba_file_rules", "auth_method", "text"},
  988. {"pg_catalog", "pg_hba_file_rules", "database", "_text"},
  989. {"pg_catalog", "pg_hba_file_rules", "error", "text"},
  990. {"pg_catalog", "pg_hba_file_rules", "file_name", "text"},
  991. {"pg_catalog", "pg_hba_file_rules", "line_number", "int4"},
  992. {"pg_catalog", "pg_hba_file_rules", "netmask", "text"},
  993. {"pg_catalog", "pg_hba_file_rules", "options", "_text"},
  994. {"pg_catalog", "pg_hba_file_rules", "rule_number", "int4"},
  995. {"pg_catalog", "pg_hba_file_rules", "type", "text"},
  996. {"pg_catalog", "pg_hba_file_rules", "user_name", "_text"},
  997. {"pg_catalog", "pg_ident_file_mappings", "error", "text"},
  998. {"pg_catalog", "pg_ident_file_mappings", "file_name", "text"},
  999. {"pg_catalog", "pg_ident_file_mappings", "line_number", "int4"},
  1000. {"pg_catalog", "pg_ident_file_mappings", "map_name", "text"},
  1001. {"pg_catalog", "pg_ident_file_mappings", "map_number", "int4"},
  1002. {"pg_catalog", "pg_ident_file_mappings", "pg_username", "text"},
  1003. {"pg_catalog", "pg_ident_file_mappings", "sys_name", "text"},
  1004. {"pg_catalog", "pg_index", "indcheckxmin", "bool"},
  1005. {"pg_catalog", "pg_index", "indclass", "oidvector"},
  1006. {"pg_catalog", "pg_index", "indcollation", "oidvector"},
  1007. {"pg_catalog", "pg_index", "indexprs", "pg_node_tree"},
  1008. {"pg_catalog", "pg_index", "indexrelid", "oid"},
  1009. {"pg_catalog", "pg_index", "indimmediate", "bool"},
  1010. {"pg_catalog", "pg_index", "indisclustered", "bool"},
  1011. {"pg_catalog", "pg_index", "indisexclusion", "bool"},
  1012. {"pg_catalog", "pg_index", "indislive", "bool"},
  1013. {"pg_catalog", "pg_index", "indisprimary", "bool"},
  1014. {"pg_catalog", "pg_index", "indisready", "bool"},
  1015. {"pg_catalog", "pg_index", "indisreplident", "bool"},
  1016. {"pg_catalog", "pg_index", "indisunique", "bool"},
  1017. {"pg_catalog", "pg_index", "indisvalid", "bool"},
  1018. {"pg_catalog", "pg_index", "indkey", "int2vector"},
  1019. {"pg_catalog", "pg_index", "indnatts", "int2"},
  1020. {"pg_catalog", "pg_index", "indnkeyatts", "int2"},
  1021. {"pg_catalog", "pg_index", "indnullsnotdistinct", "bool"},
  1022. {"pg_catalog", "pg_index", "indoption", "int2vector"},
  1023. {"pg_catalog", "pg_index", "indpred", "pg_node_tree"},
  1024. {"pg_catalog", "pg_index", "indrelid", "oid"},
  1025. {"pg_catalog", "pg_indexes", "indexdef", "text"},
  1026. {"pg_catalog", "pg_indexes", "indexname", "name"},
  1027. {"pg_catalog", "pg_indexes", "schemaname", "name"},
  1028. {"pg_catalog", "pg_indexes", "tablename", "name"},
  1029. {"pg_catalog", "pg_indexes", "tablespace", "name"},
  1030. {"pg_catalog", "pg_inherits", "inhdetachpending", "bool"},
  1031. {"pg_catalog", "pg_inherits", "inhparent", "oid"},
  1032. {"pg_catalog", "pg_inherits", "inhrelid", "oid"},
  1033. {"pg_catalog", "pg_inherits", "inhseqno", "int4"},
  1034. {"pg_catalog", "pg_init_privs", "classoid", "oid"},
  1035. {"pg_catalog", "pg_init_privs", "initprivs", "_aclitem"},
  1036. {"pg_catalog", "pg_init_privs", "objoid", "oid"},
  1037. {"pg_catalog", "pg_init_privs", "objsubid", "int4"},
  1038. {"pg_catalog", "pg_init_privs", "privtype", "char"},
  1039. {"pg_catalog", "pg_language", "lanacl", "_aclitem"},
  1040. {"pg_catalog", "pg_language", "laninline", "oid"},
  1041. {"pg_catalog", "pg_language", "lanispl", "bool"},
  1042. {"pg_catalog", "pg_language", "lanname", "name"},
  1043. {"pg_catalog", "pg_language", "lanowner", "oid"},
  1044. {"pg_catalog", "pg_language", "lanplcallfoid", "oid"},
  1045. {"pg_catalog", "pg_language", "lanpltrusted", "bool"},
  1046. {"pg_catalog", "pg_language", "lanvalidator", "oid"},
  1047. {"pg_catalog", "pg_language", "oid", "oid"},
  1048. {"pg_catalog", "pg_largeobject", "data", "bytea"},
  1049. {"pg_catalog", "pg_largeobject", "loid", "oid"},
  1050. {"pg_catalog", "pg_largeobject", "pageno", "int4"},
  1051. {"pg_catalog", "pg_largeobject_metadata", "lomacl", "_aclitem"},
  1052. {"pg_catalog", "pg_largeobject_metadata", "lomowner", "oid"},
  1053. {"pg_catalog", "pg_largeobject_metadata", "oid", "oid"},
  1054. {"pg_catalog", "pg_locks", "classid", "oid"},
  1055. {"pg_catalog", "pg_locks", "database", "oid"},
  1056. {"pg_catalog", "pg_locks", "fastpath", "bool"},
  1057. {"pg_catalog", "pg_locks", "granted", "bool"},
  1058. {"pg_catalog", "pg_locks", "locktype", "text"},
  1059. {"pg_catalog", "pg_locks", "mode", "text"},
  1060. {"pg_catalog", "pg_locks", "objid", "oid"},
  1061. {"pg_catalog", "pg_locks", "objsubid", "int2"},
  1062. {"pg_catalog", "pg_locks", "page", "int4"},
  1063. {"pg_catalog", "pg_locks", "pid", "int4"},
  1064. {"pg_catalog", "pg_locks", "relation", "oid"},
  1065. {"pg_catalog", "pg_locks", "transactionid", "xid"},
  1066. {"pg_catalog", "pg_locks", "tuple", "int2"},
  1067. {"pg_catalog", "pg_locks", "virtualtransaction", "text"},
  1068. {"pg_catalog", "pg_locks", "virtualxid", "text"},
  1069. {"pg_catalog", "pg_locks", "waitstart", "timestamptz"},
  1070. {"pg_catalog", "pg_matviews", "definition", "text"},
  1071. {"pg_catalog", "pg_matviews", "hasindexes", "bool"},
  1072. {"pg_catalog", "pg_matviews", "ispopulated", "bool"},
  1073. {"pg_catalog", "pg_matviews", "matviewname", "name"},
  1074. {"pg_catalog", "pg_matviews", "matviewowner", "name"},
  1075. {"pg_catalog", "pg_matviews", "schemaname", "name"},
  1076. {"pg_catalog", "pg_matviews", "tablespace", "name"},
  1077. {"pg_catalog", "pg_namespace", "nspacl", "_aclitem"},
  1078. {"pg_catalog", "pg_namespace", "nspname", "name"},
  1079. {"pg_catalog", "pg_namespace", "nspowner", "oid"},
  1080. {"pg_catalog", "pg_namespace", "oid", "oid"},
  1081. {"pg_catalog", "pg_opclass", "oid", "oid"},
  1082. {"pg_catalog", "pg_opclass", "opcdefault", "bool"},
  1083. {"pg_catalog", "pg_opclass", "opcfamily", "oid"},
  1084. {"pg_catalog", "pg_opclass", "opcintype", "oid"},
  1085. {"pg_catalog", "pg_opclass", "opckeytype", "oid"},
  1086. {"pg_catalog", "pg_opclass", "opcmethod", "oid"},
  1087. {"pg_catalog", "pg_opclass", "opcname", "name"},
  1088. {"pg_catalog", "pg_opclass", "opcnamespace", "oid"},
  1089. {"pg_catalog", "pg_opclass", "opcowner", "oid"},
  1090. {"pg_catalog", "pg_operator", "oid", "oid"},
  1091. {"pg_catalog", "pg_operator", "oprcanhash", "bool"},
  1092. {"pg_catalog", "pg_operator", "oprcanmerge", "bool"},
  1093. {"pg_catalog", "pg_operator", "oprcode", "regproc"},
  1094. {"pg_catalog", "pg_operator", "oprcom", "oid"},
  1095. {"pg_catalog", "pg_operator", "oprjoin", "regproc"},
  1096. {"pg_catalog", "pg_operator", "oprkind", "char"},
  1097. {"pg_catalog", "pg_operator", "oprleft", "oid"},
  1098. {"pg_catalog", "pg_operator", "oprname", "name"},
  1099. {"pg_catalog", "pg_operator", "oprnamespace", "oid"},
  1100. {"pg_catalog", "pg_operator", "oprnegate", "oid"},
  1101. {"pg_catalog", "pg_operator", "oprowner", "oid"},
  1102. {"pg_catalog", "pg_operator", "oprrest", "regproc"},
  1103. {"pg_catalog", "pg_operator", "oprresult", "oid"},
  1104. {"pg_catalog", "pg_operator", "oprright", "oid"},
  1105. {"pg_catalog", "pg_opfamily", "oid", "oid"},
  1106. {"pg_catalog", "pg_opfamily", "opfmethod", "oid"},
  1107. {"pg_catalog", "pg_opfamily", "opfname", "name"},
  1108. {"pg_catalog", "pg_opfamily", "opfnamespace", "oid"},
  1109. {"pg_catalog", "pg_opfamily", "opfowner", "oid"},
  1110. {"pg_catalog", "pg_parameter_acl", "oid", "oid"},
  1111. {"pg_catalog", "pg_parameter_acl", "paracl", "_aclitem"},
  1112. {"pg_catalog", "pg_parameter_acl", "parname", "text"},
  1113. {"pg_catalog", "pg_partitioned_table", "partattrs", "int2vector"},
  1114. {"pg_catalog", "pg_partitioned_table", "partclass", "oidvector"},
  1115. {"pg_catalog", "pg_partitioned_table", "partcollation", "oidvector"},
  1116. {"pg_catalog", "pg_partitioned_table", "partdefid", "oid"},
  1117. {"pg_catalog", "pg_partitioned_table", "partexprs", "pg_node_tree"},
  1118. {"pg_catalog", "pg_partitioned_table", "partnatts", "int2"},
  1119. {"pg_catalog", "pg_partitioned_table", "partrelid", "oid"},
  1120. {"pg_catalog", "pg_partitioned_table", "partstrat", "char"},
  1121. {"pg_catalog", "pg_policies", "cmd", "text"},
  1122. {"pg_catalog", "pg_policies", "permissive", "text"},
  1123. {"pg_catalog", "pg_policies", "policyname", "name"},
  1124. {"pg_catalog", "pg_policies", "qual", "text"},
  1125. {"pg_catalog", "pg_policies", "roles", "_name"},
  1126. {"pg_catalog", "pg_policies", "schemaname", "name"},
  1127. {"pg_catalog", "pg_policies", "tablename", "name"},
  1128. {"pg_catalog", "pg_policies", "with_check", "text"},
  1129. {"pg_catalog", "pg_policy", "oid", "oid"},
  1130. {"pg_catalog", "pg_policy", "polcmd", "char"},
  1131. {"pg_catalog", "pg_policy", "polname", "name"},
  1132. {"pg_catalog", "pg_policy", "polpermissive", "bool"},
  1133. {"pg_catalog", "pg_policy", "polqual", "pg_node_tree"},
  1134. {"pg_catalog", "pg_policy", "polrelid", "oid"},
  1135. {"pg_catalog", "pg_policy", "polroles", "_oid"},
  1136. {"pg_catalog", "pg_policy", "polwithcheck", "pg_node_tree"},
  1137. {"pg_catalog", "pg_prepared_statements", "custom_plans", "int8"},
  1138. {"pg_catalog", "pg_prepared_statements", "from_sql", "bool"},
  1139. {"pg_catalog", "pg_prepared_statements", "generic_plans", "int8"},
  1140. {"pg_catalog", "pg_prepared_statements", "name", "text"},
  1141. {"pg_catalog", "pg_prepared_statements", "parameter_types", "_regtype"},
  1142. {"pg_catalog", "pg_prepared_statements", "prepare_time", "timestamptz"},
  1143. {"pg_catalog", "pg_prepared_statements", "result_types", "_regtype"},
  1144. {"pg_catalog", "pg_prepared_statements", "statement", "text"},
  1145. {"pg_catalog", "pg_prepared_xacts", "database", "name"},
  1146. {"pg_catalog", "pg_prepared_xacts", "gid", "text"},
  1147. {"pg_catalog", "pg_prepared_xacts", "owner", "name"},
  1148. {"pg_catalog", "pg_prepared_xacts", "prepared", "timestamptz"},
  1149. {"pg_catalog", "pg_prepared_xacts", "transaction", "xid"},
  1150. {"pg_catalog", "pg_proc", "oid", "oid"},
  1151. {"pg_catalog", "pg_proc", "proacl", "_aclitem"},
  1152. {"pg_catalog", "pg_proc", "proallargtypes", "_oid"},
  1153. {"pg_catalog", "pg_proc", "proargdefaults", "pg_node_tree"},
  1154. {"pg_catalog", "pg_proc", "proargmodes", "_char"},
  1155. {"pg_catalog", "pg_proc", "proargnames", "_text"},
  1156. {"pg_catalog", "pg_proc", "proargtypes", "oidvector"},
  1157. {"pg_catalog", "pg_proc", "probin", "text"},
  1158. {"pg_catalog", "pg_proc", "proconfig", "_text"},
  1159. {"pg_catalog", "pg_proc", "procost", "float4"},
  1160. {"pg_catalog", "pg_proc", "proisstrict", "bool"},
  1161. {"pg_catalog", "pg_proc", "prokind", "char"},
  1162. {"pg_catalog", "pg_proc", "prolang", "oid"},
  1163. {"pg_catalog", "pg_proc", "proleakproof", "bool"},
  1164. {"pg_catalog", "pg_proc", "proname", "name"},
  1165. {"pg_catalog", "pg_proc", "pronamespace", "oid"},
  1166. {"pg_catalog", "pg_proc", "pronargdefaults", "int2"},
  1167. {"pg_catalog", "pg_proc", "pronargs", "int2"},
  1168. {"pg_catalog", "pg_proc", "proowner", "oid"},
  1169. {"pg_catalog", "pg_proc", "proparallel", "char"},
  1170. {"pg_catalog", "pg_proc", "proretset", "bool"},
  1171. {"pg_catalog", "pg_proc", "prorettype", "oid"},
  1172. {"pg_catalog", "pg_proc", "prorows", "float4"},
  1173. {"pg_catalog", "pg_proc", "prosecdef", "bool"},
  1174. {"pg_catalog", "pg_proc", "prosqlbody", "pg_node_tree"},
  1175. {"pg_catalog", "pg_proc", "prosrc", "text"},
  1176. {"pg_catalog", "pg_proc", "prosupport", "regproc"},
  1177. {"pg_catalog", "pg_proc", "protrftypes", "_oid"},
  1178. {"pg_catalog", "pg_proc", "provariadic", "oid"},
  1179. {"pg_catalog", "pg_proc", "provolatile", "char"},
  1180. {"pg_catalog", "pg_publication", "oid", "oid"},
  1181. {"pg_catalog", "pg_publication", "puballtables", "bool"},
  1182. {"pg_catalog", "pg_publication", "pubdelete", "bool"},
  1183. {"pg_catalog", "pg_publication", "pubinsert", "bool"},
  1184. {"pg_catalog", "pg_publication", "pubname", "name"},
  1185. {"pg_catalog", "pg_publication", "pubowner", "oid"},
  1186. {"pg_catalog", "pg_publication", "pubtruncate", "bool"},
  1187. {"pg_catalog", "pg_publication", "pubupdate", "bool"},
  1188. {"pg_catalog", "pg_publication", "pubviaroot", "bool"},
  1189. {"pg_catalog", "pg_publication_namespace", "oid", "oid"},
  1190. {"pg_catalog", "pg_publication_namespace", "pnnspid", "oid"},
  1191. {"pg_catalog", "pg_publication_namespace", "pnpubid", "oid"},
  1192. {"pg_catalog", "pg_publication_rel", "oid", "oid"},
  1193. {"pg_catalog", "pg_publication_rel", "prattrs", "int2vector"},
  1194. {"pg_catalog", "pg_publication_rel", "prpubid", "oid"},
  1195. {"pg_catalog", "pg_publication_rel", "prqual", "pg_node_tree"},
  1196. {"pg_catalog", "pg_publication_rel", "prrelid", "oid"},
  1197. {"pg_catalog", "pg_publication_tables", "attnames", "_name"},
  1198. {"pg_catalog", "pg_publication_tables", "pubname", "name"},
  1199. {"pg_catalog", "pg_publication_tables", "rowfilter", "text"},
  1200. {"pg_catalog", "pg_publication_tables", "schemaname", "name"},
  1201. {"pg_catalog", "pg_publication_tables", "tablename", "name"},
  1202. {"pg_catalog", "pg_range", "rngcanonical", "regproc"},
  1203. {"pg_catalog", "pg_range", "rngcollation", "oid"},
  1204. {"pg_catalog", "pg_range", "rngmultitypid", "oid"},
  1205. {"pg_catalog", "pg_range", "rngsubdiff", "regproc"},
  1206. {"pg_catalog", "pg_range", "rngsubopc", "oid"},
  1207. {"pg_catalog", "pg_range", "rngsubtype", "oid"},
  1208. {"pg_catalog", "pg_range", "rngtypid", "oid"},
  1209. {"pg_catalog", "pg_replication_origin", "roident", "oid"},
  1210. {"pg_catalog", "pg_replication_origin", "roname", "text"},
  1211. {"pg_catalog", "pg_replication_origin_status", "external_id", "text"},
  1212. {"pg_catalog", "pg_replication_origin_status", "local_id", "oid"},
  1213. {"pg_catalog", "pg_replication_origin_status", "local_lsn", "pg_lsn"},
  1214. {"pg_catalog", "pg_replication_origin_status", "remote_lsn", "pg_lsn"},
  1215. {"pg_catalog", "pg_replication_slots", "active", "bool"},
  1216. {"pg_catalog", "pg_replication_slots", "active_pid", "int4"},
  1217. {"pg_catalog", "pg_replication_slots", "catalog_xmin", "xid"},
  1218. {"pg_catalog", "pg_replication_slots", "confirmed_flush_lsn", "pg_lsn"},
  1219. {"pg_catalog", "pg_replication_slots", "conflicting", "bool"},
  1220. {"pg_catalog", "pg_replication_slots", "database", "name"},
  1221. {"pg_catalog", "pg_replication_slots", "datoid", "oid"},
  1222. {"pg_catalog", "pg_replication_slots", "plugin", "name"},
  1223. {"pg_catalog", "pg_replication_slots", "restart_lsn", "pg_lsn"},
  1224. {"pg_catalog", "pg_replication_slots", "safe_wal_size", "int8"},
  1225. {"pg_catalog", "pg_replication_slots", "slot_name", "name"},
  1226. {"pg_catalog", "pg_replication_slots", "slot_type", "text"},
  1227. {"pg_catalog", "pg_replication_slots", "temporary", "bool"},
  1228. {"pg_catalog", "pg_replication_slots", "two_phase", "bool"},
  1229. {"pg_catalog", "pg_replication_slots", "wal_status", "text"},
  1230. {"pg_catalog", "pg_replication_slots", "xmin", "xid"},
  1231. {"pg_catalog", "pg_rewrite", "ev_action", "pg_node_tree"},
  1232. {"pg_catalog", "pg_rewrite", "ev_class", "oid"},
  1233. {"pg_catalog", "pg_rewrite", "ev_enabled", "char"},
  1234. {"pg_catalog", "pg_rewrite", "ev_qual", "pg_node_tree"},
  1235. {"pg_catalog", "pg_rewrite", "ev_type", "char"},
  1236. {"pg_catalog", "pg_rewrite", "is_instead", "bool"},
  1237. {"pg_catalog", "pg_rewrite", "oid", "oid"},
  1238. {"pg_catalog", "pg_rewrite", "rulename", "name"},
  1239. {"pg_catalog", "pg_roles", "oid", "oid"},
  1240. {"pg_catalog", "pg_roles", "rolbypassrls", "bool"},
  1241. {"pg_catalog", "pg_roles", "rolcanlogin", "bool"},
  1242. {"pg_catalog", "pg_roles", "rolconfig", "_text"},
  1243. {"pg_catalog", "pg_roles", "rolconnlimit", "int4"},
  1244. {"pg_catalog", "pg_roles", "rolcreatedb", "bool"},
  1245. {"pg_catalog", "pg_roles", "rolcreaterole", "bool"},
  1246. {"pg_catalog", "pg_roles", "rolinherit", "bool"},
  1247. {"pg_catalog", "pg_roles", "rolname", "name"},
  1248. {"pg_catalog", "pg_roles", "rolpassword", "text"},
  1249. {"pg_catalog", "pg_roles", "rolreplication", "bool"},
  1250. {"pg_catalog", "pg_roles", "rolsuper", "bool"},
  1251. {"pg_catalog", "pg_roles", "rolvaliduntil", "timestamptz"},
  1252. {"pg_catalog", "pg_rules", "definition", "text"},
  1253. {"pg_catalog", "pg_rules", "rulename", "name"},
  1254. {"pg_catalog", "pg_rules", "schemaname", "name"},
  1255. {"pg_catalog", "pg_rules", "tablename", "name"},
  1256. {"pg_catalog", "pg_seclabel", "classoid", "oid"},
  1257. {"pg_catalog", "pg_seclabel", "label", "text"},
  1258. {"pg_catalog", "pg_seclabel", "objoid", "oid"},
  1259. {"pg_catalog", "pg_seclabel", "objsubid", "int4"},
  1260. {"pg_catalog", "pg_seclabel", "provider", "text"},
  1261. {"pg_catalog", "pg_seclabels", "classoid", "oid"},
  1262. {"pg_catalog", "pg_seclabels", "label", "text"},
  1263. {"pg_catalog", "pg_seclabels", "objname", "text"},
  1264. {"pg_catalog", "pg_seclabels", "objnamespace", "oid"},
  1265. {"pg_catalog", "pg_seclabels", "objoid", "oid"},
  1266. {"pg_catalog", "pg_seclabels", "objsubid", "int4"},
  1267. {"pg_catalog", "pg_seclabels", "objtype", "text"},
  1268. {"pg_catalog", "pg_seclabels", "provider", "text"},
  1269. {"pg_catalog", "pg_sequence", "seqcache", "int8"},
  1270. {"pg_catalog", "pg_sequence", "seqcycle", "bool"},
  1271. {"pg_catalog", "pg_sequence", "seqincrement", "int8"},
  1272. {"pg_catalog", "pg_sequence", "seqmax", "int8"},
  1273. {"pg_catalog", "pg_sequence", "seqmin", "int8"},
  1274. {"pg_catalog", "pg_sequence", "seqrelid", "oid"},
  1275. {"pg_catalog", "pg_sequence", "seqstart", "int8"},
  1276. {"pg_catalog", "pg_sequence", "seqtypid", "oid"},
  1277. {"pg_catalog", "pg_sequences", "cache_size", "int8"},
  1278. {"pg_catalog", "pg_sequences", "cycle", "bool"},
  1279. {"pg_catalog", "pg_sequences", "data_type", "regtype"},
  1280. {"pg_catalog", "pg_sequences", "increment_by", "int8"},
  1281. {"pg_catalog", "pg_sequences", "last_value", "int8"},
  1282. {"pg_catalog", "pg_sequences", "max_value", "int8"},
  1283. {"pg_catalog", "pg_sequences", "min_value", "int8"},
  1284. {"pg_catalog", "pg_sequences", "schemaname", "name"},
  1285. {"pg_catalog", "pg_sequences", "sequencename", "name"},
  1286. {"pg_catalog", "pg_sequences", "sequenceowner", "name"},
  1287. {"pg_catalog", "pg_sequences", "start_value", "int8"},
  1288. {"pg_catalog", "pg_settings", "boot_val", "text"},
  1289. {"pg_catalog", "pg_settings", "category", "text"},
  1290. {"pg_catalog", "pg_settings", "context", "text"},
  1291. {"pg_catalog", "pg_settings", "enumvals", "_text"},
  1292. {"pg_catalog", "pg_settings", "extra_desc", "text"},
  1293. {"pg_catalog", "pg_settings", "max_val", "text"},
  1294. {"pg_catalog", "pg_settings", "min_val", "text"},
  1295. {"pg_catalog", "pg_settings", "name", "text"},
  1296. {"pg_catalog", "pg_settings", "pending_restart", "bool"},
  1297. {"pg_catalog", "pg_settings", "reset_val", "text"},
  1298. {"pg_catalog", "pg_settings", "setting", "text"},
  1299. {"pg_catalog", "pg_settings", "short_desc", "text"},
  1300. {"pg_catalog", "pg_settings", "source", "text"},
  1301. {"pg_catalog", "pg_settings", "sourcefile", "text"},
  1302. {"pg_catalog", "pg_settings", "sourceline", "int4"},
  1303. {"pg_catalog", "pg_settings", "unit", "text"},
  1304. {"pg_catalog", "pg_settings", "vartype", "text"},
  1305. {"pg_catalog", "pg_shadow", "passwd", "text"},
  1306. {"pg_catalog", "pg_shadow", "usebypassrls", "bool"},
  1307. {"pg_catalog", "pg_shadow", "useconfig", "_text"},
  1308. {"pg_catalog", "pg_shadow", "usecreatedb", "bool"},
  1309. {"pg_catalog", "pg_shadow", "usename", "name"},
  1310. {"pg_catalog", "pg_shadow", "userepl", "bool"},
  1311. {"pg_catalog", "pg_shadow", "usesuper", "bool"},
  1312. {"pg_catalog", "pg_shadow", "usesysid", "oid"},
  1313. {"pg_catalog", "pg_shadow", "valuntil", "timestamptz"},
  1314. {"pg_catalog", "pg_shdepend", "classid", "oid"},
  1315. {"pg_catalog", "pg_shdepend", "dbid", "oid"},
  1316. {"pg_catalog", "pg_shdepend", "deptype", "char"},
  1317. {"pg_catalog", "pg_shdepend", "objid", "oid"},
  1318. {"pg_catalog", "pg_shdepend", "objsubid", "int4"},
  1319. {"pg_catalog", "pg_shdepend", "refclassid", "oid"},
  1320. {"pg_catalog", "pg_shdepend", "refobjid", "oid"},
  1321. {"pg_catalog", "pg_shdescription", "classoid", "oid"},
  1322. {"pg_catalog", "pg_shdescription", "description", "text"},
  1323. {"pg_catalog", "pg_shdescription", "objoid", "oid"},
  1324. {"pg_catalog", "pg_shmem_allocations", "allocated_size", "int8"},
  1325. {"pg_catalog", "pg_shmem_allocations", "name", "text"},
  1326. {"pg_catalog", "pg_shmem_allocations", "off", "int8"},
  1327. {"pg_catalog", "pg_shmem_allocations", "size", "int8"},
  1328. {"pg_catalog", "pg_shseclabel", "classoid", "oid"},
  1329. {"pg_catalog", "pg_shseclabel", "label", "text"},
  1330. {"pg_catalog", "pg_shseclabel", "objoid", "oid"},
  1331. {"pg_catalog", "pg_shseclabel", "provider", "text"},
  1332. {"pg_catalog", "pg_stat_activity", "application_name", "text"},
  1333. {"pg_catalog", "pg_stat_activity", "backend_start", "timestamptz"},
  1334. {"pg_catalog", "pg_stat_activity", "backend_type", "text"},
  1335. {"pg_catalog", "pg_stat_activity", "backend_xid", "xid"},
  1336. {"pg_catalog", "pg_stat_activity", "backend_xmin", "xid"},
  1337. {"pg_catalog", "pg_stat_activity", "client_addr", "inet"},
  1338. {"pg_catalog", "pg_stat_activity", "client_hostname", "text"},
  1339. {"pg_catalog", "pg_stat_activity", "client_port", "int4"},
  1340. {"pg_catalog", "pg_stat_activity", "datid", "oid"},
  1341. {"pg_catalog", "pg_stat_activity", "datname", "name"},
  1342. {"pg_catalog", "pg_stat_activity", "leader_pid", "int4"},
  1343. {"pg_catalog", "pg_stat_activity", "pid", "int4"},
  1344. {"pg_catalog", "pg_stat_activity", "query", "text"},
  1345. {"pg_catalog", "pg_stat_activity", "query_id", "int8"},
  1346. {"pg_catalog", "pg_stat_activity", "query_start", "timestamptz"},
  1347. {"pg_catalog", "pg_stat_activity", "state", "text"},
  1348. {"pg_catalog", "pg_stat_activity", "state_change", "timestamptz"},
  1349. {"pg_catalog", "pg_stat_activity", "usename", "name"},
  1350. {"pg_catalog", "pg_stat_activity", "usesysid", "oid"},
  1351. {"pg_catalog", "pg_stat_activity", "wait_event", "text"},
  1352. {"pg_catalog", "pg_stat_activity", "wait_event_type", "text"},
  1353. {"pg_catalog", "pg_stat_activity", "xact_start", "timestamptz"},
  1354. {"pg_catalog", "pg_stat_all_indexes", "idx_scan", "int8"},
  1355. {"pg_catalog", "pg_stat_all_indexes", "idx_tup_fetch", "int8"},
  1356. {"pg_catalog", "pg_stat_all_indexes", "idx_tup_read", "int8"},
  1357. {"pg_catalog", "pg_stat_all_indexes", "indexrelid", "oid"},
  1358. {"pg_catalog", "pg_stat_all_indexes", "indexrelname", "name"},
  1359. {"pg_catalog", "pg_stat_all_indexes", "last_idx_scan", "timestamptz"},
  1360. {"pg_catalog", "pg_stat_all_indexes", "relid", "oid"},
  1361. {"pg_catalog", "pg_stat_all_indexes", "relname", "name"},
  1362. {"pg_catalog", "pg_stat_all_indexes", "schemaname", "name"},
  1363. {"pg_catalog", "pg_stat_all_tables", "analyze_count", "int8"},
  1364. {"pg_catalog", "pg_stat_all_tables", "autoanalyze_count", "int8"},
  1365. {"pg_catalog", "pg_stat_all_tables", "autovacuum_count", "int8"},
  1366. {"pg_catalog", "pg_stat_all_tables", "idx_scan", "int8"},
  1367. {"pg_catalog", "pg_stat_all_tables", "idx_tup_fetch", "int8"},
  1368. {"pg_catalog", "pg_stat_all_tables", "last_analyze", "timestamptz"},
  1369. {"pg_catalog", "pg_stat_all_tables", "last_autoanalyze", "timestamptz"},
  1370. {"pg_catalog", "pg_stat_all_tables", "last_autovacuum", "timestamptz"},
  1371. {"pg_catalog", "pg_stat_all_tables", "last_idx_scan", "timestamptz"},
  1372. {"pg_catalog", "pg_stat_all_tables", "last_seq_scan", "timestamptz"},
  1373. {"pg_catalog", "pg_stat_all_tables", "last_vacuum", "timestamptz"},
  1374. {"pg_catalog", "pg_stat_all_tables", "n_dead_tup", "int8"},
  1375. {"pg_catalog", "pg_stat_all_tables", "n_ins_since_vacuum", "int8"},
  1376. {"pg_catalog", "pg_stat_all_tables", "n_live_tup", "int8"},
  1377. {"pg_catalog", "pg_stat_all_tables", "n_mod_since_analyze", "int8"},
  1378. {"pg_catalog", "pg_stat_all_tables", "n_tup_del", "int8"},
  1379. {"pg_catalog", "pg_stat_all_tables", "n_tup_hot_upd", "int8"},
  1380. {"pg_catalog", "pg_stat_all_tables", "n_tup_ins", "int8"},
  1381. {"pg_catalog", "pg_stat_all_tables", "n_tup_newpage_upd", "int8"},
  1382. {"pg_catalog", "pg_stat_all_tables", "n_tup_upd", "int8"},
  1383. {"pg_catalog", "pg_stat_all_tables", "relid", "oid"},
  1384. {"pg_catalog", "pg_stat_all_tables", "relname", "name"},
  1385. {"pg_catalog", "pg_stat_all_tables", "schemaname", "name"},
  1386. {"pg_catalog", "pg_stat_all_tables", "seq_scan", "int8"},
  1387. {"pg_catalog", "pg_stat_all_tables", "seq_tup_read", "int8"},
  1388. {"pg_catalog", "pg_stat_all_tables", "vacuum_count", "int8"},
  1389. {"pg_catalog", "pg_stat_archiver", "archived_count", "int8"},
  1390. {"pg_catalog", "pg_stat_archiver", "failed_count", "int8"},
  1391. {"pg_catalog", "pg_stat_archiver", "last_archived_time", "timestamptz"},
  1392. {"pg_catalog", "pg_stat_archiver", "last_archived_wal", "text"},
  1393. {"pg_catalog", "pg_stat_archiver", "last_failed_time", "timestamptz"},
  1394. {"pg_catalog", "pg_stat_archiver", "last_failed_wal", "text"},
  1395. {"pg_catalog", "pg_stat_archiver", "stats_reset", "timestamptz"},
  1396. {"pg_catalog", "pg_stat_bgwriter", "buffers_alloc", "int8"},
  1397. {"pg_catalog", "pg_stat_bgwriter", "buffers_backend", "int8"},
  1398. {"pg_catalog", "pg_stat_bgwriter", "buffers_backend_fsync", "int8"},
  1399. {"pg_catalog", "pg_stat_bgwriter", "buffers_checkpoint", "int8"},
  1400. {"pg_catalog", "pg_stat_bgwriter", "buffers_clean", "int8"},
  1401. {"pg_catalog", "pg_stat_bgwriter", "checkpoint_sync_time", "float8"},
  1402. {"pg_catalog", "pg_stat_bgwriter", "checkpoint_write_time", "float8"},
  1403. {"pg_catalog", "pg_stat_bgwriter", "checkpoints_req", "int8"},
  1404. {"pg_catalog", "pg_stat_bgwriter", "checkpoints_timed", "int8"},
  1405. {"pg_catalog", "pg_stat_bgwriter", "maxwritten_clean", "int8"},
  1406. {"pg_catalog", "pg_stat_bgwriter", "stats_reset", "timestamptz"},
  1407. {"pg_catalog", "pg_stat_database", "active_time", "float8"},
  1408. {"pg_catalog", "pg_stat_database", "blk_read_time", "float8"},
  1409. {"pg_catalog", "pg_stat_database", "blk_write_time", "float8"},
  1410. {"pg_catalog", "pg_stat_database", "blks_hit", "int8"},
  1411. {"pg_catalog", "pg_stat_database", "blks_read", "int8"},
  1412. {"pg_catalog", "pg_stat_database", "checksum_failures", "int8"},
  1413. {"pg_catalog", "pg_stat_database", "checksum_last_failure", "timestamptz"},
  1414. {"pg_catalog", "pg_stat_database", "conflicts", "int8"},
  1415. {"pg_catalog", "pg_stat_database", "datid", "oid"},
  1416. {"pg_catalog", "pg_stat_database", "datname", "name"},
  1417. {"pg_catalog", "pg_stat_database", "deadlocks", "int8"},
  1418. {"pg_catalog", "pg_stat_database", "idle_in_transaction_time", "float8"},
  1419. {"pg_catalog", "pg_stat_database", "numbackends", "int4"},
  1420. {"pg_catalog", "pg_stat_database", "session_time", "float8"},
  1421. {"pg_catalog", "pg_stat_database", "sessions", "int8"},
  1422. {"pg_catalog", "pg_stat_database", "sessions_abandoned", "int8"},
  1423. {"pg_catalog", "pg_stat_database", "sessions_fatal", "int8"},
  1424. {"pg_catalog", "pg_stat_database", "sessions_killed", "int8"},
  1425. {"pg_catalog", "pg_stat_database", "stats_reset", "timestamptz"},
  1426. {"pg_catalog", "pg_stat_database", "temp_bytes", "int8"},
  1427. {"pg_catalog", "pg_stat_database", "temp_files", "int8"},
  1428. {"pg_catalog", "pg_stat_database", "tup_deleted", "int8"},
  1429. {"pg_catalog", "pg_stat_database", "tup_fetched", "int8"},
  1430. {"pg_catalog", "pg_stat_database", "tup_inserted", "int8"},
  1431. {"pg_catalog", "pg_stat_database", "tup_returned", "int8"},
  1432. {"pg_catalog", "pg_stat_database", "tup_updated", "int8"},
  1433. {"pg_catalog", "pg_stat_database", "xact_commit", "int8"},
  1434. {"pg_catalog", "pg_stat_database", "xact_rollback", "int8"},
  1435. {"pg_catalog", "pg_stat_database_conflicts", "confl_active_logicalslot", "int8"},
  1436. {"pg_catalog", "pg_stat_database_conflicts", "confl_bufferpin", "int8"},
  1437. {"pg_catalog", "pg_stat_database_conflicts", "confl_deadlock", "int8"},
  1438. {"pg_catalog", "pg_stat_database_conflicts", "confl_lock", "int8"},
  1439. {"pg_catalog", "pg_stat_database_conflicts", "confl_snapshot", "int8"},
  1440. {"pg_catalog", "pg_stat_database_conflicts", "confl_tablespace", "int8"},
  1441. {"pg_catalog", "pg_stat_database_conflicts", "datid", "oid"},
  1442. {"pg_catalog", "pg_stat_database_conflicts", "datname", "name"},
  1443. {"pg_catalog", "pg_stat_gssapi", "credentials_delegated", "bool"},
  1444. {"pg_catalog", "pg_stat_gssapi", "encrypted", "bool"},
  1445. {"pg_catalog", "pg_stat_gssapi", "gss_authenticated", "bool"},
  1446. {"pg_catalog", "pg_stat_gssapi", "pid", "int4"},
  1447. {"pg_catalog", "pg_stat_gssapi", "principal", "text"},
  1448. {"pg_catalog", "pg_stat_io", "backend_type", "text"},
  1449. {"pg_catalog", "pg_stat_io", "context", "text"},
  1450. {"pg_catalog", "pg_stat_io", "evictions", "int8"},
  1451. {"pg_catalog", "pg_stat_io", "extend_time", "float8"},
  1452. {"pg_catalog", "pg_stat_io", "extends", "int8"},
  1453. {"pg_catalog", "pg_stat_io", "fsync_time", "float8"},
  1454. {"pg_catalog", "pg_stat_io", "fsyncs", "int8"},
  1455. {"pg_catalog", "pg_stat_io", "hits", "int8"},
  1456. {"pg_catalog", "pg_stat_io", "object", "text"},
  1457. {"pg_catalog", "pg_stat_io", "op_bytes", "int8"},
  1458. {"pg_catalog", "pg_stat_io", "read_time", "float8"},
  1459. {"pg_catalog", "pg_stat_io", "reads", "int8"},
  1460. {"pg_catalog", "pg_stat_io", "reuses", "int8"},
  1461. {"pg_catalog", "pg_stat_io", "stats_reset", "timestamptz"},
  1462. {"pg_catalog", "pg_stat_io", "write_time", "float8"},
  1463. {"pg_catalog", "pg_stat_io", "writeback_time", "float8"},
  1464. {"pg_catalog", "pg_stat_io", "writebacks", "int8"},
  1465. {"pg_catalog", "pg_stat_io", "writes", "int8"},
  1466. {"pg_catalog", "pg_stat_progress_analyze", "child_tables_done", "int8"},
  1467. {"pg_catalog", "pg_stat_progress_analyze", "child_tables_total", "int8"},
  1468. {"pg_catalog", "pg_stat_progress_analyze", "current_child_table_relid", "oid"},
  1469. {"pg_catalog", "pg_stat_progress_analyze", "datid", "oid"},
  1470. {"pg_catalog", "pg_stat_progress_analyze", "datname", "name"},
  1471. {"pg_catalog", "pg_stat_progress_analyze", "ext_stats_computed", "int8"},
  1472. {"pg_catalog", "pg_stat_progress_analyze", "ext_stats_total", "int8"},
  1473. {"pg_catalog", "pg_stat_progress_analyze", "phase", "text"},
  1474. {"pg_catalog", "pg_stat_progress_analyze", "pid", "int4"},
  1475. {"pg_catalog", "pg_stat_progress_analyze", "relid", "oid"},
  1476. {"pg_catalog", "pg_stat_progress_analyze", "sample_blks_scanned", "int8"},
  1477. {"pg_catalog", "pg_stat_progress_analyze", "sample_blks_total", "int8"},
  1478. {"pg_catalog", "pg_stat_progress_basebackup", "backup_streamed", "int8"},
  1479. {"pg_catalog", "pg_stat_progress_basebackup", "backup_total", "int8"},
  1480. {"pg_catalog", "pg_stat_progress_basebackup", "phase", "text"},
  1481. {"pg_catalog", "pg_stat_progress_basebackup", "pid", "int4"},
  1482. {"pg_catalog", "pg_stat_progress_basebackup", "tablespaces_streamed", "int8"},
  1483. {"pg_catalog", "pg_stat_progress_basebackup", "tablespaces_total", "int8"},
  1484. {"pg_catalog", "pg_stat_progress_cluster", "cluster_index_relid", "oid"},
  1485. {"pg_catalog", "pg_stat_progress_cluster", "command", "text"},
  1486. {"pg_catalog", "pg_stat_progress_cluster", "datid", "oid"},
  1487. {"pg_catalog", "pg_stat_progress_cluster", "datname", "name"},
  1488. {"pg_catalog", "pg_stat_progress_cluster", "heap_blks_scanned", "int8"},
  1489. {"pg_catalog", "pg_stat_progress_cluster", "heap_blks_total", "int8"},
  1490. {"pg_catalog", "pg_stat_progress_cluster", "heap_tuples_scanned", "int8"},
  1491. {"pg_catalog", "pg_stat_progress_cluster", "heap_tuples_written", "int8"},
  1492. {"pg_catalog", "pg_stat_progress_cluster", "index_rebuild_count", "int8"},
  1493. {"pg_catalog", "pg_stat_progress_cluster", "phase", "text"},
  1494. {"pg_catalog", "pg_stat_progress_cluster", "pid", "int4"},
  1495. {"pg_catalog", "pg_stat_progress_cluster", "relid", "oid"},
  1496. {"pg_catalog", "pg_stat_progress_copy", "bytes_processed", "int8"},
  1497. {"pg_catalog", "pg_stat_progress_copy", "bytes_total", "int8"},
  1498. {"pg_catalog", "pg_stat_progress_copy", "command", "text"},
  1499. {"pg_catalog", "pg_stat_progress_copy", "datid", "oid"},
  1500. {"pg_catalog", "pg_stat_progress_copy", "datname", "name"},
  1501. {"pg_catalog", "pg_stat_progress_copy", "pid", "int4"},
  1502. {"pg_catalog", "pg_stat_progress_copy", "relid", "oid"},
  1503. {"pg_catalog", "pg_stat_progress_copy", "tuples_excluded", "int8"},
  1504. {"pg_catalog", "pg_stat_progress_copy", "tuples_processed", "int8"},
  1505. {"pg_catalog", "pg_stat_progress_copy", "type", "text"},
  1506. {"pg_catalog", "pg_stat_progress_create_index", "blocks_done", "int8"},
  1507. {"pg_catalog", "pg_stat_progress_create_index", "blocks_total", "int8"},
  1508. {"pg_catalog", "pg_stat_progress_create_index", "command", "text"},
  1509. {"pg_catalog", "pg_stat_progress_create_index", "current_locker_pid", "int8"},
  1510. {"pg_catalog", "pg_stat_progress_create_index", "datid", "oid"},
  1511. {"pg_catalog", "pg_stat_progress_create_index", "datname", "name"},
  1512. {"pg_catalog", "pg_stat_progress_create_index", "index_relid", "oid"},
  1513. {"pg_catalog", "pg_stat_progress_create_index", "lockers_done", "int8"},
  1514. {"pg_catalog", "pg_stat_progress_create_index", "lockers_total", "int8"},
  1515. {"pg_catalog", "pg_stat_progress_create_index", "partitions_done", "int8"},
  1516. {"pg_catalog", "pg_stat_progress_create_index", "partitions_total", "int8"},
  1517. {"pg_catalog", "pg_stat_progress_create_index", "phase", "text"},
  1518. {"pg_catalog", "pg_stat_progress_create_index", "pid", "int4"},
  1519. {"pg_catalog", "pg_stat_progress_create_index", "relid", "oid"},
  1520. {"pg_catalog", "pg_stat_progress_create_index", "tuples_done", "int8"},
  1521. {"pg_catalog", "pg_stat_progress_create_index", "tuples_total", "int8"},
  1522. {"pg_catalog", "pg_stat_progress_vacuum", "datid", "oid"},
  1523. {"pg_catalog", "pg_stat_progress_vacuum", "datname", "name"},
  1524. {"pg_catalog", "pg_stat_progress_vacuum", "heap_blks_scanned", "int8"},
  1525. {"pg_catalog", "pg_stat_progress_vacuum", "heap_blks_total", "int8"},
  1526. {"pg_catalog", "pg_stat_progress_vacuum", "heap_blks_vacuumed", "int8"},
  1527. {"pg_catalog", "pg_stat_progress_vacuum", "index_vacuum_count", "int8"},
  1528. {"pg_catalog", "pg_stat_progress_vacuum", "max_dead_tuples", "int8"},
  1529. {"pg_catalog", "pg_stat_progress_vacuum", "num_dead_tuples", "int8"},
  1530. {"pg_catalog", "pg_stat_progress_vacuum", "phase", "text"},
  1531. {"pg_catalog", "pg_stat_progress_vacuum", "pid", "int4"},
  1532. {"pg_catalog", "pg_stat_progress_vacuum", "relid", "oid"},
  1533. {"pg_catalog", "pg_stat_recovery_prefetch", "block_distance", "int4"},
  1534. {"pg_catalog", "pg_stat_recovery_prefetch", "hit", "int8"},
  1535. {"pg_catalog", "pg_stat_recovery_prefetch", "io_depth", "int4"},
  1536. {"pg_catalog", "pg_stat_recovery_prefetch", "prefetch", "int8"},
  1537. {"pg_catalog", "pg_stat_recovery_prefetch", "skip_fpw", "int8"},
  1538. {"pg_catalog", "pg_stat_recovery_prefetch", "skip_init", "int8"},
  1539. {"pg_catalog", "pg_stat_recovery_prefetch", "skip_new", "int8"},
  1540. {"pg_catalog", "pg_stat_recovery_prefetch", "skip_rep", "int8"},
  1541. {"pg_catalog", "pg_stat_recovery_prefetch", "stats_reset", "timestamptz"},
  1542. {"pg_catalog", "pg_stat_recovery_prefetch", "wal_distance", "int4"},
  1543. {"pg_catalog", "pg_stat_replication", "application_name", "text"},
  1544. {"pg_catalog", "pg_stat_replication", "backend_start", "timestamptz"},
  1545. {"pg_catalog", "pg_stat_replication", "backend_xmin", "xid"},
  1546. {"pg_catalog", "pg_stat_replication", "client_addr", "inet"},
  1547. {"pg_catalog", "pg_stat_replication", "client_hostname", "text"},
  1548. {"pg_catalog", "pg_stat_replication", "client_port", "int4"},
  1549. {"pg_catalog", "pg_stat_replication", "flush_lag", "interval"},
  1550. {"pg_catalog", "pg_stat_replication", "flush_lsn", "pg_lsn"},
  1551. {"pg_catalog", "pg_stat_replication", "pid", "int4"},
  1552. {"pg_catalog", "pg_stat_replication", "replay_lag", "interval"},
  1553. {"pg_catalog", "pg_stat_replication", "replay_lsn", "pg_lsn"},
  1554. {"pg_catalog", "pg_stat_replication", "reply_time", "timestamptz"},
  1555. {"pg_catalog", "pg_stat_replication", "sent_lsn", "pg_lsn"},
  1556. {"pg_catalog", "pg_stat_replication", "state", "text"},
  1557. {"pg_catalog", "pg_stat_replication", "sync_priority", "int4"},
  1558. {"pg_catalog", "pg_stat_replication", "sync_state", "text"},
  1559. {"pg_catalog", "pg_stat_replication", "usename", "name"},
  1560. {"pg_catalog", "pg_stat_replication", "usesysid", "oid"},
  1561. {"pg_catalog", "pg_stat_replication", "write_lag", "interval"},
  1562. {"pg_catalog", "pg_stat_replication", "write_lsn", "pg_lsn"},
  1563. {"pg_catalog", "pg_stat_replication_slots", "slot_name", "text"},
  1564. {"pg_catalog", "pg_stat_replication_slots", "spill_bytes", "int8"},
  1565. {"pg_catalog", "pg_stat_replication_slots", "spill_count", "int8"},
  1566. {"pg_catalog", "pg_stat_replication_slots", "spill_txns", "int8"},
  1567. {"pg_catalog", "pg_stat_replication_slots", "stats_reset", "timestamptz"},
  1568. {"pg_catalog", "pg_stat_replication_slots", "stream_bytes", "int8"},
  1569. {"pg_catalog", "pg_stat_replication_slots", "stream_count", "int8"},
  1570. {"pg_catalog", "pg_stat_replication_slots", "stream_txns", "int8"},
  1571. {"pg_catalog", "pg_stat_replication_slots", "total_bytes", "int8"},
  1572. {"pg_catalog", "pg_stat_replication_slots", "total_txns", "int8"},
  1573. {"pg_catalog", "pg_stat_slru", "blks_exists", "int8"},
  1574. {"pg_catalog", "pg_stat_slru", "blks_hit", "int8"},
  1575. {"pg_catalog", "pg_stat_slru", "blks_read", "int8"},
  1576. {"pg_catalog", "pg_stat_slru", "blks_written", "int8"},
  1577. {"pg_catalog", "pg_stat_slru", "blks_zeroed", "int8"},
  1578. {"pg_catalog", "pg_stat_slru", "flushes", "int8"},
  1579. {"pg_catalog", "pg_stat_slru", "name", "text"},
  1580. {"pg_catalog", "pg_stat_slru", "stats_reset", "timestamptz"},
  1581. {"pg_catalog", "pg_stat_slru", "truncates", "int8"},
  1582. {"pg_catalog", "pg_stat_ssl", "bits", "int4"},
  1583. {"pg_catalog", "pg_stat_ssl", "cipher", "text"},
  1584. {"pg_catalog", "pg_stat_ssl", "client_dn", "text"},
  1585. {"pg_catalog", "pg_stat_ssl", "client_serial", "numeric"},
  1586. {"pg_catalog", "pg_stat_ssl", "issuer_dn", "text"},
  1587. {"pg_catalog", "pg_stat_ssl", "pid", "int4"},
  1588. {"pg_catalog", "pg_stat_ssl", "ssl", "bool"},
  1589. {"pg_catalog", "pg_stat_ssl", "version", "text"},
  1590. {"pg_catalog", "pg_stat_subscription", "last_msg_receipt_time", "timestamptz"},
  1591. {"pg_catalog", "pg_stat_subscription", "last_msg_send_time", "timestamptz"},
  1592. {"pg_catalog", "pg_stat_subscription", "latest_end_lsn", "pg_lsn"},
  1593. {"pg_catalog", "pg_stat_subscription", "latest_end_time", "timestamptz"},
  1594. {"pg_catalog", "pg_stat_subscription", "leader_pid", "int4"},
  1595. {"pg_catalog", "pg_stat_subscription", "pid", "int4"},
  1596. {"pg_catalog", "pg_stat_subscription", "received_lsn", "pg_lsn"},
  1597. {"pg_catalog", "pg_stat_subscription", "relid", "oid"},
  1598. {"pg_catalog", "pg_stat_subscription", "subid", "oid"},
  1599. {"pg_catalog", "pg_stat_subscription", "subname", "name"},
  1600. {"pg_catalog", "pg_stat_subscription_stats", "apply_error_count", "int8"},
  1601. {"pg_catalog", "pg_stat_subscription_stats", "stats_reset", "timestamptz"},
  1602. {"pg_catalog", "pg_stat_subscription_stats", "subid", "oid"},
  1603. {"pg_catalog", "pg_stat_subscription_stats", "subname", "name"},
  1604. {"pg_catalog", "pg_stat_subscription_stats", "sync_error_count", "int8"},
  1605. {"pg_catalog", "pg_stat_sys_indexes", "idx_scan", "int8"},
  1606. {"pg_catalog", "pg_stat_sys_indexes", "idx_tup_fetch", "int8"},
  1607. {"pg_catalog", "pg_stat_sys_indexes", "idx_tup_read", "int8"},
  1608. {"pg_catalog", "pg_stat_sys_indexes", "indexrelid", "oid"},
  1609. {"pg_catalog", "pg_stat_sys_indexes", "indexrelname", "name"},
  1610. {"pg_catalog", "pg_stat_sys_indexes", "last_idx_scan", "timestamptz"},
  1611. {"pg_catalog", "pg_stat_sys_indexes", "relid", "oid"},
  1612. {"pg_catalog", "pg_stat_sys_indexes", "relname", "name"},
  1613. {"pg_catalog", "pg_stat_sys_indexes", "schemaname", "name"},
  1614. {"pg_catalog", "pg_stat_sys_tables", "analyze_count", "int8"},
  1615. {"pg_catalog", "pg_stat_sys_tables", "autoanalyze_count", "int8"},
  1616. {"pg_catalog", "pg_stat_sys_tables", "autovacuum_count", "int8"},
  1617. {"pg_catalog", "pg_stat_sys_tables", "idx_scan", "int8"},
  1618. {"pg_catalog", "pg_stat_sys_tables", "idx_tup_fetch", "int8"},
  1619. {"pg_catalog", "pg_stat_sys_tables", "last_analyze", "timestamptz"},
  1620. {"pg_catalog", "pg_stat_sys_tables", "last_autoanalyze", "timestamptz"},
  1621. {"pg_catalog", "pg_stat_sys_tables", "last_autovacuum", "timestamptz"},
  1622. {"pg_catalog", "pg_stat_sys_tables", "last_idx_scan", "timestamptz"},
  1623. {"pg_catalog", "pg_stat_sys_tables", "last_seq_scan", "timestamptz"},
  1624. {"pg_catalog", "pg_stat_sys_tables", "last_vacuum", "timestamptz"},
  1625. {"pg_catalog", "pg_stat_sys_tables", "n_dead_tup", "int8"},
  1626. {"pg_catalog", "pg_stat_sys_tables", "n_ins_since_vacuum", "int8"},
  1627. {"pg_catalog", "pg_stat_sys_tables", "n_live_tup", "int8"},
  1628. {"pg_catalog", "pg_stat_sys_tables", "n_mod_since_analyze", "int8"},
  1629. {"pg_catalog", "pg_stat_sys_tables", "n_tup_del", "int8"},
  1630. {"pg_catalog", "pg_stat_sys_tables", "n_tup_hot_upd", "int8"},
  1631. {"pg_catalog", "pg_stat_sys_tables", "n_tup_ins", "int8"},
  1632. {"pg_catalog", "pg_stat_sys_tables", "n_tup_newpage_upd", "int8"},
  1633. {"pg_catalog", "pg_stat_sys_tables", "n_tup_upd", "int8"},
  1634. {"pg_catalog", "pg_stat_sys_tables", "relid", "oid"},
  1635. {"pg_catalog", "pg_stat_sys_tables", "relname", "name"},
  1636. {"pg_catalog", "pg_stat_sys_tables", "schemaname", "name"},
  1637. {"pg_catalog", "pg_stat_sys_tables", "seq_scan", "int8"},
  1638. {"pg_catalog", "pg_stat_sys_tables", "seq_tup_read", "int8"},
  1639. {"pg_catalog", "pg_stat_sys_tables", "vacuum_count", "int8"},
  1640. {"pg_catalog", "pg_stat_user_functions", "calls", "int8"},
  1641. {"pg_catalog", "pg_stat_user_functions", "funcid", "oid"},
  1642. {"pg_catalog", "pg_stat_user_functions", "funcname", "name"},
  1643. {"pg_catalog", "pg_stat_user_functions", "schemaname", "name"},
  1644. {"pg_catalog", "pg_stat_user_functions", "self_time", "float8"},
  1645. {"pg_catalog", "pg_stat_user_functions", "total_time", "float8"},
  1646. {"pg_catalog", "pg_stat_user_indexes", "idx_scan", "int8"},
  1647. {"pg_catalog", "pg_stat_user_indexes", "idx_tup_fetch", "int8"},
  1648. {"pg_catalog", "pg_stat_user_indexes", "idx_tup_read", "int8"},
  1649. {"pg_catalog", "pg_stat_user_indexes", "indexrelid", "oid"},
  1650. {"pg_catalog", "pg_stat_user_indexes", "indexrelname", "name"},
  1651. {"pg_catalog", "pg_stat_user_indexes", "last_idx_scan", "timestamptz"},
  1652. {"pg_catalog", "pg_stat_user_indexes", "relid", "oid"},
  1653. {"pg_catalog", "pg_stat_user_indexes", "relname", "name"},
  1654. {"pg_catalog", "pg_stat_user_indexes", "schemaname", "name"},
  1655. {"pg_catalog", "pg_stat_user_tables", "analyze_count", "int8"},
  1656. {"pg_catalog", "pg_stat_user_tables", "autoanalyze_count", "int8"},
  1657. {"pg_catalog", "pg_stat_user_tables", "autovacuum_count", "int8"},
  1658. {"pg_catalog", "pg_stat_user_tables", "idx_scan", "int8"},
  1659. {"pg_catalog", "pg_stat_user_tables", "idx_tup_fetch", "int8"},
  1660. {"pg_catalog", "pg_stat_user_tables", "last_analyze", "timestamptz"},
  1661. {"pg_catalog", "pg_stat_user_tables", "last_autoanalyze", "timestamptz"},
  1662. {"pg_catalog", "pg_stat_user_tables", "last_autovacuum", "timestamptz"},
  1663. {"pg_catalog", "pg_stat_user_tables", "last_idx_scan", "timestamptz"},
  1664. {"pg_catalog", "pg_stat_user_tables", "last_seq_scan", "timestamptz"},
  1665. {"pg_catalog", "pg_stat_user_tables", "last_vacuum", "timestamptz"},
  1666. {"pg_catalog", "pg_stat_user_tables", "n_dead_tup", "int8"},
  1667. {"pg_catalog", "pg_stat_user_tables", "n_ins_since_vacuum", "int8"},
  1668. {"pg_catalog", "pg_stat_user_tables", "n_live_tup", "int8"},
  1669. {"pg_catalog", "pg_stat_user_tables", "n_mod_since_analyze", "int8"},
  1670. {"pg_catalog", "pg_stat_user_tables", "n_tup_del", "int8"},
  1671. {"pg_catalog", "pg_stat_user_tables", "n_tup_hot_upd", "int8"},
  1672. {"pg_catalog", "pg_stat_user_tables", "n_tup_ins", "int8"},
  1673. {"pg_catalog", "pg_stat_user_tables", "n_tup_newpage_upd", "int8"},
  1674. {"pg_catalog", "pg_stat_user_tables", "n_tup_upd", "int8"},
  1675. {"pg_catalog", "pg_stat_user_tables", "relid", "oid"},
  1676. {"pg_catalog", "pg_stat_user_tables", "relname", "name"},
  1677. {"pg_catalog", "pg_stat_user_tables", "schemaname", "name"},
  1678. {"pg_catalog", "pg_stat_user_tables", "seq_scan", "int8"},
  1679. {"pg_catalog", "pg_stat_user_tables", "seq_tup_read", "int8"},
  1680. {"pg_catalog", "pg_stat_user_tables", "vacuum_count", "int8"},
  1681. {"pg_catalog", "pg_stat_wal", "stats_reset", "timestamptz"},
  1682. {"pg_catalog", "pg_stat_wal", "wal_buffers_full", "int8"},
  1683. {"pg_catalog", "pg_stat_wal", "wal_bytes", "numeric"},
  1684. {"pg_catalog", "pg_stat_wal", "wal_fpi", "int8"},
  1685. {"pg_catalog", "pg_stat_wal", "wal_records", "int8"},
  1686. {"pg_catalog", "pg_stat_wal", "wal_sync", "int8"},
  1687. {"pg_catalog", "pg_stat_wal", "wal_sync_time", "float8"},
  1688. {"pg_catalog", "pg_stat_wal", "wal_write", "int8"},
  1689. {"pg_catalog", "pg_stat_wal", "wal_write_time", "float8"},
  1690. {"pg_catalog", "pg_stat_wal_receiver", "conninfo", "text"},
  1691. {"pg_catalog", "pg_stat_wal_receiver", "flushed_lsn", "pg_lsn"},
  1692. {"pg_catalog", "pg_stat_wal_receiver", "last_msg_receipt_time", "timestamptz"},
  1693. {"pg_catalog", "pg_stat_wal_receiver", "last_msg_send_time", "timestamptz"},
  1694. {"pg_catalog", "pg_stat_wal_receiver", "latest_end_lsn", "pg_lsn"},
  1695. {"pg_catalog", "pg_stat_wal_receiver", "latest_end_time", "timestamptz"},
  1696. {"pg_catalog", "pg_stat_wal_receiver", "pid", "int4"},
  1697. {"pg_catalog", "pg_stat_wal_receiver", "receive_start_lsn", "pg_lsn"},
  1698. {"pg_catalog", "pg_stat_wal_receiver", "receive_start_tli", "int4"},
  1699. {"pg_catalog", "pg_stat_wal_receiver", "received_tli", "int4"},
  1700. {"pg_catalog", "pg_stat_wal_receiver", "sender_host", "text"},
  1701. {"pg_catalog", "pg_stat_wal_receiver", "sender_port", "int4"},
  1702. {"pg_catalog", "pg_stat_wal_receiver", "slot_name", "text"},
  1703. {"pg_catalog", "pg_stat_wal_receiver", "status", "text"},
  1704. {"pg_catalog", "pg_stat_wal_receiver", "written_lsn", "pg_lsn"},
  1705. {"pg_catalog", "pg_stat_xact_all_tables", "idx_scan", "int8"},
  1706. {"pg_catalog", "pg_stat_xact_all_tables", "idx_tup_fetch", "int8"},
  1707. {"pg_catalog", "pg_stat_xact_all_tables", "n_tup_del", "int8"},
  1708. {"pg_catalog", "pg_stat_xact_all_tables", "n_tup_hot_upd", "int8"},
  1709. {"pg_catalog", "pg_stat_xact_all_tables", "n_tup_ins", "int8"},
  1710. {"pg_catalog", "pg_stat_xact_all_tables", "n_tup_newpage_upd", "int8"},
  1711. {"pg_catalog", "pg_stat_xact_all_tables", "n_tup_upd", "int8"},
  1712. {"pg_catalog", "pg_stat_xact_all_tables", "relid", "oid"},
  1713. {"pg_catalog", "pg_stat_xact_all_tables", "relname", "name"},
  1714. {"pg_catalog", "pg_stat_xact_all_tables", "schemaname", "name"},
  1715. {"pg_catalog", "pg_stat_xact_all_tables", "seq_scan", "int8"},
  1716. {"pg_catalog", "pg_stat_xact_all_tables", "seq_tup_read", "int8"},
  1717. {"pg_catalog", "pg_stat_xact_sys_tables", "idx_scan", "int8"},
  1718. {"pg_catalog", "pg_stat_xact_sys_tables", "idx_tup_fetch", "int8"},
  1719. {"pg_catalog", "pg_stat_xact_sys_tables", "n_tup_del", "int8"},
  1720. {"pg_catalog", "pg_stat_xact_sys_tables", "n_tup_hot_upd", "int8"},
  1721. {"pg_catalog", "pg_stat_xact_sys_tables", "n_tup_ins", "int8"},
  1722. {"pg_catalog", "pg_stat_xact_sys_tables", "n_tup_newpage_upd", "int8"},
  1723. {"pg_catalog", "pg_stat_xact_sys_tables", "n_tup_upd", "int8"},
  1724. {"pg_catalog", "pg_stat_xact_sys_tables", "relid", "oid"},
  1725. {"pg_catalog", "pg_stat_xact_sys_tables", "relname", "name"},
  1726. {"pg_catalog", "pg_stat_xact_sys_tables", "schemaname", "name"},
  1727. {"pg_catalog", "pg_stat_xact_sys_tables", "seq_scan", "int8"},
  1728. {"pg_catalog", "pg_stat_xact_sys_tables", "seq_tup_read", "int8"},
  1729. {"pg_catalog", "pg_stat_xact_user_functions", "calls", "int8"},
  1730. {"pg_catalog", "pg_stat_xact_user_functions", "funcid", "oid"},
  1731. {"pg_catalog", "pg_stat_xact_user_functions", "funcname", "name"},
  1732. {"pg_catalog", "pg_stat_xact_user_functions", "schemaname", "name"},
  1733. {"pg_catalog", "pg_stat_xact_user_functions", "self_time", "float8"},
  1734. {"pg_catalog", "pg_stat_xact_user_functions", "total_time", "float8"},
  1735. {"pg_catalog", "pg_stat_xact_user_tables", "idx_scan", "int8"},
  1736. {"pg_catalog", "pg_stat_xact_user_tables", "idx_tup_fetch", "int8"},
  1737. {"pg_catalog", "pg_stat_xact_user_tables", "n_tup_del", "int8"},
  1738. {"pg_catalog", "pg_stat_xact_user_tables", "n_tup_hot_upd", "int8"},
  1739. {"pg_catalog", "pg_stat_xact_user_tables", "n_tup_ins", "int8"},
  1740. {"pg_catalog", "pg_stat_xact_user_tables", "n_tup_newpage_upd", "int8"},
  1741. {"pg_catalog", "pg_stat_xact_user_tables", "n_tup_upd", "int8"},
  1742. {"pg_catalog", "pg_stat_xact_user_tables", "relid", "oid"},
  1743. {"pg_catalog", "pg_stat_xact_user_tables", "relname", "name"},
  1744. {"pg_catalog", "pg_stat_xact_user_tables", "schemaname", "name"},
  1745. {"pg_catalog", "pg_stat_xact_user_tables", "seq_scan", "int8"},
  1746. {"pg_catalog", "pg_stat_xact_user_tables", "seq_tup_read", "int8"},
  1747. {"pg_catalog", "pg_statio_all_indexes", "idx_blks_hit", "int8"},
  1748. {"pg_catalog", "pg_statio_all_indexes", "idx_blks_read", "int8"},
  1749. {"pg_catalog", "pg_statio_all_indexes", "indexrelid", "oid"},
  1750. {"pg_catalog", "pg_statio_all_indexes", "indexrelname", "name"},
  1751. {"pg_catalog", "pg_statio_all_indexes", "relid", "oid"},
  1752. {"pg_catalog", "pg_statio_all_indexes", "relname", "name"},
  1753. {"pg_catalog", "pg_statio_all_indexes", "schemaname", "name"},
  1754. {"pg_catalog", "pg_statio_all_sequences", "blks_hit", "int8"},
  1755. {"pg_catalog", "pg_statio_all_sequences", "blks_read", "int8"},
  1756. {"pg_catalog", "pg_statio_all_sequences", "relid", "oid"},
  1757. {"pg_catalog", "pg_statio_all_sequences", "relname", "name"},
  1758. {"pg_catalog", "pg_statio_all_sequences", "schemaname", "name"},
  1759. {"pg_catalog", "pg_statio_all_tables", "heap_blks_hit", "int8"},
  1760. {"pg_catalog", "pg_statio_all_tables", "heap_blks_read", "int8"},
  1761. {"pg_catalog", "pg_statio_all_tables", "idx_blks_hit", "int8"},
  1762. {"pg_catalog", "pg_statio_all_tables", "idx_blks_read", "int8"},
  1763. {"pg_catalog", "pg_statio_all_tables", "relid", "oid"},
  1764. {"pg_catalog", "pg_statio_all_tables", "relname", "name"},
  1765. {"pg_catalog", "pg_statio_all_tables", "schemaname", "name"},
  1766. {"pg_catalog", "pg_statio_all_tables", "tidx_blks_hit", "int8"},
  1767. {"pg_catalog", "pg_statio_all_tables", "tidx_blks_read", "int8"},
  1768. {"pg_catalog", "pg_statio_all_tables", "toast_blks_hit", "int8"},
  1769. {"pg_catalog", "pg_statio_all_tables", "toast_blks_read", "int8"},
  1770. {"pg_catalog", "pg_statio_sys_indexes", "idx_blks_hit", "int8"},
  1771. {"pg_catalog", "pg_statio_sys_indexes", "idx_blks_read", "int8"},
  1772. {"pg_catalog", "pg_statio_sys_indexes", "indexrelid", "oid"},
  1773. {"pg_catalog", "pg_statio_sys_indexes", "indexrelname", "name"},
  1774. {"pg_catalog", "pg_statio_sys_indexes", "relid", "oid"},
  1775. {"pg_catalog", "pg_statio_sys_indexes", "relname", "name"},
  1776. {"pg_catalog", "pg_statio_sys_indexes", "schemaname", "name"},
  1777. {"pg_catalog", "pg_statio_sys_sequences", "blks_hit", "int8"},
  1778. {"pg_catalog", "pg_statio_sys_sequences", "blks_read", "int8"},
  1779. {"pg_catalog", "pg_statio_sys_sequences", "relid", "oid"},
  1780. {"pg_catalog", "pg_statio_sys_sequences", "relname", "name"},
  1781. {"pg_catalog", "pg_statio_sys_sequences", "schemaname", "name"},
  1782. {"pg_catalog", "pg_statio_sys_tables", "heap_blks_hit", "int8"},
  1783. {"pg_catalog", "pg_statio_sys_tables", "heap_blks_read", "int8"},
  1784. {"pg_catalog", "pg_statio_sys_tables", "idx_blks_hit", "int8"},
  1785. {"pg_catalog", "pg_statio_sys_tables", "idx_blks_read", "int8"},
  1786. {"pg_catalog", "pg_statio_sys_tables", "relid", "oid"},
  1787. {"pg_catalog", "pg_statio_sys_tables", "relname", "name"},
  1788. {"pg_catalog", "pg_statio_sys_tables", "schemaname", "name"},
  1789. {"pg_catalog", "pg_statio_sys_tables", "tidx_blks_hit", "int8"},
  1790. {"pg_catalog", "pg_statio_sys_tables", "tidx_blks_read", "int8"},
  1791. {"pg_catalog", "pg_statio_sys_tables", "toast_blks_hit", "int8"},
  1792. {"pg_catalog", "pg_statio_sys_tables", "toast_blks_read", "int8"},
  1793. {"pg_catalog", "pg_statio_user_indexes", "idx_blks_hit", "int8"},
  1794. {"pg_catalog", "pg_statio_user_indexes", "idx_blks_read", "int8"},
  1795. {"pg_catalog", "pg_statio_user_indexes", "indexrelid", "oid"},
  1796. {"pg_catalog", "pg_statio_user_indexes", "indexrelname", "name"},
  1797. {"pg_catalog", "pg_statio_user_indexes", "relid", "oid"},
  1798. {"pg_catalog", "pg_statio_user_indexes", "relname", "name"},
  1799. {"pg_catalog", "pg_statio_user_indexes", "schemaname", "name"},
  1800. {"pg_catalog", "pg_statio_user_sequences", "blks_hit", "int8"},
  1801. {"pg_catalog", "pg_statio_user_sequences", "blks_read", "int8"},
  1802. {"pg_catalog", "pg_statio_user_sequences", "relid", "oid"},
  1803. {"pg_catalog", "pg_statio_user_sequences", "relname", "name"},
  1804. {"pg_catalog", "pg_statio_user_sequences", "schemaname", "name"},
  1805. {"pg_catalog", "pg_statio_user_tables", "heap_blks_hit", "int8"},
  1806. {"pg_catalog", "pg_statio_user_tables", "heap_blks_read", "int8"},
  1807. {"pg_catalog", "pg_statio_user_tables", "idx_blks_hit", "int8"},
  1808. {"pg_catalog", "pg_statio_user_tables", "idx_blks_read", "int8"},
  1809. {"pg_catalog", "pg_statio_user_tables", "relid", "oid"},
  1810. {"pg_catalog", "pg_statio_user_tables", "relname", "name"},
  1811. {"pg_catalog", "pg_statio_user_tables", "schemaname", "name"},
  1812. {"pg_catalog", "pg_statio_user_tables", "tidx_blks_hit", "int8"},
  1813. {"pg_catalog", "pg_statio_user_tables", "tidx_blks_read", "int8"},
  1814. {"pg_catalog", "pg_statio_user_tables", "toast_blks_hit", "int8"},
  1815. {"pg_catalog", "pg_statio_user_tables", "toast_blks_read", "int8"},
  1816. {"pg_catalog", "pg_statistic", "staattnum", "int2"},
  1817. {"pg_catalog", "pg_statistic", "stacoll1", "oid"},
  1818. {"pg_catalog", "pg_statistic", "stacoll2", "oid"},
  1819. {"pg_catalog", "pg_statistic", "stacoll3", "oid"},
  1820. {"pg_catalog", "pg_statistic", "stacoll4", "oid"},
  1821. {"pg_catalog", "pg_statistic", "stacoll5", "oid"},
  1822. {"pg_catalog", "pg_statistic", "stadistinct", "float4"},
  1823. {"pg_catalog", "pg_statistic", "stainherit", "bool"},
  1824. {"pg_catalog", "pg_statistic", "stakind1", "int2"},
  1825. {"pg_catalog", "pg_statistic", "stakind2", "int2"},
  1826. {"pg_catalog", "pg_statistic", "stakind3", "int2"},
  1827. {"pg_catalog", "pg_statistic", "stakind4", "int2"},
  1828. {"pg_catalog", "pg_statistic", "stakind5", "int2"},
  1829. {"pg_catalog", "pg_statistic", "stanullfrac", "float4"},
  1830. {"pg_catalog", "pg_statistic", "stanumbers1", "_float4"},
  1831. {"pg_catalog", "pg_statistic", "stanumbers2", "_float4"},
  1832. {"pg_catalog", "pg_statistic", "stanumbers3", "_float4"},
  1833. {"pg_catalog", "pg_statistic", "stanumbers4", "_float4"},
  1834. {"pg_catalog", "pg_statistic", "stanumbers5", "_float4"},
  1835. {"pg_catalog", "pg_statistic", "staop1", "oid"},
  1836. {"pg_catalog", "pg_statistic", "staop2", "oid"},
  1837. {"pg_catalog", "pg_statistic", "staop3", "oid"},
  1838. {"pg_catalog", "pg_statistic", "staop4", "oid"},
  1839. {"pg_catalog", "pg_statistic", "staop5", "oid"},
  1840. {"pg_catalog", "pg_statistic", "starelid", "oid"},
  1841. {"pg_catalog", "pg_statistic", "stavalues1", "anyarray"},
  1842. {"pg_catalog", "pg_statistic", "stavalues2", "anyarray"},
  1843. {"pg_catalog", "pg_statistic", "stavalues3", "anyarray"},
  1844. {"pg_catalog", "pg_statistic", "stavalues4", "anyarray"},
  1845. {"pg_catalog", "pg_statistic", "stavalues5", "anyarray"},
  1846. {"pg_catalog", "pg_statistic", "stawidth", "int4"},
  1847. {"pg_catalog", "pg_statistic_ext", "oid", "oid"},
  1848. {"pg_catalog", "pg_statistic_ext", "stxexprs", "pg_node_tree"},
  1849. {"pg_catalog", "pg_statistic_ext", "stxkeys", "int2vector"},
  1850. {"pg_catalog", "pg_statistic_ext", "stxkind", "_char"},
  1851. {"pg_catalog", "pg_statistic_ext", "stxname", "name"},
  1852. {"pg_catalog", "pg_statistic_ext", "stxnamespace", "oid"},
  1853. {"pg_catalog", "pg_statistic_ext", "stxowner", "oid"},
  1854. {"pg_catalog", "pg_statistic_ext", "stxrelid", "oid"},
  1855. {"pg_catalog", "pg_statistic_ext", "stxstattarget", "int4"},
  1856. {"pg_catalog", "pg_statistic_ext_data", "stxddependencies", "pg_dependencies"},
  1857. {"pg_catalog", "pg_statistic_ext_data", "stxdexpr", "_pg_statistic"},
  1858. {"pg_catalog", "pg_statistic_ext_data", "stxdinherit", "bool"},
  1859. {"pg_catalog", "pg_statistic_ext_data", "stxdmcv", "pg_mcv_list"},
  1860. {"pg_catalog", "pg_statistic_ext_data", "stxdndistinct", "pg_ndistinct"},
  1861. {"pg_catalog", "pg_statistic_ext_data", "stxoid", "oid"},
  1862. {"pg_catalog", "pg_stats", "attname", "name"},
  1863. {"pg_catalog", "pg_stats", "avg_width", "int4"},
  1864. {"pg_catalog", "pg_stats", "correlation", "float4"},
  1865. {"pg_catalog", "pg_stats", "elem_count_histogram", "_float4"},
  1866. {"pg_catalog", "pg_stats", "histogram_bounds", "anyarray"},
  1867. {"pg_catalog", "pg_stats", "inherited", "bool"},
  1868. {"pg_catalog", "pg_stats", "most_common_elem_freqs", "_float4"},
  1869. {"pg_catalog", "pg_stats", "most_common_elems", "anyarray"},
  1870. {"pg_catalog", "pg_stats", "most_common_freqs", "_float4"},
  1871. {"pg_catalog", "pg_stats", "most_common_vals", "anyarray"},
  1872. {"pg_catalog", "pg_stats", "n_distinct", "float4"},
  1873. {"pg_catalog", "pg_stats", "null_frac", "float4"},
  1874. {"pg_catalog", "pg_stats", "schemaname", "name"},
  1875. {"pg_catalog", "pg_stats", "tablename", "name"},
  1876. {"pg_catalog", "pg_stats_ext", "attnames", "_name"},
  1877. {"pg_catalog", "pg_stats_ext", "dependencies", "pg_dependencies"},
  1878. {"pg_catalog", "pg_stats_ext", "exprs", "_text"},
  1879. {"pg_catalog", "pg_stats_ext", "inherited", "bool"},
  1880. {"pg_catalog", "pg_stats_ext", "kinds", "_char"},
  1881. {"pg_catalog", "pg_stats_ext", "most_common_base_freqs", "_float8"},
  1882. {"pg_catalog", "pg_stats_ext", "most_common_freqs", "_float8"},
  1883. {"pg_catalog", "pg_stats_ext", "most_common_val_nulls", "_bool"},
  1884. {"pg_catalog", "pg_stats_ext", "most_common_vals", "_text"},
  1885. {"pg_catalog", "pg_stats_ext", "n_distinct", "pg_ndistinct"},
  1886. {"pg_catalog", "pg_stats_ext", "schemaname", "name"},
  1887. {"pg_catalog", "pg_stats_ext", "statistics_name", "name"},
  1888. {"pg_catalog", "pg_stats_ext", "statistics_owner", "name"},
  1889. {"pg_catalog", "pg_stats_ext", "statistics_schemaname", "name"},
  1890. {"pg_catalog", "pg_stats_ext", "tablename", "name"},
  1891. {"pg_catalog", "pg_stats_ext_exprs", "avg_width", "int4"},
  1892. {"pg_catalog", "pg_stats_ext_exprs", "correlation", "float4"},
  1893. {"pg_catalog", "pg_stats_ext_exprs", "elem_count_histogram", "_float4"},
  1894. {"pg_catalog", "pg_stats_ext_exprs", "expr", "text"},
  1895. {"pg_catalog", "pg_stats_ext_exprs", "histogram_bounds", "anyarray"},
  1896. {"pg_catalog", "pg_stats_ext_exprs", "inherited", "bool"},
  1897. {"pg_catalog", "pg_stats_ext_exprs", "most_common_elem_freqs", "_float4"},
  1898. {"pg_catalog", "pg_stats_ext_exprs", "most_common_elems", "anyarray"},
  1899. {"pg_catalog", "pg_stats_ext_exprs", "most_common_freqs", "_float4"},
  1900. {"pg_catalog", "pg_stats_ext_exprs", "most_common_vals", "anyarray"},
  1901. {"pg_catalog", "pg_stats_ext_exprs", "n_distinct", "float4"},
  1902. {"pg_catalog", "pg_stats_ext_exprs", "null_frac", "float4"},
  1903. {"pg_catalog", "pg_stats_ext_exprs", "schemaname", "name"},
  1904. {"pg_catalog", "pg_stats_ext_exprs", "statistics_name", "name"},
  1905. {"pg_catalog", "pg_stats_ext_exprs", "statistics_owner", "name"},
  1906. {"pg_catalog", "pg_stats_ext_exprs", "statistics_schemaname", "name"},
  1907. {"pg_catalog", "pg_stats_ext_exprs", "tablename", "name"},
  1908. {"pg_catalog", "pg_subscription", "oid", "oid"},
  1909. {"pg_catalog", "pg_subscription", "subbinary", "bool"},
  1910. {"pg_catalog", "pg_subscription", "subconninfo", "text"},
  1911. {"pg_catalog", "pg_subscription", "subdbid", "oid"},
  1912. {"pg_catalog", "pg_subscription", "subdisableonerr", "bool"},
  1913. {"pg_catalog", "pg_subscription", "subenabled", "bool"},
  1914. {"pg_catalog", "pg_subscription", "subname", "name"},
  1915. {"pg_catalog", "pg_subscription", "suborigin", "text"},
  1916. {"pg_catalog", "pg_subscription", "subowner", "oid"},
  1917. {"pg_catalog", "pg_subscription", "subpasswordrequired", "bool"},
  1918. {"pg_catalog", "pg_subscription", "subpublications", "_text"},
  1919. {"pg_catalog", "pg_subscription", "subrunasowner", "bool"},
  1920. {"pg_catalog", "pg_subscription", "subskiplsn", "pg_lsn"},
  1921. {"pg_catalog", "pg_subscription", "subslotname", "name"},
  1922. {"pg_catalog", "pg_subscription", "substream", "char"},
  1923. {"pg_catalog", "pg_subscription", "subsynccommit", "text"},
  1924. {"pg_catalog", "pg_subscription", "subtwophasestate", "char"},
  1925. {"pg_catalog", "pg_subscription_rel", "srrelid", "oid"},
  1926. {"pg_catalog", "pg_subscription_rel", "srsubid", "oid"},
  1927. {"pg_catalog", "pg_subscription_rel", "srsublsn", "pg_lsn"},
  1928. {"pg_catalog", "pg_subscription_rel", "srsubstate", "char"},
  1929. {"pg_catalog", "pg_tables", "hasindexes", "bool"},
  1930. {"pg_catalog", "pg_tables", "hasrules", "bool"},
  1931. {"pg_catalog", "pg_tables", "hastriggers", "bool"},
  1932. {"pg_catalog", "pg_tables", "rowsecurity", "bool"},
  1933. {"pg_catalog", "pg_tables", "schemaname", "name"},
  1934. {"pg_catalog", "pg_tables", "tablename", "name"},
  1935. {"pg_catalog", "pg_tables", "tableowner", "name"},
  1936. {"pg_catalog", "pg_tables", "tablespace", "name"},
  1937. {"pg_catalog", "pg_tablespace", "oid", "oid"},
  1938. {"pg_catalog", "pg_tablespace", "spcacl", "_aclitem"},
  1939. {"pg_catalog", "pg_tablespace", "spcname", "name"},
  1940. {"pg_catalog", "pg_tablespace", "spcoptions", "_text"},
  1941. {"pg_catalog", "pg_tablespace", "spcowner", "oid"},
  1942. {"pg_catalog", "pg_timezone_abbrevs", "abbrev", "text"},
  1943. {"pg_catalog", "pg_timezone_abbrevs", "is_dst", "bool"},
  1944. {"pg_catalog", "pg_timezone_abbrevs", "utc_offset", "interval"},
  1945. {"pg_catalog", "pg_timezone_names", "abbrev", "text"},
  1946. {"pg_catalog", "pg_timezone_names", "is_dst", "bool"},
  1947. {"pg_catalog", "pg_timezone_names", "name", "text"},
  1948. {"pg_catalog", "pg_timezone_names", "utc_offset", "interval"},
  1949. {"pg_catalog", "pg_transform", "oid", "oid"},
  1950. {"pg_catalog", "pg_transform", "trffromsql", "regproc"},
  1951. {"pg_catalog", "pg_transform", "trflang", "oid"},
  1952. {"pg_catalog", "pg_transform", "trftosql", "regproc"},
  1953. {"pg_catalog", "pg_transform", "trftype", "oid"},
  1954. {"pg_catalog", "pg_trigger", "oid", "oid"},
  1955. {"pg_catalog", "pg_trigger", "tgargs", "bytea"},
  1956. {"pg_catalog", "pg_trigger", "tgattr", "int2vector"},
  1957. {"pg_catalog", "pg_trigger", "tgconstraint", "oid"},
  1958. {"pg_catalog", "pg_trigger", "tgconstrindid", "oid"},
  1959. {"pg_catalog", "pg_trigger", "tgconstrrelid", "oid"},
  1960. {"pg_catalog", "pg_trigger", "tgdeferrable", "bool"},
  1961. {"pg_catalog", "pg_trigger", "tgenabled", "char"},
  1962. {"pg_catalog", "pg_trigger", "tgfoid", "oid"},
  1963. {"pg_catalog", "pg_trigger", "tginitdeferred", "bool"},
  1964. {"pg_catalog", "pg_trigger", "tgisinternal", "bool"},
  1965. {"pg_catalog", "pg_trigger", "tgname", "name"},
  1966. {"pg_catalog", "pg_trigger", "tgnargs", "int2"},
  1967. {"pg_catalog", "pg_trigger", "tgnewtable", "name"},
  1968. {"pg_catalog", "pg_trigger", "tgoldtable", "name"},
  1969. {"pg_catalog", "pg_trigger", "tgparentid", "oid"},
  1970. {"pg_catalog", "pg_trigger", "tgqual", "pg_node_tree"},
  1971. {"pg_catalog", "pg_trigger", "tgrelid", "oid"},
  1972. {"pg_catalog", "pg_trigger", "tgtype", "int2"},
  1973. {"pg_catalog", "pg_ts_config", "cfgname", "name"},
  1974. {"pg_catalog", "pg_ts_config", "cfgnamespace", "oid"},
  1975. {"pg_catalog", "pg_ts_config", "cfgowner", "oid"},
  1976. {"pg_catalog", "pg_ts_config", "cfgparser", "oid"},
  1977. {"pg_catalog", "pg_ts_config", "oid", "oid"},
  1978. {"pg_catalog", "pg_ts_config_map", "mapcfg", "oid"},
  1979. {"pg_catalog", "pg_ts_config_map", "mapdict", "oid"},
  1980. {"pg_catalog", "pg_ts_config_map", "mapseqno", "int4"},
  1981. {"pg_catalog", "pg_ts_config_map", "maptokentype", "int4"},
  1982. {"pg_catalog", "pg_ts_dict", "dictinitoption", "text"},
  1983. {"pg_catalog", "pg_ts_dict", "dictname", "name"},
  1984. {"pg_catalog", "pg_ts_dict", "dictnamespace", "oid"},
  1985. {"pg_catalog", "pg_ts_dict", "dictowner", "oid"},
  1986. {"pg_catalog", "pg_ts_dict", "dicttemplate", "oid"},
  1987. {"pg_catalog", "pg_ts_dict", "oid", "oid"},
  1988. {"pg_catalog", "pg_ts_parser", "oid", "oid"},
  1989. {"pg_catalog", "pg_ts_parser", "prsend", "regproc"},
  1990. {"pg_catalog", "pg_ts_parser", "prsheadline", "regproc"},
  1991. {"pg_catalog", "pg_ts_parser", "prslextype", "regproc"},
  1992. {"pg_catalog", "pg_ts_parser", "prsname", "name"},
  1993. {"pg_catalog", "pg_ts_parser", "prsnamespace", "oid"},
  1994. {"pg_catalog", "pg_ts_parser", "prsstart", "regproc"},
  1995. {"pg_catalog", "pg_ts_parser", "prstoken", "regproc"},
  1996. {"pg_catalog", "pg_ts_template", "oid", "oid"},
  1997. {"pg_catalog", "pg_ts_template", "tmplinit", "regproc"},
  1998. {"pg_catalog", "pg_ts_template", "tmpllexize", "regproc"},
  1999. {"pg_catalog", "pg_ts_template", "tmplname", "name"},
  2000. {"pg_catalog", "pg_ts_template", "tmplnamespace", "oid"},
  2001. {"pg_catalog", "pg_type", "oid", "oid"},
  2002. {"pg_catalog", "pg_type", "typacl", "_aclitem"},
  2003. {"pg_catalog", "pg_type", "typalign", "char"},
  2004. {"pg_catalog", "pg_type", "typanalyze", "regproc"},
  2005. {"pg_catalog", "pg_type", "typarray", "oid"},
  2006. {"pg_catalog", "pg_type", "typbasetype", "oid"},
  2007. {"pg_catalog", "pg_type", "typbyval", "bool"},
  2008. {"pg_catalog", "pg_type", "typcategory", "char"},
  2009. {"pg_catalog", "pg_type", "typcollation", "oid"},
  2010. {"pg_catalog", "pg_type", "typdefault", "text"},
  2011. {"pg_catalog", "pg_type", "typdefaultbin", "pg_node_tree"},
  2012. {"pg_catalog", "pg_type", "typdelim", "char"},
  2013. {"pg_catalog", "pg_type", "typelem", "oid"},
  2014. {"pg_catalog", "pg_type", "typinput", "regproc"},
  2015. {"pg_catalog", "pg_type", "typisdefined", "bool"},
  2016. {"pg_catalog", "pg_type", "typispreferred", "bool"},
  2017. {"pg_catalog", "pg_type", "typlen", "int2"},
  2018. {"pg_catalog", "pg_type", "typmodin", "regproc"},
  2019. {"pg_catalog", "pg_type", "typmodout", "regproc"},
  2020. {"pg_catalog", "pg_type", "typname", "name"},
  2021. {"pg_catalog", "pg_type", "typnamespace", "oid"},
  2022. {"pg_catalog", "pg_type", "typndims", "int4"},
  2023. {"pg_catalog", "pg_type", "typnotnull", "bool"},
  2024. {"pg_catalog", "pg_type", "typoutput", "regproc"},
  2025. {"pg_catalog", "pg_type", "typowner", "oid"},
  2026. {"pg_catalog", "pg_type", "typreceive", "regproc"},
  2027. {"pg_catalog", "pg_type", "typrelid", "oid"},
  2028. {"pg_catalog", "pg_type", "typsend", "regproc"},
  2029. {"pg_catalog", "pg_type", "typstorage", "char"},
  2030. {"pg_catalog", "pg_type", "typsubscript", "regproc"},
  2031. {"pg_catalog", "pg_type", "typtype", "char"},
  2032. {"pg_catalog", "pg_type", "typtypmod", "int4"},
  2033. {"pg_catalog", "pg_user", "passwd", "text"},
  2034. {"pg_catalog", "pg_user", "usebypassrls", "bool"},
  2035. {"pg_catalog", "pg_user", "useconfig", "_text"},
  2036. {"pg_catalog", "pg_user", "usecreatedb", "bool"},
  2037. {"pg_catalog", "pg_user", "usename", "name"},
  2038. {"pg_catalog", "pg_user", "userepl", "bool"},
  2039. {"pg_catalog", "pg_user", "usesuper", "bool"},
  2040. {"pg_catalog", "pg_user", "usesysid", "oid"},
  2041. {"pg_catalog", "pg_user", "valuntil", "timestamptz"},
  2042. {"pg_catalog", "pg_user_mapping", "oid", "oid"},
  2043. {"pg_catalog", "pg_user_mapping", "umoptions", "_text"},
  2044. {"pg_catalog", "pg_user_mapping", "umserver", "oid"},
  2045. {"pg_catalog", "pg_user_mapping", "umuser", "oid"},
  2046. {"pg_catalog", "pg_user_mappings", "srvid", "oid"},
  2047. {"pg_catalog", "pg_user_mappings", "srvname", "name"},
  2048. {"pg_catalog", "pg_user_mappings", "umid", "oid"},
  2049. {"pg_catalog", "pg_user_mappings", "umoptions", "_text"},
  2050. {"pg_catalog", "pg_user_mappings", "umuser", "oid"},
  2051. {"pg_catalog", "pg_user_mappings", "usename", "name"},
  2052. {"pg_catalog", "pg_views", "definition", "text"},
  2053. {"pg_catalog", "pg_views", "schemaname", "name"},
  2054. {"pg_catalog", "pg_views", "viewname", "name"},
  2055. {"pg_catalog", "pg_views", "viewowner", "name"},