12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169 |
- # Copyright Materialize, Inc. and contributors. All rights reserved.
- #
- # Use of this software is governed by the Business Source License
- # included in the LICENSE file at the root of this repository.
- #
- # As of the Change Date specified in that file, in accordance with
- # the Business Source License, use of this software will be governed
- # by the Apache License, Version 2.0.
- mode cockroach
- query T
- SELECT 1::oid::text
- ----
- 1
- query T
- SELECT (-1)::oid
- ----
- 4294967295
- query T
- SELECT (-1)::oid
- ----
- 4294967295
- query error "4294967296" OID out of range
- SELECT 4294967296::oid
- query error "-1" OID out of range
- SELECT (-1)::int8::oid
- query B
- SELECT 1::oid = 2::oid
- ----
- false
- query B
- SELECT 1::oid < 2::oid
- ----
- true
- query B
- SELECT (-1)::oid < 2::oid
- ----
- false
- query B
- SELECT 0::oid < 4294967295::oid
- ----
- true
- query B
- SELECT 1 <= 2::oid
- ----
- true
- query B
- SELECT 1::oid > 2
- ----
- false
- query B
- SELECT 1::oid >= 2
- ----
- false
- query B
- SELECT 1::oid != 2::oid
- ----
- true
- # Check static system OIDs.
- query TT
- SELECT oid, name FROM mz_schemas WHERE id LIKE 's%' ORDER BY oid
- ----
- 16656 mz_catalog
- 16657 pg_catalog
- 16658 mz_internal
- 16659 information_schema
- 16660 mz_unsafe
- 16972 mz_catalog_unstable
- 16973 mz_introspection
- query TT
- SELECT oid, name FROM mz_roles WHERE id LIKE 's%' OR id LIKE 'g%' ORDER BY oid
- ----
- 16661 mz_system
- 16662 mz_support
- 16663 mz_monitor
- 16664 mz_monitor_redacted
- 16984 mz_analytics
- # Only look at OIDs less than 20000 so that we don't consider system objects allocated at run time.
- query TT
- SELECT oid, name FROM mz_objects WHERE id LIKE 's%' AND oid < 20000 ORDER BY oid
- ----
- 16 bool
- 17 bytea
- 18 char
- 19 name
- 20 int8
- 21 int2
- 22 int2vector
- 23 int4
- 24 regproc
- 25 text
- 26 oid
- 34 namein
- 38 int2in
- 40 int2vectorin
- 42 int4in
- 44 regprocin
- 46 textin
- 89 version
- 200 float4in
- 214 float8in
- 376 string_to_array
- 383 array_cat
- 384 array_to_string
- 394 string_to_array
- 395 array_to_string
- 460 int8in
- 700 float4
- 701 float8
- 720 octet_length
- 721 get_byte
- 723 get_bit
- 745 current_user
- 746 session_user
- 750 array_in
- 849 position
- 861 current_database
- 870 lower
- 871 upper
- 872 initcap
- 873 lpad
- 875 ltrim
- 876 rtrim
- 877 substr
- 878 translate
- 879 lpad
- 881 ltrim
- 882 rtrim
- 883 substr
- 884 btrim
- 885 btrim
- 936 substring
- 937 substring
- 938 generate_series
- 939 generate_series
- 940 mod
- 941 mod
- 947 mod
- 1000 _bool
- 1001 _bytea
- 1002 _char
- 1003 _name
- 1005 _int2
- 1006 _int2vector
- 1007 _int4
- 1008 _regproc
- 1009 _text
- 1014 _bpchar
- 1015 _varchar
- 1016 _int8
- 1021 _float4
- 1022 _float8
- 1026 timezone
- 1028 _oid
- 1031 aclitemin
- 1033 aclitem
- 1034 _aclitem
- 1042 bpchar
- 1043 varchar
- 1044 bpcharin
- 1046 varcharin
- 1066 generate_series
- 1067 generate_series
- 1068 generate_series
- 1069 generate_series
- 1081 format_type
- 1082 date
- 1083 time
- 1084 date_in
- 1114 timestamp
- 1115 _timestamp
- 1143 time_in
- 1150 timestamptz_in
- 1158 to_timestamp
- 1159 timezone
- 1160 interval_in
- 1171 date_part
- 1172 date_part
- 1175 justify_hours
- 1178 date
- 1182 _date
- 1183 _time
- 1184 timestamptz
- 1185 _timestamptz
- 1186 interval
- 1187 _interval
- 1192 generate_subscripts
- 1193 array_fill
- 1194 log10
- 1199 age
- 1215 obj_description
- 1216 col_description
- 1217 date_trunc
- 1218 date_trunc
- 1231 _numeric
- 1242 boolin
- 1244 byteain
- 1245 charin
- 1268 parse_ident
- 1269 pg_column_size
- 1282 quote_ident
- 1286 array_fill
- 1295 justify_days
- 1299 now
- 1312 timestamp_in
- 1317 length
- 1340 log
- 1341 ln
- 1342 round
- 1343 trunc
- 1344 sqrt
- 1345 cbrt
- 1346 pow
- 1347 exp
- 1365 makeaclitem
- 1368 power
- 1374 octet_length
- 1375 octet_length
- 1381 char_length
- 1385 date_part
- 1387 pg_get_constraintdef
- 1394 abs
- 1395 abs
- 1396 abs
- 1397 abs
- 1398 abs
- 1402 current_schema
- 1403 current_schemas
- 1481 log10
- 1573 pg_get_ruledef
- 1597 pg_encoding_to_char
- 1600 asin
- 1601 acos
- 1602 atan
- 1604 sin
- 1605 cos
- 1606 tan
- 1607 cot
- 1608 degrees
- 1609 radians
- 1619 pg_typeof
- 1620 ascii
- 1621 chr
- 1622 repeat
- 1637 like_escape
- 1640 pg_get_viewdef
- 1641 pg_get_viewdef
- 1642 pg_get_userbyid
- 1643 pg_get_indexdef
- 1689 aclexplode
- 1700 numeric
- 1701 numeric_in
- 1705 abs
- 1707 round
- 1708 round
- 1710 trunc
- 1711 ceil
- 1712 floor
- 1713 length
- 1714 convert_from
- 1716 pg_get_expr
- 1728 mod
- 1730 sqrt
- 1732 exp
- 1734 ln
- 1736 log
- 1741 log
- 1770 to_char
- 1798 oidin
- 1810 bit_length
- 1811 bit_length
- 1922 has_table_privilege
- 1923 has_table_privilege
- 1924 has_table_privilege
- 1925 has_table_privilege
- 1926 has_table_privilege
- 1927 has_table_privilege
- 1928 pg_stat_get_numscans
- 1946 encode
- 1947 decode
- 2010 length
- 2020 date_trunc
- 2021 date_part
- 2026 pg_backend_pid
- 2029 date
- 2037 timezone
- 2038 timezone
- 2049 to_char
- 2058 age
- 2069 timezone
- 2070 timezone
- 2077 current_setting
- 2079 pg_table_is_visible
- 2080 pg_type_is_visible
- 2081 pg_function_is_visible
- 2087 replace
- 2088 split_part
- 2091 array_lower
- 2092 array_upper
- 2100 avg
- 2101 avg
- 2102 avg
- 2104 avg
- 2105 avg
- 2106 avg
- 2107 sum
- 2108 sum
- 2109 sum
- 2110 sum
- 2111 sum
- 2113 sum
- 2114 sum
- 2115 max
- 2116 max
- 2117 max
- 2119 max
- 2120 max
- 2122 max
- 2123 max
- 2126 max
- 2127 max
- 2128 max
- 2129 max
- 2131 min
- 2132 min
- 2133 min
- 2135 min
- 2136 min
- 2138 min
- 2139 min
- 2142 min
- 2143 min
- 2144 min
- 2145 min
- 2147 count
- 2148 variance
- 2149 variance
- 2150 variance
- 2151 variance
- 2152 variance
- 2154 stddev
- 2155 stddev
- 2156 stddev
- 2157 stddev
- 2158 stddev
- 2167 ceiling
- 2169 power
- 2171 pg_cancel_backend
- 2176 array_length
- 2205 regclass
- 2206 regtype
- 2210 _regclass
- 2211 _regtype
- 2218 regclassin
- 2220 regtypein
- 2244 max
- 2245 min
- 2249 record
- 2250 has_database_privilege
- 2251 has_database_privilege
- 2252 has_database_privilege
- 2253 has_database_privilege
- 2254 has_database_privilege
- 2255 has_database_privilege
- 2268 has_schema_privilege
- 2269 has_schema_privilege
- 2270 has_schema_privilege
- 2271 has_schema_privilege
- 2272 has_schema_privilege
- 2273 has_schema_privilege
- 2276 any
- 2277 anyarray
- 2281 internal
- 2283 anyelement
- 2284 regexp_replace
- 2285 regexp_replace
- 2287 _record
- 2290 record_in
- 2294 any_in
- 2296 anyarray_in
- 2304 internal_in
- 2308 ceil
- 2309 floor
- 2311 md5
- 2312 anyelement_in
- 2320 ceiling
- 2321 md5
- 2325 pg_relation_size
- 2331 unnest
- 2332 pg_relation_size
- 2335 array_agg
- 2400 array_recv
- 2402 record_recv
- 2404 int2recv
- 2406 int4recv
- 2408 int8recv
- 2410 int2vectorrecv
- 2412 bytearecv
- 2414 textrecv
- 2418 oidrecv
- 2422 namerecv
- 2424 float4recv
- 2426 float8recv
- 2430 bpcharrecv
- 2432 varcharrecv
- 2434 charrecv
- 2436 boolrecv
- 2444 regprocrecv
- 2452 regclassrecv
- 2454 regtyperecv
- 2460 numeric_recv
- 2462 sinh
- 2463 cosh
- 2464 tanh
- 2465 asinh
- 2466 acosh
- 2467 atanh
- 2468 date_recv
- 2470 time_recv
- 2474 timestamp_recv
- 2476 timestamptz_recv
- 2478 interval_recv
- 2502 anyarray_recv
- 2504 pg_get_ruledef
- 2505 pg_get_viewdef
- 2506 pg_get_viewdef
- 2507 pg_get_indexdef
- 2508 pg_get_constraintdef
- 2509 pg_get_expr
- 2517 bool_and
- 2518 bool_or
- 2560 pg_postmaster_start_time
- 2641 var_samp
- 2642 var_samp
- 2643 var_samp
- 2644 var_samp
- 2645 var_samp
- 2705 pg_has_role
- 2706 pg_has_role
- 2707 pg_has_role
- 2708 pg_has_role
- 2709 pg_has_role
- 2710 pg_has_role
- 2711 justify_interval
- 2712 stddev_samp
- 2713 stddev_samp
- 2714 stddev_samp
- 2715 stddev_samp
- 2716 stddev_samp
- 2718 var_pop
- 2719 var_pop
- 2720 var_pop
- 2721 var_pop
- 2722 var_pop
- 2724 stddev_pop
- 2725 stddev_pop
- 2726 stddev_pop
- 2727 stddev_pop
- 2728 stddev_pop
- 2763 regexp_matches
- 2764 regexp_matches
- 2765 regexp_split_to_table
- 2766 regexp_split_to_table
- 2767 regexp_split_to_array
- 2768 regexp_split_to_array
- 2776 anynonarray
- 2777 anynonarray_in
- 2803 count
- 2950 uuid
- 2951 _uuid
- 2952 uuid_in
- 2961 uuid_recv
- 3058 concat
- 3059 concat_ws
- 3060 left
- 3061 right
- 3062 reverse
- 3100 row_number
- 3101 rank
- 3102 dense_rank
- 3106 lag
- 3107 lag
- 3108 lag
- 3109 lead
- 3110 lead
- 3111 lead
- 3112 first_value
- 3113 last_value
- 3138 has_type_privilege
- 3139 has_type_privilege
- 3140 has_type_privilege
- 3141 has_type_privilege
- 3142 has_type_privilege
- 3143 has_type_privilege
- 3159 pg_get_viewdef
- 3166 pg_size_pretty
- 3167 array_remove
- 3207 jsonb_array_length
- 3208 jsonb_each
- 3210 jsonb_typeof
- 3219 jsonb_array_elements
- 3262 jsonb_strip_nulls
- 3267 jsonb_agg
- 3270 jsonb_object_agg
- 3271 jsonb_build_array
- 3272 jsonb_build_array
- 3273 jsonb_build_object
- 3274 jsonb_build_object
- 3277 array_position
- 3278 array_position
- 3294 current_setting
- 3306 jsonb_pretty
- 3396 regexp_match
- 3397 regexp_match
- 3419 sha224
- 3420 sha256
- 3421 sha384
- 3422 sha512
- 3461 make_timestamp
- 3465 jsonb_array_elements_text
- 3538 string_agg
- 3545 string_agg
- 3696 starts_with
- 3778 pg_tablespace_location
- 3787 to_jsonb
- 3802 jsonb
- 3805 jsonb_recv
- 3806 jsonb_in
- 3807 _jsonb
- 3810 pg_is_in_recovery
- 3831 anyrange
- 3832 anyrange_in
- 3834 range_in
- 3836 range_recv
- 3840 int4range
- 3841 int4range
- 3844 numrange
- 3845 numrange
- 3848 lower
- 3849 upper
- 3850 isempty
- 3851 lower_inc
- 3852 upper_inc
- 3853 lower_inf
- 3854 upper_inf
- 3904 int4range
- 3905 _int4range
- 3906 numrange
- 3907 _numrange
- 3908 tsrange
- 3909 _tsrange
- 3910 tstzrange
- 3911 _tstzrange
- 3912 daterange
- 3913 _daterange
- 3926 int8range
- 3927 _int8range
- 3931 jsonb_object_keys
- 3932 jsonb_each_text
- 3933 tsrange
- 3934 tsrange
- 3937 tstzrange
- 3938 tstzrange
- 3941 daterange
- 3942 daterange
- 3945 int8range
- 3946 int8range
- 4053 array_agg
- 5077 anycompatible
- 5078 anycompatiblearray
- 5079 anycompatiblenonarray
- 5080 anycompatiblerange
- 5086 anycompatible_in
- 5088 anycompatiblearray_in
- 5090 anycompatiblearray_recv
- 5092 anycompatiblenonarray_in
- 5094 anycompatiblerange_in
- 6163 bit_count
- 6177 date_bin
- 6178 date_bin
- 6199 extract
- 6200 extract
- 6202 extract
- 6203 extract
- 6204 extract
- 12000 _pg_expandarray
- 12001 digest
- 12002 digest
- 12003 hmac
- 12004 hmac
- 16384 list
- 16385 map
- 16386 ceil
- 16387 concat_agg
- 16388 csv_extract
- 16389 current_timestamp
- 16390 floor
- 16392 list_append
- 16393 list_cat
- 16394 list_length_max
- 16395 list_length
- 16396 list_n_layers
- 16397 list_prepend
- 16398 max
- 16399 min
- 16400 mz_all
- 16401 mz_any
- 16403 mz_avg_promotion_internal_v1
- 16404 mz_avg_promotion_internal_v1
- 16405 mz_avg_promotion_internal_v1
- 16407 mz_environment_id
- 16409 mz_logical_timestamp
- 16410 mz_render_typmod
- 16411 mz_version
- 16412 regexp_extract
- 16413 repeat_row
- 16414 round
- 16416 unnest
- 16434 mz_sleep
- 16435 mz_session_id
- 16436 mz_uptime
- 16440 mz_row_size
- 16441 max
- 16442 min
- 16443 mz_avg_promotion_internal_v1
- 16444 list_agg
- 16445 mz_error_if_null
- 16446 date_bin
- 16447 date_bin
- 16448 list_remove
- 16449 date_bin_hopping
- 16450 date_bin_hopping
- 16451 date_bin_hopping
- 16452 date_bin_hopping
- 16453 mz_type_name
- 16454 anycompatiblelist
- 16455 anycompatiblemap
- 16456 map_length
- 16457 mz_panic
- 16458 mz_version_num
- 16459 trunc
- 16460 uint2
- 16461 _uint2
- 16462 uint4
- 16463 _uint4
- 16464 uint8
- 16465 _uint8
- 16496 max
- 16497 max
- 16498 max
- 16499 min
- 16500 min
- 16501 min
- 16502 sum
- 16503 sum
- 16504 sum
- 16505 avg
- 16506 avg
- 16507 avg
- 16508 mod
- 16509 mod
- 16510 mod
- 16511 stddev
- 16512 stddev
- 16513 stddev
- 16514 stddev_pop
- 16515 stddev_pop
- 16516 stddev_pop
- 16517 stddev_samp
- 16518 stddev_samp
- 16519 stddev_samp
- 16520 variance
- 16521 variance
- 16522 variance
- 16523 var_pop
- 16524 var_pop
- 16525 var_pop
- 16526 var_samp
- 16527 var_samp
- 16528 var_samp
- 16550 mz_avg_promotion_internal_v1
- 16551 mz_avg_promotion_internal_v1
- 16552 mz_timestamp
- 16553 _mz_timestamp
- 16560 mz_now
- 16561 max
- 16562 min
- 16563 date
- 16564 ceiling
- 16565 uuid_generate_v5
- 16566 mz_aclitem
- 16567 _mz_aclitem
- 16570 make_mz_aclitem
- 16571 mz_aclitem_grantor
- 16572 mz_aclitem_grantee
- 16573 mz_aclitem_privileges
- 16574 is_rbac_enabled
- 16575 mz_acl_item_contains_privilege
- 16576 mz_validate_privileges
- 16577 mz_role_oid
- 16578 mz_minimal_name_qualification
- 16581 mz_resolve_object_name
- 16582 mz_global_id_to_name
- 16584 parse_ident
- 16585 mz_database_oid
- 16586 mz_schema_oid
- 16587 has_cluster_privilege
- 16588 has_cluster_privilege
- 16589 has_cluster_privilege
- 16591 has_connection_privilege
- 16592 has_connection_privilege
- 16593 has_connection_privilege
- 16594 has_connection_privilege
- 16595 has_connection_privilege
- 16596 has_connection_privilege
- 16597 has_secret_privilege
- 16598 has_secret_privilege
- 16599 has_secret_privilege
- 16600 has_secret_privilege
- 16601 has_secret_privilege
- 16602 has_secret_privilege
- 16603 mz_normalize_object_name
- 16604 datediff
- 16605 datediff
- 16606 datediff
- 16607 datediff
- 16608 has_system_privilege
- 16609 has_system_privilege
- 16610 has_system_privilege
- 16611 try_parse_monotonic_iso8601_timestamp
- 16612 mz_role_oid_memberships
- 16613 mz_validate_role_privilege
- 16614 mz_is_superuser
- 16615 mz_format_privileges
- 16616 aclitem_grantor
- 16617 aclitem_grantee
- 16618 aclitem_privileges
- 16619 mz_aclexplode
- 16620 has_role
- 16621 has_role
- 16622 has_role
- 16623 has_role
- 16624 has_role
- 16625 has_role
- 16626 mz_avg_promotion
- 16627 mz_avg_promotion
- 16628 mz_avg_promotion
- 16629 mz_avg_promotion
- 16630 mz_avg_promotion
- 16631 mz_avg_promotion
- 16632 mz_avg_promotion
- 16633 mz_avg_promotion
- 16634 mz_avg_promotion
- 16635 avg_internal_v1
- 16636 avg_internal_v1
- 16637 avg_internal_v1
- 16638 avg_internal_v1
- 16639 avg_internal_v1
- 16640 avg_internal_v1
- 16641 avg_internal_v1
- 16642 avg_internal_v1
- 16643 avg_internal_v1
- 16644 constant_time_eq
- 16645 constant_time_eq
- 16646 timezone_offset
- 16647 pretty_sql
- 16648 pretty_sql
- 16649 mz_name_rank
- 16650 mz_connection_oid
- 16651 mz_secret_oid
- 16652 map_build
- 16653 map_agg
- 16654 unnest
- 16655 mz_normalize_schema_name
- 16665 mz_dataflow_operators_per_worker
- 16666 mz_dataflow_addresses_per_worker
- 16667 mz_dataflow_channels_per_worker
- 16668 mz_scheduling_elapsed_raw
- 16669 mz_compute_operator_durations_histogram_raw
- 16670 mz_scheduling_parks_histogram_raw
- 16671 mz_arrangement_records_raw
- 16672 mz_arrangement_batches_raw
- 16673 mz_arrangement_sharing_raw
- 16674 mz_arrangement_batcher_records_raw
- 16675 mz_arrangement_batcher_size_raw
- 16676 mz_arrangement_batcher_capacity_raw
- 16677 mz_arrangement_batcher_allocations_raw
- 16678 mz_compute_exports_per_worker
- 16679 mz_compute_frontiers_per_worker
- 16680 mz_compute_import_frontiers_per_worker
- 16682 mz_compute_error_counts_raw
- 16683 mz_active_peeks_per_worker
- 16684 mz_peek_durations_histogram_raw
- 16685 mz_dataflow_shutdown_durations_histogram_raw
- 16686 mz_arrangement_heap_size_raw
- 16687 mz_arrangement_heap_capacity_raw
- 16688 mz_arrangement_heap_allocations_raw
- 16689 mz_message_batch_counts_received_raw
- 16690 mz_message_batch_counts_sent_raw
- 16691 mz_message_counts_received_raw
- 16692 mz_message_counts_sent_raw
- 16693 mz_dataflow_operator_reachability_raw
- 16694 mz_kafka_sinks
- 16695 mz_kafka_connections
- 16696 mz_kafka_sources
- 16697 mz_postgres_sources
- 16698 mz_object_dependencies
- 16699 mz_compute_dependencies
- 16700 mz_compute_hydration_statuses
- 16701 mz_compute_operator_hydration_statuses_per_worker
- 16702 mz_databases
- 16703 mz_schemas
- 16704 mz_columns
- 16705 mz_indexes
- 16706 mz_index_columns
- 16707 mz_tables
- 16708 mz_connections
- 16709 mz_ssh_tunnel_connections
- 16710 mz_sources
- 16711 mz_sinks
- 16712 mz_views
- 16713 mz_materialized_views
- 16714 mz_types
- 16715 mz_type_pg_metadata
- 16716 mz_array_types
- 16717 mz_base_types
- 16718 mz_list_types
- 16719 mz_map_types
- 16720 mz_roles
- 16721 mz_role_members
- 16722 mz_pseudo_types
- 16723 mz_functions
- 16724 mz_operators
- 16725 mz_aggregates
- 16726 mz_clusters
- 16727 mz_secrets
- 16728 mz_cluster_replicas
- 16729 mz_internal_cluster_replicas
- 16730 mz_cluster_replica_statuses
- 16731 mz_cluster_replica_sizes
- 16733 mz_audit_events
- 16734 mz_source_status_history
- 16735 mz_aws_privatelink_connection_status_history
- 16736 mz_aws_privatelink_connection_statuses
- 16737 mz_statement_execution_history
- 16738 mz_statement_execution_history_redacted
- 16739 mz_prepared_statement_history
- 16740 mz_sql_text
- 16741 mz_sql_text_redacted
- 16742 mz_recent_sql_text
- 16743 mz_recent_sql_text_redacted
- 16744 mz_recent_sql_text_ind
- 16745 mz_session_history
- 16746 mz_activity_log_thinned
- 16747 mz_recent_activity_log_thinned
- 16748 mz_recent_activity_log
- 16749 mz_recent_activity_log_redacted
- 16750 mz_statement_lifecycle_history
- 16751 mz_source_statuses
- 16752 mz_sink_status_history
- 16753 mz_sink_statuses
- 16754 mz_storage_usage_by_shard
- 16755 mz_egress_ips
- 16756 mz_aws_privatelink_connections
- 16757 mz_aws_connections
- 16758 mz_cluster_replica_metrics
- 16759 mz_cluster_replica_frontiers
- 16760 mz_frontiers
- 16761 mz_global_frontiers
- 16762 mz_subscriptions
- 16763 mz_sessions
- 16764 mz_default_privileges
- 16765 mz_system_privileges
- 16766 mz_comments
- 16767 mz_webhook_sources
- 16768 mz_source_statistics_raw
- 16769 mz_sink_statistics_raw
- 16770 mz_storage_shards
- 16771 mz_storage_usage
- 16772 mz_relations
- 16773 mz_object_oid_alias
- 16774 mz_objects
- 16775 mz_object_fully_qualified_names
- 16776 mz_object_lifetimes
- 16777 mz_dataflows_per_worker
- 16778 mz_dataflows
- 16779 mz_dataflow_addresses
- 16780 mz_dataflow_channels
- 16781 mz_dataflow_operators
- 16782 mz_dataflow_operator_dataflows_per_worker
- 16783 mz_dataflow_operator_dataflows
- 16784 mz_object_transitive_dependencies
- 16785 mz_compute_exports
- 16786 mz_compute_frontiers
- 16787 mz_dataflow_channel_operators_per_worker
- 16788 mz_dataflow_channel_operators
- 16789 mz_compute_import_frontiers
- 16790 mz_records_per_dataflow_operator_per_worker
- 16791 mz_records_per_dataflow_operator
- 16792 mz_records_per_dataflow_per_worker
- 16793 mz_records_per_dataflow
- 16794 pg_namespace
- 16795 pg_class
- 16796 pg_depend
- 16797 pg_database
- 16798 pg_index
- 16799 pg_indexes
- 16800 pg_description
- 16801 pg_type
- 16802 pg_attribute
- 16803 pg_proc
- 16804 pg_operator
- 16805 pg_range
- 16806 pg_enum
- 16807 pg_attrdef
- 16808 pg_settings
- 16809 pg_auth_members
- 16810 pg_event_trigger
- 16811 pg_language
- 16812 pg_shdescription
- 16813 pg_timezone_abbrevs
- 16814 pg_timezone_names
- 16815 mz_timezone_abbreviations
- 16816 mz_timezone_names
- 16817 mz_peek_durations_histogram_per_worker
- 16818 mz_peek_durations_histogram
- 16819 mz_dataflow_shutdown_durations_histogram_per_worker
- 16820 mz_dataflow_shutdown_durations_histogram
- 16821 mz_scheduling_elapsed_per_worker
- 16822 mz_scheduling_elapsed
- 16823 mz_compute_operator_durations_histogram_per_worker
- 16824 mz_compute_operator_durations_histogram
- 16825 mz_scheduling_parks_histogram_per_worker
- 16826 mz_scheduling_parks_histogram
- 16829 mz_compute_error_counts_per_worker
- 16830 mz_compute_error_counts
- 16831 mz_compute_operator_hydration_statuses
- 16832 mz_message_counts_per_worker
- 16833 mz_message_counts
- 16834 mz_active_peeks
- 16835 mz_dataflow_operator_reachability_per_worker
- 16836 mz_dataflow_operator_reachability
- 16837 mz_arrangement_sizes_per_worker
- 16838 mz_arrangement_sizes
- 16839 mz_arrangement_sharing_per_worker
- 16840 mz_arrangement_sharing
- 16841 mz_cluster_replica_utilization
- 16842 mz_dataflow_operator_parents_per_worker
- 16843 mz_dataflow_operator_parents
- 16844 mz_dataflow_arrangement_sizes
- 16845 mz_expected_group_size_advice
- 16846 pg_constraint
- 16847 pg_tables
- 16848 pg_tablespace
- 16849 pg_am
- 16850 pg_roles
- 16851 pg_views
- 16852 pg_matviews
- 16853 applicable_roles
- 16854 columns
- 16855 enabled_roles
- 16856 role_table_grants
- 16857 key_column_usage
- 16858 referential_constraints
- 16859 routines
- 16860 schemata
- 16861 tables
- 16862 table_constraints
- 16863 table_privileges
- 16864 triggers
- 16865 views
- 16866 character_sets
- 16867 pg_collation
- 16868 pg_policy
- 16869 pg_inherits
- 16870 pg_locks
- 16871 pg_authid
- 16872 pg_aggregate
- 16873 pg_trigger
- 16874 pg_rewrite
- 16875 pg_extension
- 16876 mz_show_sources
- 16877 mz_show_sinks
- 16878 mz_show_materialized_views
- 16879 mz_show_indexes
- 16880 mz_show_cluster_replicas
- 16881 mz_show_role_members
- 16882 mz_show_my_role_members
- 16883 mz_show_system_privileges
- 16884 mz_show_my_system_privileges
- 16885 mz_show_cluster_privileges
- 16886 mz_show_my_cluster_privileges
- 16887 mz_show_database_privileges
- 16888 mz_show_my_database_privileges
- 16889 mz_show_schema_privileges
- 16890 mz_show_my_schema_privileges
- 16891 mz_show_object_privileges
- 16892 mz_show_my_object_privileges
- 16893 mz_show_all_privileges
- 16894 mz_show_all_my_privileges
- 16895 mz_show_default_privileges
- 16896 mz_show_my_default_privileges
- 16897 mz_cluster_replica_history
- 16898 mz_hydration_statuses
- 16899 mz_materialization_lag
- 16900 mz_show_databases_ind
- 16901 mz_show_schemas_ind
- 16902 mz_show_connections_ind
- 16903 mz_show_tables_ind
- 16904 mz_show_sources_ind
- 16905 mz_show_views_ind
- 16906 mz_show_materialized_views_ind
- 16907 mz_show_sinks_ind
- 16908 mz_show_types_ind
- 16909 mz_show_all_objects_ind
- 16910 mz_show_indexes_ind
- 16911 mz_show_columns_ind
- 16912 mz_show_clusters_ind
- 16913 mz_show_cluster_replicas_ind
- 16914 mz_show_secrets_ind
- 16915 mz_clusters_ind
- 16916 mz_indexes_ind
- 16917 mz_roles_ind
- 16918 mz_sources_ind
- 16919 mz_sinks_ind
- 16920 mz_materialized_views_ind
- 16921 mz_source_statuses_ind
- 16922 mz_sink_statuses_ind
- 16923 mz_source_status_history_ind
- 16924 mz_sink_status_history_ind
- 16925 mz_source_statistics
- 16926 mz_source_statistics_ind
- 16927 mz_sink_statistics
- 16928 mz_sink_statistics_ind
- 16929 mz_cluster_replicas_ind
- 16930 mz_cluster_replica_sizes_ind
- 16931 mz_cluster_replica_statuses_ind
- 16932 mz_cluster_replica_metrics_ind
- 16933 mz_cluster_replica_history_ind
- 16934 mz_object_lifetimes_ind
- 16935 mz_object_dependencies_ind
- 16936 mz_compute_dependencies_ind
- 16937 mz_object_transitive_dependencies_ind
- 16938 mz_frontiers_ind
- 16939 mz_recent_activity_log_thinned_ind
- 16940 mz_optimizer_notices
- 16941 mz_notices
- 16942 mz_notices_redacted
- 16943 mz_notices_ind
- 16945 mz_role_parameters
- 16946 mz_materialized_view_refresh_strategies
- 16947 mz_cluster_schedules
- 16948 mz_postgres_source_tables
- 16949 mz_mysql_source_tables
- 16950 mz_kafka_sources_ind
- 16951 mz_webhook_sources_ind
- 16952 mz_history_retention_strategies
- 16953 mz_materialized_view_refreshes
- 16954 mz_source_statistics_with_history
- 16955 mz_source_statistics_with_history_ind
- 16956 pg_user
- 16957 current_catalog
- 16958 current_role
- 16959 user
- 16960 pg_class_all_databases
- 16961 pg_class_all_databases_ind
- 16962 pg_type_all_databases
- 16963 pg_type_all_databases_ind
- 16964 pg_namespace_all_databases
- 16965 pg_namespace_all_databases_ind
- 16966 pg_description_all_databases
- 16967 pg_description_all_databases_ind
- 16968 pg_attrdef_all_databases
- 16969 pg_attrdef_all_databases_ind
- 16970 pg_attribute_all_databases
- 16971 pg_attribute_all_databases_ind
- 16974 mz_compute_error_counts_raw_unified
- 16977 mz_compute_hydration_times_per_worker
- 16978 mz_compute_hydration_times
- 16979 mz_cluster_workload_classes
- 16981 mz_recent_storage_usage
- 16982 mz_recent_storage_usage_ind
- 16983 mz_pending_cluster_replicas
- 16985 mz_analytics
- 16986 mz_materialization_dependencies
- 16987 crc32
- 16988 crc32
- 16989 kafka_murmur2
- 16990 kafka_murmur2
- 16991 seahash
- 16992 seahash
- 16993 mz_comments_ind
- 16994 mz_show_tables
- 16995 mz_show_views
- 16996 mz_show_types
- 16997 mz_show_databases
- 16998 mz_show_schemas
- 16999 mz_show_roles
- 17000 mz_show_roles_ind
- 17001 mz_show_connections
- 17002 mz_show_all_objects
- 17003 mz_show_clusters
- 17004 mz_show_secrets
- 17005 mz_show_columns
- 17006 mz_databases_ind
- 17007 mz_schemas_ind
- 17008 mz_connections_ind
- 17009 mz_tables_ind
- 17010 mz_types_ind
- 17011 mz_objects_ind
- 17012 mz_columns_ind
- 17013 mz_secrets_ind
- 17014 mz_views_ind
- 17015 mz_source_references
- 17016 mz_cluster_replica_metrics_history
- 17017 mz_cluster_replica_metrics_history_ind
- 17018 mz_cluster_replica_utilization_history
- 17019 mz_cluster_replica_status_history
- 17020 mz_cluster_replica_status_history_ind
- 17021 mz_wallclock_lag_history
- 17022 mz_wallclock_global_lag_history
- 17023 mz_wallclock_global_lag_recent_history
- 17024 mz_wallclock_global_lag_recent_history_ind
- 17025 mz_kafka_source_tables
- 17026 mz_continual_tasks
- 17027 mz_show_continual_tasks
- 17030 mz_objects_id_namespace_types
- 17031 mz_object_history
- 17032 mz_object_history_ind
- 17033 mz_cluster_replica_name_history
- 17034 mz_cluster_replica_name_history_ind
- 17035 mz_console_cluster_utilization_overview
- 17036 mz_console_cluster_utilization_overview_ind
- 17039 mz_continual_tasks_ind
- 17040 mz_network_policies
- 17041 mz_network_policy_rules
- 17042 mz_index_advice
- 17043 mz_show_network_policies
- 17044 mz_compute_lir_mapping_per_worker
- 17045 mz_compute_dataflow_global_ids_per_worker
- 17046 mz_lir_mapping
- 17047 mz_dataflow_global_ids
- 17049 mz_cluster_deployment_lineage
- 17050 mz_cluster_deployment_lineage_ind
- 17051 mz_cluster_replica_frontiers_ind
- 17052 mz_compute_hydration_times_ind
- 17053 mz_mappable_objects
- 17054 mz_wallclock_global_lag
- 17055 mz_wallclock_global_lag_histogram_raw
- 17056 mz_wallclock_global_lag_histogram
- 17057 mz_sql_server_source_tables
- 17058 mz_license_keys
|