pg-catalog.td 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. # Copyright Materialize, Inc. and contributors. All rights reserved.
  2. #
  3. # Use of this software is governed by the Business Source License
  4. # included in the LICENSE file at the root of this repository.
  5. #
  6. # As of the Change Date specified in that file, in accordance with
  7. # the Business Source License, use of this software will be governed
  8. # by the Apache License, Version 2.0.
  9. > SHOW COLUMNS FROM pg_namespace
  10. name nullable type comment
  11. ----------------------------------
  12. oid false oid ""
  13. nspname false text ""
  14. nspowner false oid ""
  15. nspacl true text[] ""
  16. > SHOW COLUMNS FROM pg_class
  17. name nullable type comment
  18. -------------------------------------------------
  19. oid false oid ""
  20. relname false text ""
  21. relnamespace false oid ""
  22. reloftype false oid ""
  23. relowner false oid ""
  24. relam false oid ""
  25. reltablespace false oid ""
  26. reltuples false real ""
  27. reltoastrelid false oid ""
  28. relhasindex false boolean ""
  29. relpersistence false char ""
  30. relkind true text ""
  31. relchecks false smallint ""
  32. relhasrules false boolean ""
  33. relhastriggers false boolean ""
  34. relhassubclass false boolean ""
  35. relrowsecurity false boolean ""
  36. relforcerowsecurity false boolean ""
  37. relreplident false char ""
  38. relispartition false boolean ""
  39. relhasoids false boolean ""
  40. reloptions true text[] ""
  41. > SHOW COLUMNS FROM pg_database
  42. name nullable type comment
  43. -----------------------------------------
  44. oid false oid ""
  45. datname false text ""
  46. datdba false oid ""
  47. encoding false integer ""
  48. datistemplate false boolean ""
  49. datallowconn false boolean ""
  50. datcollate false text ""
  51. datctype false text ""
  52. datacl true text[] ""
  53. > SHOW COLUMNS FROM pg_index
  54. name nullable type comment
  55. -----------------------------------------------
  56. indexrelid false oid ""
  57. indrelid false oid ""
  58. indisunique false boolean ""
  59. indisprimary false boolean ""
  60. indimmediate false boolean ""
  61. indisclustered false boolean ""
  62. indisvalid false boolean ""
  63. indisreplident false boolean ""
  64. indkey false int2vector ""
  65. indoption false int2vector ""
  66. indexprs true text ""
  67. indpred true text ""
  68. > SHOW COLUMNS FROM pg_description
  69. name nullable type comment
  70. ---------------------------------------
  71. objoid false oid ""
  72. classoid true oid ""
  73. objsubid false integer ""
  74. description false text ""
  75. > SHOW COLUMNS FROM pg_attribute
  76. name nullable type comment
  77. ----------------------------------------
  78. attrelid false oid ""
  79. attname false text ""
  80. atttypid false oid ""
  81. attlen true smallint ""
  82. attnum false smallint ""
  83. atttypmod false integer ""
  84. attnotnull false boolean ""
  85. atthasdef false boolean ""
  86. attidentity false char ""
  87. attgenerated false char ""
  88. attisdropped false boolean ""
  89. attcollation false oid ""
  90. > SHOW COLUMNS FROM pg_collation
  91. name nullable type comment
  92. ---------------------------------------------
  93. oid false oid ""
  94. collname false text ""
  95. collnamespace false oid ""
  96. collowner false oid ""
  97. collprovider false char ""
  98. collisdeterministic false boolean ""
  99. collencoding false integer ""
  100. collcollate false text ""
  101. collctype false text ""
  102. collversion false text ""
  103. > SHOW COLUMNS FROM pg_policy
  104. name nullable type comment
  105. ------------------------------------------
  106. oid false oid ""
  107. polname false text ""
  108. polrelid false oid ""
  109. polcmd false char ""
  110. polpermissive false boolean ""
  111. polroles false oid[] ""
  112. polqual false text ""
  113. polwithcheck false text ""
  114. > SHOW COLUMNS FROM pg_inherits
  115. name nullable type comment
  116. ----------------------------------------------
  117. inhrelid false oid ""
  118. inhparent false oid ""
  119. inhseqno false integer ""
  120. inhdetachpending false boolean ""
  121. ! SELECT current_schemas()
  122. contains:function current_schemas() does not exist
  123. > SELECT current_schemas(true)
  124. {mz_catalog,pg_catalog,public}
  125. > SELECT current_schemas(false)
  126. {public}
  127. > SHOW COLUMNS FROM pg_authid
  128. name nullable type comment
  129. ---------------------------------------------------------------------
  130. oid false oid ""
  131. rolname false text ""
  132. rolsuper true boolean ""
  133. rolinherit false boolean ""
  134. rolcreaterole true boolean ""
  135. rolcreatedb true boolean ""
  136. rolcanlogin false boolean ""
  137. rolreplication false boolean ""
  138. rolbypassrls false boolean ""
  139. rolconnlimit false integer ""
  140. rolpassword false text ""
  141. rolvaliduntil true "timestamp with time zone" ""
  142. > SHOW COLUMNS FROM pg_auth_members
  143. name nullable type comment
  144. ------------------------------------------------------------
  145. roleid false oid ""
  146. member false oid ""
  147. grantor false oid ""
  148. admin_option false boolean ""
  149. > SHOW COLUMNS FROM pg_locks
  150. name nullable type comment
  151. -------------------------------------------------------------------
  152. locktype false text ""
  153. database false oid ""
  154. relation false oid ""
  155. page false integer ""
  156. tuple false smallint ""
  157. virtualxid false text ""
  158. transactionid false text ""
  159. classid false oid ""
  160. objid false oid ""
  161. objsubid false smallint ""
  162. virtualtransaction false text ""
  163. pid false integer ""
  164. mode false text ""
  165. granted false boolean ""
  166. fastpath false boolean ""
  167. waitstart false "timestamp with time zone" ""
  168. > SHOW COLUMNS FROM pg_tablespace
  169. name nullable type comment
  170. ------------------------------------------------------------
  171. oid false oid ""
  172. spcname false text ""
  173. spcowner true oid ""
  174. spcacl true text[] ""
  175. spcoptions true text[] ""
  176. > SHOW COLUMNS FROM pg_aggregate
  177. name nullable type comment
  178. ------------------------------------------------------------
  179. aggfnoid false oid ""
  180. aggkind false text ""
  181. aggnumdirectargs false smallint ""
  182. aggtransfn true regproc ""
  183. aggfinalfn false regproc ""
  184. aggcombinefn false regproc ""
  185. aggserialfn false regproc ""
  186. aggdeserialfn false regproc ""
  187. aggmtransfn false regproc ""
  188. aggminvtransfn false regproc ""
  189. aggmfinalfn false regproc ""
  190. aggfinalextra false boolean ""
  191. aggmfinalextra false boolean ""
  192. aggfinalmodify true char ""
  193. aggmfinalmodify true char ""
  194. aggsortop false oid ""
  195. aggtranstype true oid ""
  196. aggtransspace true integer ""
  197. aggmtranstype false oid ""
  198. aggmtransspace true integer ""
  199. agginitval true text ""
  200. aggminitval true text ""
  201. > SHOW COLUMNS FROM pg_trigger
  202. name nullable type comment
  203. ------------------------------------------------------------
  204. oid false oid ""
  205. tgrelid false oid ""
  206. tgparentid false oid ""
  207. tgname false text ""
  208. tgfoid false oid ""
  209. tgtype false smallint ""
  210. tgenabled false char ""
  211. tgisinternal false boolean ""
  212. tgconstrrelid false oid ""
  213. tgconstrindid false oid ""
  214. tgconstraint false oid ""
  215. tgdeferrable false boolean ""
  216. tginitdeferred false boolean ""
  217. tgnargs false smallint ""
  218. tgattr false int2vector ""
  219. tgargs false bytea ""
  220. tgqual false text ""
  221. tgoldtable false text ""
  222. tgnewtable false text ""
  223. > SHOW COLUMNS FROM pg_rewrite
  224. name nullable type comment
  225. ------------------------------------------------------------
  226. oid false oid ""
  227. rulename false text ""
  228. ev_class false oid ""
  229. ev_type false char ""
  230. ev_enabled false char ""
  231. is_instead false boolean ""
  232. ev_qual false text ""
  233. ev_action false text ""
  234. > SHOW COLUMNS FROM pg_extension
  235. name nullable type comment
  236. ------------------------------------------------------------
  237. oid false oid ""
  238. extname false text ""
  239. extowner false oid ""
  240. extnamespace false oid ""
  241. extrelocatable false boolean ""
  242. extversion false text ""
  243. extconfig false oid[] ""
  244. extcondition false text[] ""
  245. > SHOW COLUMNS FROM pg_event_trigger
  246. name nullable type comment
  247. ------------------------------------------------------------
  248. oid false oid ""
  249. evtname false text ""
  250. evtevent false text ""
  251. evtowner false oid ""
  252. evtfoid false oid ""
  253. evtenabled false char ""
  254. evttags false text[] ""
  255. > SHOW COLUMNS FROM pg_language
  256. name nullable type comment
  257. ------------------------------------------------------------
  258. lanname false text ""
  259. oid false oid ""
  260. lanowner false oid ""
  261. lanispl false boolean ""
  262. lanpltrusted false boolean ""
  263. lanplcallfoid false oid ""
  264. laninline false oid ""
  265. lanvalidator false oid ""
  266. lanacl false text[] ""
  267. > SHOW COLUMNS FROM pg_shdescription
  268. name nullable type comment
  269. ------------------------------------------------------------
  270. objoid false oid ""
  271. classoid false oid ""
  272. description false text ""
  273. > SHOW COLUMNS FROM pg_depend
  274. name nullable type comment
  275. ------------------------------------------------------------
  276. classid true oid ""
  277. objid false oid ""
  278. objsubid false integer ""
  279. refclassid true oid ""
  280. refobjid false oid ""
  281. refobjsubid false integer ""
  282. deptype false char ""
  283. > SHOW COLUMNS FROM pg_indexes
  284. name nullable type comment
  285. ------------------------------------------------------------
  286. table_catalog false text ""
  287. schemaname false text ""
  288. tablename false text ""
  289. indexname false text ""
  290. tablespace true text ""
  291. indexdef true text ""