oid.slt 24 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169
  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. mode cockroach
  10. query T
  11. SELECT 1::oid::text
  12. ----
  13. 1
  14. query T
  15. SELECT (-1)::oid
  16. ----
  17. 4294967295
  18. query T
  19. SELECT (-1)::oid
  20. ----
  21. 4294967295
  22. query error "4294967296" OID out of range
  23. SELECT 4294967296::oid
  24. query error "-1" OID out of range
  25. SELECT (-1)::int8::oid
  26. query B
  27. SELECT 1::oid = 2::oid
  28. ----
  29. false
  30. query B
  31. SELECT 1::oid < 2::oid
  32. ----
  33. true
  34. query B
  35. SELECT (-1)::oid < 2::oid
  36. ----
  37. false
  38. query B
  39. SELECT 0::oid < 4294967295::oid
  40. ----
  41. true
  42. query B
  43. SELECT 1 <= 2::oid
  44. ----
  45. true
  46. query B
  47. SELECT 1::oid > 2
  48. ----
  49. false
  50. query B
  51. SELECT 1::oid >= 2
  52. ----
  53. false
  54. query B
  55. SELECT 1::oid != 2::oid
  56. ----
  57. true
  58. # Check static system OIDs.
  59. query TT
  60. SELECT oid, name FROM mz_schemas WHERE id LIKE 's%' ORDER BY oid
  61. ----
  62. 16656 mz_catalog
  63. 16657 pg_catalog
  64. 16658 mz_internal
  65. 16659 information_schema
  66. 16660 mz_unsafe
  67. 16972 mz_catalog_unstable
  68. 16973 mz_introspection
  69. query TT
  70. SELECT oid, name FROM mz_roles WHERE id LIKE 's%' OR id LIKE 'g%' ORDER BY oid
  71. ----
  72. 16661 mz_system
  73. 16662 mz_support
  74. 16663 mz_monitor
  75. 16664 mz_monitor_redacted
  76. 16984 mz_analytics
  77. # Only look at OIDs less than 20000 so that we don't consider system objects allocated at run time.
  78. query TT
  79. SELECT oid, name FROM mz_objects WHERE id LIKE 's%' AND oid < 20000 ORDER BY oid
  80. ----
  81. 16 bool
  82. 17 bytea
  83. 18 char
  84. 19 name
  85. 20 int8
  86. 21 int2
  87. 22 int2vector
  88. 23 int4
  89. 24 regproc
  90. 25 text
  91. 26 oid
  92. 34 namein
  93. 38 int2in
  94. 40 int2vectorin
  95. 42 int4in
  96. 44 regprocin
  97. 46 textin
  98. 89 version
  99. 200 float4in
  100. 214 float8in
  101. 376 string_to_array
  102. 383 array_cat
  103. 384 array_to_string
  104. 394 string_to_array
  105. 395 array_to_string
  106. 460 int8in
  107. 700 float4
  108. 701 float8
  109. 720 octet_length
  110. 721 get_byte
  111. 723 get_bit
  112. 745 current_user
  113. 746 session_user
  114. 750 array_in
  115. 849 position
  116. 861 current_database
  117. 870 lower
  118. 871 upper
  119. 872 initcap
  120. 873 lpad
  121. 875 ltrim
  122. 876 rtrim
  123. 877 substr
  124. 878 translate
  125. 879 lpad
  126. 881 ltrim
  127. 882 rtrim
  128. 883 substr
  129. 884 btrim
  130. 885 btrim
  131. 936 substring
  132. 937 substring
  133. 938 generate_series
  134. 939 generate_series
  135. 940 mod
  136. 941 mod
  137. 947 mod
  138. 1000 _bool
  139. 1001 _bytea
  140. 1002 _char
  141. 1003 _name
  142. 1005 _int2
  143. 1006 _int2vector
  144. 1007 _int4
  145. 1008 _regproc
  146. 1009 _text
  147. 1014 _bpchar
  148. 1015 _varchar
  149. 1016 _int8
  150. 1021 _float4
  151. 1022 _float8
  152. 1026 timezone
  153. 1028 _oid
  154. 1031 aclitemin
  155. 1033 aclitem
  156. 1034 _aclitem
  157. 1042 bpchar
  158. 1043 varchar
  159. 1044 bpcharin
  160. 1046 varcharin
  161. 1066 generate_series
  162. 1067 generate_series
  163. 1068 generate_series
  164. 1069 generate_series
  165. 1081 format_type
  166. 1082 date
  167. 1083 time
  168. 1084 date_in
  169. 1114 timestamp
  170. 1115 _timestamp
  171. 1143 time_in
  172. 1150 timestamptz_in
  173. 1158 to_timestamp
  174. 1159 timezone
  175. 1160 interval_in
  176. 1171 date_part
  177. 1172 date_part
  178. 1175 justify_hours
  179. 1178 date
  180. 1182 _date
  181. 1183 _time
  182. 1184 timestamptz
  183. 1185 _timestamptz
  184. 1186 interval
  185. 1187 _interval
  186. 1192 generate_subscripts
  187. 1193 array_fill
  188. 1194 log10
  189. 1199 age
  190. 1215 obj_description
  191. 1216 col_description
  192. 1217 date_trunc
  193. 1218 date_trunc
  194. 1231 _numeric
  195. 1242 boolin
  196. 1244 byteain
  197. 1245 charin
  198. 1268 parse_ident
  199. 1269 pg_column_size
  200. 1282 quote_ident
  201. 1286 array_fill
  202. 1295 justify_days
  203. 1299 now
  204. 1312 timestamp_in
  205. 1317 length
  206. 1340 log
  207. 1341 ln
  208. 1342 round
  209. 1343 trunc
  210. 1344 sqrt
  211. 1345 cbrt
  212. 1346 pow
  213. 1347 exp
  214. 1365 makeaclitem
  215. 1368 power
  216. 1374 octet_length
  217. 1375 octet_length
  218. 1381 char_length
  219. 1385 date_part
  220. 1387 pg_get_constraintdef
  221. 1394 abs
  222. 1395 abs
  223. 1396 abs
  224. 1397 abs
  225. 1398 abs
  226. 1402 current_schema
  227. 1403 current_schemas
  228. 1481 log10
  229. 1573 pg_get_ruledef
  230. 1597 pg_encoding_to_char
  231. 1600 asin
  232. 1601 acos
  233. 1602 atan
  234. 1604 sin
  235. 1605 cos
  236. 1606 tan
  237. 1607 cot
  238. 1608 degrees
  239. 1609 radians
  240. 1619 pg_typeof
  241. 1620 ascii
  242. 1621 chr
  243. 1622 repeat
  244. 1637 like_escape
  245. 1640 pg_get_viewdef
  246. 1641 pg_get_viewdef
  247. 1642 pg_get_userbyid
  248. 1643 pg_get_indexdef
  249. 1689 aclexplode
  250. 1700 numeric
  251. 1701 numeric_in
  252. 1705 abs
  253. 1707 round
  254. 1708 round
  255. 1710 trunc
  256. 1711 ceil
  257. 1712 floor
  258. 1713 length
  259. 1714 convert_from
  260. 1716 pg_get_expr
  261. 1728 mod
  262. 1730 sqrt
  263. 1732 exp
  264. 1734 ln
  265. 1736 log
  266. 1741 log
  267. 1770 to_char
  268. 1798 oidin
  269. 1810 bit_length
  270. 1811 bit_length
  271. 1922 has_table_privilege
  272. 1923 has_table_privilege
  273. 1924 has_table_privilege
  274. 1925 has_table_privilege
  275. 1926 has_table_privilege
  276. 1927 has_table_privilege
  277. 1928 pg_stat_get_numscans
  278. 1946 encode
  279. 1947 decode
  280. 2010 length
  281. 2020 date_trunc
  282. 2021 date_part
  283. 2026 pg_backend_pid
  284. 2029 date
  285. 2037 timezone
  286. 2038 timezone
  287. 2049 to_char
  288. 2058 age
  289. 2069 timezone
  290. 2070 timezone
  291. 2077 current_setting
  292. 2079 pg_table_is_visible
  293. 2080 pg_type_is_visible
  294. 2081 pg_function_is_visible
  295. 2087 replace
  296. 2088 split_part
  297. 2091 array_lower
  298. 2092 array_upper
  299. 2100 avg
  300. 2101 avg
  301. 2102 avg
  302. 2104 avg
  303. 2105 avg
  304. 2106 avg
  305. 2107 sum
  306. 2108 sum
  307. 2109 sum
  308. 2110 sum
  309. 2111 sum
  310. 2113 sum
  311. 2114 sum
  312. 2115 max
  313. 2116 max
  314. 2117 max
  315. 2119 max
  316. 2120 max
  317. 2122 max
  318. 2123 max
  319. 2126 max
  320. 2127 max
  321. 2128 max
  322. 2129 max
  323. 2131 min
  324. 2132 min
  325. 2133 min
  326. 2135 min
  327. 2136 min
  328. 2138 min
  329. 2139 min
  330. 2142 min
  331. 2143 min
  332. 2144 min
  333. 2145 min
  334. 2147 count
  335. 2148 variance
  336. 2149 variance
  337. 2150 variance
  338. 2151 variance
  339. 2152 variance
  340. 2154 stddev
  341. 2155 stddev
  342. 2156 stddev
  343. 2157 stddev
  344. 2158 stddev
  345. 2167 ceiling
  346. 2169 power
  347. 2171 pg_cancel_backend
  348. 2176 array_length
  349. 2205 regclass
  350. 2206 regtype
  351. 2210 _regclass
  352. 2211 _regtype
  353. 2218 regclassin
  354. 2220 regtypein
  355. 2244 max
  356. 2245 min
  357. 2249 record
  358. 2250 has_database_privilege
  359. 2251 has_database_privilege
  360. 2252 has_database_privilege
  361. 2253 has_database_privilege
  362. 2254 has_database_privilege
  363. 2255 has_database_privilege
  364. 2268 has_schema_privilege
  365. 2269 has_schema_privilege
  366. 2270 has_schema_privilege
  367. 2271 has_schema_privilege
  368. 2272 has_schema_privilege
  369. 2273 has_schema_privilege
  370. 2276 any
  371. 2277 anyarray
  372. 2281 internal
  373. 2283 anyelement
  374. 2284 regexp_replace
  375. 2285 regexp_replace
  376. 2287 _record
  377. 2290 record_in
  378. 2294 any_in
  379. 2296 anyarray_in
  380. 2304 internal_in
  381. 2308 ceil
  382. 2309 floor
  383. 2311 md5
  384. 2312 anyelement_in
  385. 2320 ceiling
  386. 2321 md5
  387. 2325 pg_relation_size
  388. 2331 unnest
  389. 2332 pg_relation_size
  390. 2335 array_agg
  391. 2400 array_recv
  392. 2402 record_recv
  393. 2404 int2recv
  394. 2406 int4recv
  395. 2408 int8recv
  396. 2410 int2vectorrecv
  397. 2412 bytearecv
  398. 2414 textrecv
  399. 2418 oidrecv
  400. 2422 namerecv
  401. 2424 float4recv
  402. 2426 float8recv
  403. 2430 bpcharrecv
  404. 2432 varcharrecv
  405. 2434 charrecv
  406. 2436 boolrecv
  407. 2444 regprocrecv
  408. 2452 regclassrecv
  409. 2454 regtyperecv
  410. 2460 numeric_recv
  411. 2462 sinh
  412. 2463 cosh
  413. 2464 tanh
  414. 2465 asinh
  415. 2466 acosh
  416. 2467 atanh
  417. 2468 date_recv
  418. 2470 time_recv
  419. 2474 timestamp_recv
  420. 2476 timestamptz_recv
  421. 2478 interval_recv
  422. 2502 anyarray_recv
  423. 2504 pg_get_ruledef
  424. 2505 pg_get_viewdef
  425. 2506 pg_get_viewdef
  426. 2507 pg_get_indexdef
  427. 2508 pg_get_constraintdef
  428. 2509 pg_get_expr
  429. 2517 bool_and
  430. 2518 bool_or
  431. 2560 pg_postmaster_start_time
  432. 2641 var_samp
  433. 2642 var_samp
  434. 2643 var_samp
  435. 2644 var_samp
  436. 2645 var_samp
  437. 2705 pg_has_role
  438. 2706 pg_has_role
  439. 2707 pg_has_role
  440. 2708 pg_has_role
  441. 2709 pg_has_role
  442. 2710 pg_has_role
  443. 2711 justify_interval
  444. 2712 stddev_samp
  445. 2713 stddev_samp
  446. 2714 stddev_samp
  447. 2715 stddev_samp
  448. 2716 stddev_samp
  449. 2718 var_pop
  450. 2719 var_pop
  451. 2720 var_pop
  452. 2721 var_pop
  453. 2722 var_pop
  454. 2724 stddev_pop
  455. 2725 stddev_pop
  456. 2726 stddev_pop
  457. 2727 stddev_pop
  458. 2728 stddev_pop
  459. 2763 regexp_matches
  460. 2764 regexp_matches
  461. 2765 regexp_split_to_table
  462. 2766 regexp_split_to_table
  463. 2767 regexp_split_to_array
  464. 2768 regexp_split_to_array
  465. 2776 anynonarray
  466. 2777 anynonarray_in
  467. 2803 count
  468. 2950 uuid
  469. 2951 _uuid
  470. 2952 uuid_in
  471. 2961 uuid_recv
  472. 3058 concat
  473. 3059 concat_ws
  474. 3060 left
  475. 3061 right
  476. 3062 reverse
  477. 3100 row_number
  478. 3101 rank
  479. 3102 dense_rank
  480. 3106 lag
  481. 3107 lag
  482. 3108 lag
  483. 3109 lead
  484. 3110 lead
  485. 3111 lead
  486. 3112 first_value
  487. 3113 last_value
  488. 3138 has_type_privilege
  489. 3139 has_type_privilege
  490. 3140 has_type_privilege
  491. 3141 has_type_privilege
  492. 3142 has_type_privilege
  493. 3143 has_type_privilege
  494. 3159 pg_get_viewdef
  495. 3166 pg_size_pretty
  496. 3167 array_remove
  497. 3207 jsonb_array_length
  498. 3208 jsonb_each
  499. 3210 jsonb_typeof
  500. 3219 jsonb_array_elements
  501. 3262 jsonb_strip_nulls
  502. 3267 jsonb_agg
  503. 3270 jsonb_object_agg
  504. 3271 jsonb_build_array
  505. 3272 jsonb_build_array
  506. 3273 jsonb_build_object
  507. 3274 jsonb_build_object
  508. 3277 array_position
  509. 3278 array_position
  510. 3294 current_setting
  511. 3306 jsonb_pretty
  512. 3396 regexp_match
  513. 3397 regexp_match
  514. 3419 sha224
  515. 3420 sha256
  516. 3421 sha384
  517. 3422 sha512
  518. 3461 make_timestamp
  519. 3465 jsonb_array_elements_text
  520. 3538 string_agg
  521. 3545 string_agg
  522. 3696 starts_with
  523. 3778 pg_tablespace_location
  524. 3787 to_jsonb
  525. 3802 jsonb
  526. 3805 jsonb_recv
  527. 3806 jsonb_in
  528. 3807 _jsonb
  529. 3810 pg_is_in_recovery
  530. 3831 anyrange
  531. 3832 anyrange_in
  532. 3834 range_in
  533. 3836 range_recv
  534. 3840 int4range
  535. 3841 int4range
  536. 3844 numrange
  537. 3845 numrange
  538. 3848 lower
  539. 3849 upper
  540. 3850 isempty
  541. 3851 lower_inc
  542. 3852 upper_inc
  543. 3853 lower_inf
  544. 3854 upper_inf
  545. 3904 int4range
  546. 3905 _int4range
  547. 3906 numrange
  548. 3907 _numrange
  549. 3908 tsrange
  550. 3909 _tsrange
  551. 3910 tstzrange
  552. 3911 _tstzrange
  553. 3912 daterange
  554. 3913 _daterange
  555. 3926 int8range
  556. 3927 _int8range
  557. 3931 jsonb_object_keys
  558. 3932 jsonb_each_text
  559. 3933 tsrange
  560. 3934 tsrange
  561. 3937 tstzrange
  562. 3938 tstzrange
  563. 3941 daterange
  564. 3942 daterange
  565. 3945 int8range
  566. 3946 int8range
  567. 4053 array_agg
  568. 5077 anycompatible
  569. 5078 anycompatiblearray
  570. 5079 anycompatiblenonarray
  571. 5080 anycompatiblerange
  572. 5086 anycompatible_in
  573. 5088 anycompatiblearray_in
  574. 5090 anycompatiblearray_recv
  575. 5092 anycompatiblenonarray_in
  576. 5094 anycompatiblerange_in
  577. 6163 bit_count
  578. 6177 date_bin
  579. 6178 date_bin
  580. 6199 extract
  581. 6200 extract
  582. 6202 extract
  583. 6203 extract
  584. 6204 extract
  585. 12000 _pg_expandarray
  586. 12001 digest
  587. 12002 digest
  588. 12003 hmac
  589. 12004 hmac
  590. 16384 list
  591. 16385 map
  592. 16386 ceil
  593. 16387 concat_agg
  594. 16388 csv_extract
  595. 16389 current_timestamp
  596. 16390 floor
  597. 16392 list_append
  598. 16393 list_cat
  599. 16394 list_length_max
  600. 16395 list_length
  601. 16396 list_n_layers
  602. 16397 list_prepend
  603. 16398 max
  604. 16399 min
  605. 16400 mz_all
  606. 16401 mz_any
  607. 16403 mz_avg_promotion_internal_v1
  608. 16404 mz_avg_promotion_internal_v1
  609. 16405 mz_avg_promotion_internal_v1
  610. 16407 mz_environment_id
  611. 16409 mz_logical_timestamp
  612. 16410 mz_render_typmod
  613. 16411 mz_version
  614. 16412 regexp_extract
  615. 16413 repeat_row
  616. 16414 round
  617. 16416 unnest
  618. 16434 mz_sleep
  619. 16435 mz_session_id
  620. 16436 mz_uptime
  621. 16440 mz_row_size
  622. 16441 max
  623. 16442 min
  624. 16443 mz_avg_promotion_internal_v1
  625. 16444 list_agg
  626. 16445 mz_error_if_null
  627. 16446 date_bin
  628. 16447 date_bin
  629. 16448 list_remove
  630. 16449 date_bin_hopping
  631. 16450 date_bin_hopping
  632. 16451 date_bin_hopping
  633. 16452 date_bin_hopping
  634. 16453 mz_type_name
  635. 16454 anycompatiblelist
  636. 16455 anycompatiblemap
  637. 16456 map_length
  638. 16457 mz_panic
  639. 16458 mz_version_num
  640. 16459 trunc
  641. 16460 uint2
  642. 16461 _uint2
  643. 16462 uint4
  644. 16463 _uint4
  645. 16464 uint8
  646. 16465 _uint8
  647. 16496 max
  648. 16497 max
  649. 16498 max
  650. 16499 min
  651. 16500 min
  652. 16501 min
  653. 16502 sum
  654. 16503 sum
  655. 16504 sum
  656. 16505 avg
  657. 16506 avg
  658. 16507 avg
  659. 16508 mod
  660. 16509 mod
  661. 16510 mod
  662. 16511 stddev
  663. 16512 stddev
  664. 16513 stddev
  665. 16514 stddev_pop
  666. 16515 stddev_pop
  667. 16516 stddev_pop
  668. 16517 stddev_samp
  669. 16518 stddev_samp
  670. 16519 stddev_samp
  671. 16520 variance
  672. 16521 variance
  673. 16522 variance
  674. 16523 var_pop
  675. 16524 var_pop
  676. 16525 var_pop
  677. 16526 var_samp
  678. 16527 var_samp
  679. 16528 var_samp
  680. 16550 mz_avg_promotion_internal_v1
  681. 16551 mz_avg_promotion_internal_v1
  682. 16552 mz_timestamp
  683. 16553 _mz_timestamp
  684. 16560 mz_now
  685. 16561 max
  686. 16562 min
  687. 16563 date
  688. 16564 ceiling
  689. 16565 uuid_generate_v5
  690. 16566 mz_aclitem
  691. 16567 _mz_aclitem
  692. 16570 make_mz_aclitem
  693. 16571 mz_aclitem_grantor
  694. 16572 mz_aclitem_grantee
  695. 16573 mz_aclitem_privileges
  696. 16574 is_rbac_enabled
  697. 16575 mz_acl_item_contains_privilege
  698. 16576 mz_validate_privileges
  699. 16577 mz_role_oid
  700. 16578 mz_minimal_name_qualification
  701. 16581 mz_resolve_object_name
  702. 16582 mz_global_id_to_name
  703. 16584 parse_ident
  704. 16585 mz_database_oid
  705. 16586 mz_schema_oid
  706. 16587 has_cluster_privilege
  707. 16588 has_cluster_privilege
  708. 16589 has_cluster_privilege
  709. 16591 has_connection_privilege
  710. 16592 has_connection_privilege
  711. 16593 has_connection_privilege
  712. 16594 has_connection_privilege
  713. 16595 has_connection_privilege
  714. 16596 has_connection_privilege
  715. 16597 has_secret_privilege
  716. 16598 has_secret_privilege
  717. 16599 has_secret_privilege
  718. 16600 has_secret_privilege
  719. 16601 has_secret_privilege
  720. 16602 has_secret_privilege
  721. 16603 mz_normalize_object_name
  722. 16604 datediff
  723. 16605 datediff
  724. 16606 datediff
  725. 16607 datediff
  726. 16608 has_system_privilege
  727. 16609 has_system_privilege
  728. 16610 has_system_privilege
  729. 16611 try_parse_monotonic_iso8601_timestamp
  730. 16612 mz_role_oid_memberships
  731. 16613 mz_validate_role_privilege
  732. 16614 mz_is_superuser
  733. 16615 mz_format_privileges
  734. 16616 aclitem_grantor
  735. 16617 aclitem_grantee
  736. 16618 aclitem_privileges
  737. 16619 mz_aclexplode
  738. 16620 has_role
  739. 16621 has_role
  740. 16622 has_role
  741. 16623 has_role
  742. 16624 has_role
  743. 16625 has_role
  744. 16626 mz_avg_promotion
  745. 16627 mz_avg_promotion
  746. 16628 mz_avg_promotion
  747. 16629 mz_avg_promotion
  748. 16630 mz_avg_promotion
  749. 16631 mz_avg_promotion
  750. 16632 mz_avg_promotion
  751. 16633 mz_avg_promotion
  752. 16634 mz_avg_promotion
  753. 16635 avg_internal_v1
  754. 16636 avg_internal_v1
  755. 16637 avg_internal_v1
  756. 16638 avg_internal_v1
  757. 16639 avg_internal_v1
  758. 16640 avg_internal_v1
  759. 16641 avg_internal_v1
  760. 16642 avg_internal_v1
  761. 16643 avg_internal_v1
  762. 16644 constant_time_eq
  763. 16645 constant_time_eq
  764. 16646 timezone_offset
  765. 16647 pretty_sql
  766. 16648 pretty_sql
  767. 16649 mz_name_rank
  768. 16650 mz_connection_oid
  769. 16651 mz_secret_oid
  770. 16652 map_build
  771. 16653 map_agg
  772. 16654 unnest
  773. 16655 mz_normalize_schema_name
  774. 16665 mz_dataflow_operators_per_worker
  775. 16666 mz_dataflow_addresses_per_worker
  776. 16667 mz_dataflow_channels_per_worker
  777. 16668 mz_scheduling_elapsed_raw
  778. 16669 mz_compute_operator_durations_histogram_raw
  779. 16670 mz_scheduling_parks_histogram_raw
  780. 16671 mz_arrangement_records_raw
  781. 16672 mz_arrangement_batches_raw
  782. 16673 mz_arrangement_sharing_raw
  783. 16674 mz_arrangement_batcher_records_raw
  784. 16675 mz_arrangement_batcher_size_raw
  785. 16676 mz_arrangement_batcher_capacity_raw
  786. 16677 mz_arrangement_batcher_allocations_raw
  787. 16678 mz_compute_exports_per_worker
  788. 16679 mz_compute_frontiers_per_worker
  789. 16680 mz_compute_import_frontiers_per_worker
  790. 16682 mz_compute_error_counts_raw
  791. 16683 mz_active_peeks_per_worker
  792. 16684 mz_peek_durations_histogram_raw
  793. 16685 mz_dataflow_shutdown_durations_histogram_raw
  794. 16686 mz_arrangement_heap_size_raw
  795. 16687 mz_arrangement_heap_capacity_raw
  796. 16688 mz_arrangement_heap_allocations_raw
  797. 16689 mz_message_batch_counts_received_raw
  798. 16690 mz_message_batch_counts_sent_raw
  799. 16691 mz_message_counts_received_raw
  800. 16692 mz_message_counts_sent_raw
  801. 16693 mz_dataflow_operator_reachability_raw
  802. 16694 mz_kafka_sinks
  803. 16695 mz_kafka_connections
  804. 16696 mz_kafka_sources
  805. 16697 mz_postgres_sources
  806. 16698 mz_object_dependencies
  807. 16699 mz_compute_dependencies
  808. 16700 mz_compute_hydration_statuses
  809. 16701 mz_compute_operator_hydration_statuses_per_worker
  810. 16702 mz_databases
  811. 16703 mz_schemas
  812. 16704 mz_columns
  813. 16705 mz_indexes
  814. 16706 mz_index_columns
  815. 16707 mz_tables
  816. 16708 mz_connections
  817. 16709 mz_ssh_tunnel_connections
  818. 16710 mz_sources
  819. 16711 mz_sinks
  820. 16712 mz_views
  821. 16713 mz_materialized_views
  822. 16714 mz_types
  823. 16715 mz_type_pg_metadata
  824. 16716 mz_array_types
  825. 16717 mz_base_types
  826. 16718 mz_list_types
  827. 16719 mz_map_types
  828. 16720 mz_roles
  829. 16721 mz_role_members
  830. 16722 mz_pseudo_types
  831. 16723 mz_functions
  832. 16724 mz_operators
  833. 16725 mz_aggregates
  834. 16726 mz_clusters
  835. 16727 mz_secrets
  836. 16728 mz_cluster_replicas
  837. 16729 mz_internal_cluster_replicas
  838. 16730 mz_cluster_replica_statuses
  839. 16731 mz_cluster_replica_sizes
  840. 16733 mz_audit_events
  841. 16734 mz_source_status_history
  842. 16735 mz_aws_privatelink_connection_status_history
  843. 16736 mz_aws_privatelink_connection_statuses
  844. 16737 mz_statement_execution_history
  845. 16738 mz_statement_execution_history_redacted
  846. 16739 mz_prepared_statement_history
  847. 16740 mz_sql_text
  848. 16741 mz_sql_text_redacted
  849. 16742 mz_recent_sql_text
  850. 16743 mz_recent_sql_text_redacted
  851. 16744 mz_recent_sql_text_ind
  852. 16745 mz_session_history
  853. 16746 mz_activity_log_thinned
  854. 16747 mz_recent_activity_log_thinned
  855. 16748 mz_recent_activity_log
  856. 16749 mz_recent_activity_log_redacted
  857. 16750 mz_statement_lifecycle_history
  858. 16751 mz_source_statuses
  859. 16752 mz_sink_status_history
  860. 16753 mz_sink_statuses
  861. 16754 mz_storage_usage_by_shard
  862. 16755 mz_egress_ips
  863. 16756 mz_aws_privatelink_connections
  864. 16757 mz_aws_connections
  865. 16758 mz_cluster_replica_metrics
  866. 16759 mz_cluster_replica_frontiers
  867. 16760 mz_frontiers
  868. 16761 mz_global_frontiers
  869. 16762 mz_subscriptions
  870. 16763 mz_sessions
  871. 16764 mz_default_privileges
  872. 16765 mz_system_privileges
  873. 16766 mz_comments
  874. 16767 mz_webhook_sources
  875. 16768 mz_source_statistics_raw
  876. 16769 mz_sink_statistics_raw
  877. 16770 mz_storage_shards
  878. 16771 mz_storage_usage
  879. 16772 mz_relations
  880. 16773 mz_object_oid_alias
  881. 16774 mz_objects
  882. 16775 mz_object_fully_qualified_names
  883. 16776 mz_object_lifetimes
  884. 16777 mz_dataflows_per_worker
  885. 16778 mz_dataflows
  886. 16779 mz_dataflow_addresses
  887. 16780 mz_dataflow_channels
  888. 16781 mz_dataflow_operators
  889. 16782 mz_dataflow_operator_dataflows_per_worker
  890. 16783 mz_dataflow_operator_dataflows
  891. 16784 mz_object_transitive_dependencies
  892. 16785 mz_compute_exports
  893. 16786 mz_compute_frontiers
  894. 16787 mz_dataflow_channel_operators_per_worker
  895. 16788 mz_dataflow_channel_operators
  896. 16789 mz_compute_import_frontiers
  897. 16790 mz_records_per_dataflow_operator_per_worker
  898. 16791 mz_records_per_dataflow_operator
  899. 16792 mz_records_per_dataflow_per_worker
  900. 16793 mz_records_per_dataflow
  901. 16794 pg_namespace
  902. 16795 pg_class
  903. 16796 pg_depend
  904. 16797 pg_database
  905. 16798 pg_index
  906. 16799 pg_indexes
  907. 16800 pg_description
  908. 16801 pg_type
  909. 16802 pg_attribute
  910. 16803 pg_proc
  911. 16804 pg_operator
  912. 16805 pg_range
  913. 16806 pg_enum
  914. 16807 pg_attrdef
  915. 16808 pg_settings
  916. 16809 pg_auth_members
  917. 16810 pg_event_trigger
  918. 16811 pg_language
  919. 16812 pg_shdescription
  920. 16813 pg_timezone_abbrevs
  921. 16814 pg_timezone_names
  922. 16815 mz_timezone_abbreviations
  923. 16816 mz_timezone_names
  924. 16817 mz_peek_durations_histogram_per_worker
  925. 16818 mz_peek_durations_histogram
  926. 16819 mz_dataflow_shutdown_durations_histogram_per_worker
  927. 16820 mz_dataflow_shutdown_durations_histogram
  928. 16821 mz_scheduling_elapsed_per_worker
  929. 16822 mz_scheduling_elapsed
  930. 16823 mz_compute_operator_durations_histogram_per_worker
  931. 16824 mz_compute_operator_durations_histogram
  932. 16825 mz_scheduling_parks_histogram_per_worker
  933. 16826 mz_scheduling_parks_histogram
  934. 16829 mz_compute_error_counts_per_worker
  935. 16830 mz_compute_error_counts
  936. 16831 mz_compute_operator_hydration_statuses
  937. 16832 mz_message_counts_per_worker
  938. 16833 mz_message_counts
  939. 16834 mz_active_peeks
  940. 16835 mz_dataflow_operator_reachability_per_worker
  941. 16836 mz_dataflow_operator_reachability
  942. 16837 mz_arrangement_sizes_per_worker
  943. 16838 mz_arrangement_sizes
  944. 16839 mz_arrangement_sharing_per_worker
  945. 16840 mz_arrangement_sharing
  946. 16841 mz_cluster_replica_utilization
  947. 16842 mz_dataflow_operator_parents_per_worker
  948. 16843 mz_dataflow_operator_parents
  949. 16844 mz_dataflow_arrangement_sizes
  950. 16845 mz_expected_group_size_advice
  951. 16846 pg_constraint
  952. 16847 pg_tables
  953. 16848 pg_tablespace
  954. 16849 pg_am
  955. 16850 pg_roles
  956. 16851 pg_views
  957. 16852 pg_matviews
  958. 16853 applicable_roles
  959. 16854 columns
  960. 16855 enabled_roles
  961. 16856 role_table_grants
  962. 16857 key_column_usage
  963. 16858 referential_constraints
  964. 16859 routines
  965. 16860 schemata
  966. 16861 tables
  967. 16862 table_constraints
  968. 16863 table_privileges
  969. 16864 triggers
  970. 16865 views
  971. 16866 character_sets
  972. 16867 pg_collation
  973. 16868 pg_policy
  974. 16869 pg_inherits
  975. 16870 pg_locks
  976. 16871 pg_authid
  977. 16872 pg_aggregate
  978. 16873 pg_trigger
  979. 16874 pg_rewrite
  980. 16875 pg_extension
  981. 16876 mz_show_sources
  982. 16877 mz_show_sinks
  983. 16878 mz_show_materialized_views
  984. 16879 mz_show_indexes
  985. 16880 mz_show_cluster_replicas
  986. 16881 mz_show_role_members
  987. 16882 mz_show_my_role_members
  988. 16883 mz_show_system_privileges
  989. 16884 mz_show_my_system_privileges
  990. 16885 mz_show_cluster_privileges
  991. 16886 mz_show_my_cluster_privileges
  992. 16887 mz_show_database_privileges
  993. 16888 mz_show_my_database_privileges
  994. 16889 mz_show_schema_privileges
  995. 16890 mz_show_my_schema_privileges
  996. 16891 mz_show_object_privileges
  997. 16892 mz_show_my_object_privileges
  998. 16893 mz_show_all_privileges
  999. 16894 mz_show_all_my_privileges
  1000. 16895 mz_show_default_privileges
  1001. 16896 mz_show_my_default_privileges
  1002. 16897 mz_cluster_replica_history
  1003. 16898 mz_hydration_statuses
  1004. 16899 mz_materialization_lag
  1005. 16900 mz_show_databases_ind
  1006. 16901 mz_show_schemas_ind
  1007. 16902 mz_show_connections_ind
  1008. 16903 mz_show_tables_ind
  1009. 16904 mz_show_sources_ind
  1010. 16905 mz_show_views_ind
  1011. 16906 mz_show_materialized_views_ind
  1012. 16907 mz_show_sinks_ind
  1013. 16908 mz_show_types_ind
  1014. 16909 mz_show_all_objects_ind
  1015. 16910 mz_show_indexes_ind
  1016. 16911 mz_show_columns_ind
  1017. 16912 mz_show_clusters_ind
  1018. 16913 mz_show_cluster_replicas_ind
  1019. 16914 mz_show_secrets_ind
  1020. 16915 mz_clusters_ind
  1021. 16916 mz_indexes_ind
  1022. 16917 mz_roles_ind
  1023. 16918 mz_sources_ind
  1024. 16919 mz_sinks_ind
  1025. 16920 mz_materialized_views_ind
  1026. 16921 mz_source_statuses_ind
  1027. 16922 mz_sink_statuses_ind
  1028. 16923 mz_source_status_history_ind
  1029. 16924 mz_sink_status_history_ind
  1030. 16925 mz_source_statistics
  1031. 16926 mz_source_statistics_ind
  1032. 16927 mz_sink_statistics
  1033. 16928 mz_sink_statistics_ind
  1034. 16929 mz_cluster_replicas_ind
  1035. 16930 mz_cluster_replica_sizes_ind
  1036. 16931 mz_cluster_replica_statuses_ind
  1037. 16932 mz_cluster_replica_metrics_ind
  1038. 16933 mz_cluster_replica_history_ind
  1039. 16934 mz_object_lifetimes_ind
  1040. 16935 mz_object_dependencies_ind
  1041. 16936 mz_compute_dependencies_ind
  1042. 16937 mz_object_transitive_dependencies_ind
  1043. 16938 mz_frontiers_ind
  1044. 16939 mz_recent_activity_log_thinned_ind
  1045. 16940 mz_optimizer_notices
  1046. 16941 mz_notices
  1047. 16942 mz_notices_redacted
  1048. 16943 mz_notices_ind
  1049. 16945 mz_role_parameters
  1050. 16946 mz_materialized_view_refresh_strategies
  1051. 16947 mz_cluster_schedules
  1052. 16948 mz_postgres_source_tables
  1053. 16949 mz_mysql_source_tables
  1054. 16950 mz_kafka_sources_ind
  1055. 16951 mz_webhook_sources_ind
  1056. 16952 mz_history_retention_strategies
  1057. 16953 mz_materialized_view_refreshes
  1058. 16954 mz_source_statistics_with_history
  1059. 16955 mz_source_statistics_with_history_ind
  1060. 16956 pg_user
  1061. 16957 current_catalog
  1062. 16958 current_role
  1063. 16959 user
  1064. 16960 pg_class_all_databases
  1065. 16961 pg_class_all_databases_ind
  1066. 16962 pg_type_all_databases
  1067. 16963 pg_type_all_databases_ind
  1068. 16964 pg_namespace_all_databases
  1069. 16965 pg_namespace_all_databases_ind
  1070. 16966 pg_description_all_databases
  1071. 16967 pg_description_all_databases_ind
  1072. 16968 pg_attrdef_all_databases
  1073. 16969 pg_attrdef_all_databases_ind
  1074. 16970 pg_attribute_all_databases
  1075. 16971 pg_attribute_all_databases_ind
  1076. 16974 mz_compute_error_counts_raw_unified
  1077. 16977 mz_compute_hydration_times_per_worker
  1078. 16978 mz_compute_hydration_times
  1079. 16979 mz_cluster_workload_classes
  1080. 16981 mz_recent_storage_usage
  1081. 16982 mz_recent_storage_usage_ind
  1082. 16983 mz_pending_cluster_replicas
  1083. 16985 mz_analytics
  1084. 16986 mz_materialization_dependencies
  1085. 16987 crc32
  1086. 16988 crc32
  1087. 16989 kafka_murmur2
  1088. 16990 kafka_murmur2
  1089. 16991 seahash
  1090. 16992 seahash
  1091. 16993 mz_comments_ind
  1092. 16994 mz_show_tables
  1093. 16995 mz_show_views
  1094. 16996 mz_show_types
  1095. 16997 mz_show_databases
  1096. 16998 mz_show_schemas
  1097. 16999 mz_show_roles
  1098. 17000 mz_show_roles_ind
  1099. 17001 mz_show_connections
  1100. 17002 mz_show_all_objects
  1101. 17003 mz_show_clusters
  1102. 17004 mz_show_secrets
  1103. 17005 mz_show_columns
  1104. 17006 mz_databases_ind
  1105. 17007 mz_schemas_ind
  1106. 17008 mz_connections_ind
  1107. 17009 mz_tables_ind
  1108. 17010 mz_types_ind
  1109. 17011 mz_objects_ind
  1110. 17012 mz_columns_ind
  1111. 17013 mz_secrets_ind
  1112. 17014 mz_views_ind
  1113. 17015 mz_source_references
  1114. 17016 mz_cluster_replica_metrics_history
  1115. 17017 mz_cluster_replica_metrics_history_ind
  1116. 17018 mz_cluster_replica_utilization_history
  1117. 17019 mz_cluster_replica_status_history
  1118. 17020 mz_cluster_replica_status_history_ind
  1119. 17021 mz_wallclock_lag_history
  1120. 17022 mz_wallclock_global_lag_history
  1121. 17023 mz_wallclock_global_lag_recent_history
  1122. 17024 mz_wallclock_global_lag_recent_history_ind
  1123. 17025 mz_kafka_source_tables
  1124. 17026 mz_continual_tasks
  1125. 17027 mz_show_continual_tasks
  1126. 17030 mz_objects_id_namespace_types
  1127. 17031 mz_object_history
  1128. 17032 mz_object_history_ind
  1129. 17033 mz_cluster_replica_name_history
  1130. 17034 mz_cluster_replica_name_history_ind
  1131. 17035 mz_console_cluster_utilization_overview
  1132. 17036 mz_console_cluster_utilization_overview_ind
  1133. 17039 mz_continual_tasks_ind
  1134. 17040 mz_network_policies
  1135. 17041 mz_network_policy_rules
  1136. 17042 mz_index_advice
  1137. 17043 mz_show_network_policies
  1138. 17044 mz_compute_lir_mapping_per_worker
  1139. 17045 mz_compute_dataflow_global_ids_per_worker
  1140. 17046 mz_lir_mapping
  1141. 17047 mz_dataflow_global_ids
  1142. 17049 mz_cluster_deployment_lineage
  1143. 17050 mz_cluster_deployment_lineage_ind
  1144. 17051 mz_cluster_replica_frontiers_ind
  1145. 17052 mz_compute_hydration_times_ind
  1146. 17053 mz_mappable_objects
  1147. 17054 mz_wallclock_global_lag
  1148. 17055 mz_wallclock_global_lag_histogram_raw
  1149. 17056 mz_wallclock_global_lag_histogram
  1150. 17057 mz_sql_server_source_tables
  1151. 17058 mz_license_keys