information_schema_tables.slt 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245
  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. # Start from a pristine server
  11. reset-server
  12. statement ok
  13. CREATE DATABASE other
  14. statement ok
  15. CREATE TABLE other.public.ignored (a int)
  16. statement ok
  17. CREATE TABLE t (a int)
  18. statement ok
  19. CREATE VIEW v AS SELECT 1
  20. statement ok
  21. CREATE MATERIALIZED VIEW mv AS SELECT 1
  22. statement ok
  23. CREATE SOURCE s FROM LOAD GENERATOR COUNTER;
  24. mode standard
  25. query TTTT rowsort
  26. SELECT * FROM information_schema.tables;
  27. ----
  28. materialize
  29. information_schema
  30. applicable_roles
  31. VIEW
  32. materialize
  33. information_schema
  34. character_sets
  35. VIEW
  36. materialize
  37. information_schema
  38. columns
  39. VIEW
  40. materialize
  41. information_schema
  42. enabled_roles
  43. VIEW
  44. materialize
  45. information_schema
  46. key_column_usage
  47. VIEW
  48. materialize
  49. information_schema
  50. referential_constraints
  51. VIEW
  52. materialize
  53. information_schema
  54. role_table_grants
  55. VIEW
  56. materialize
  57. information_schema
  58. routines
  59. VIEW
  60. materialize
  61. information_schema
  62. schemata
  63. VIEW
  64. materialize
  65. information_schema
  66. table_constraints
  67. VIEW
  68. materialize
  69. information_schema
  70. table_privileges
  71. VIEW
  72. materialize
  73. information_schema
  74. tables
  75. VIEW
  76. materialize
  77. information_schema
  78. triggers
  79. VIEW
  80. materialize
  81. information_schema
  82. views
  83. VIEW
  84. materialize
  85. mz_catalog
  86. mz_array_types
  87. BASE TABLE
  88. materialize
  89. mz_catalog
  90. mz_audit_events
  91. BASE TABLE
  92. materialize
  93. mz_catalog
  94. mz_aws_privatelink_connections
  95. BASE TABLE
  96. materialize
  97. mz_catalog
  98. mz_base_types
  99. BASE TABLE
  100. materialize
  101. mz_catalog
  102. mz_cluster_replica_frontiers
  103. SOURCE
  104. materialize
  105. mz_catalog
  106. mz_cluster_replica_sizes
  107. BASE TABLE
  108. materialize
  109. mz_catalog
  110. mz_cluster_replicas
  111. BASE TABLE
  112. materialize
  113. mz_catalog
  114. mz_clusters
  115. BASE TABLE
  116. materialize
  117. mz_catalog
  118. mz_columns
  119. BASE TABLE
  120. materialize
  121. mz_catalog
  122. mz_connections
  123. BASE TABLE
  124. materialize
  125. mz_catalog
  126. mz_databases
  127. BASE TABLE
  128. materialize
  129. mz_catalog
  130. mz_default_privileges
  131. BASE TABLE
  132. materialize
  133. mz_catalog
  134. mz_egress_ips
  135. BASE TABLE
  136. materialize
  137. mz_catalog
  138. mz_functions
  139. BASE TABLE
  140. materialize
  141. mz_catalog
  142. mz_index_columns
  143. BASE TABLE
  144. materialize
  145. mz_catalog
  146. mz_indexes
  147. BASE TABLE
  148. materialize
  149. mz_catalog
  150. mz_kafka_connections
  151. BASE TABLE
  152. materialize
  153. mz_catalog
  154. mz_kafka_sinks
  155. BASE TABLE
  156. materialize
  157. mz_catalog
  158. mz_kafka_sources
  159. BASE TABLE
  160. materialize
  161. mz_catalog
  162. mz_list_types
  163. BASE TABLE
  164. materialize
  165. mz_catalog
  166. mz_map_types
  167. BASE TABLE
  168. materialize
  169. mz_catalog
  170. mz_materialized_views
  171. BASE TABLE
  172. materialize
  173. mz_catalog
  174. mz_objects
  175. VIEW
  176. materialize
  177. mz_catalog
  178. mz_operators
  179. BASE TABLE
  180. materialize
  181. mz_catalog
  182. mz_pseudo_types
  183. BASE TABLE
  184. materialize
  185. mz_catalog
  186. mz_recent_storage_usage
  187. VIEW
  188. materialize
  189. mz_catalog
  190. mz_relations
  191. VIEW
  192. materialize
  193. mz_catalog
  194. mz_role_members
  195. BASE TABLE
  196. materialize
  197. mz_catalog
  198. mz_role_parameters
  199. BASE TABLE
  200. materialize
  201. mz_catalog
  202. mz_roles
  203. BASE TABLE
  204. materialize
  205. mz_catalog
  206. mz_schemas
  207. BASE TABLE
  208. materialize
  209. mz_catalog
  210. mz_secrets
  211. BASE TABLE
  212. materialize
  213. mz_catalog
  214. mz_sinks
  215. BASE TABLE
  216. materialize
  217. mz_catalog
  218. mz_sources
  219. BASE TABLE
  220. materialize
  221. mz_catalog
  222. mz_ssh_tunnel_connections
  223. BASE TABLE
  224. materialize
  225. mz_catalog
  226. mz_storage_usage
  227. VIEW
  228. materialize
  229. mz_catalog
  230. mz_system_privileges
  231. BASE TABLE
  232. materialize
  233. mz_catalog
  234. mz_tables
  235. BASE TABLE
  236. materialize
  237. mz_catalog
  238. mz_timezone_abbreviations
  239. VIEW
  240. materialize
  241. mz_catalog
  242. mz_timezone_names
  243. VIEW
  244. materialize
  245. mz_catalog
  246. mz_types
  247. BASE TABLE
  248. materialize
  249. mz_catalog
  250. mz_views
  251. BASE TABLE
  252. materialize
  253. mz_internal
  254. mz_activity_log_thinned
  255. VIEW
  256. materialize
  257. mz_internal
  258. mz_aggregates
  259. BASE TABLE
  260. materialize
  261. mz_internal
  262. mz_aws_connections
  263. BASE TABLE
  264. materialize
  265. mz_internal
  266. mz_aws_privatelink_connection_status_history
  267. SOURCE
  268. materialize
  269. mz_internal
  270. mz_aws_privatelink_connection_statuses
  271. VIEW
  272. materialize
  273. mz_internal
  274. mz_cluster_deployment_lineage
  275. VIEW
  276. materialize
  277. mz_internal
  278. mz_cluster_replica_history
  279. VIEW
  280. materialize
  281. mz_internal
  282. mz_cluster_replica_metrics
  283. VIEW
  284. materialize
  285. mz_internal
  286. mz_cluster_replica_metrics_history
  287. SOURCE
  288. materialize
  289. mz_internal
  290. mz_cluster_replica_name_history
  291. VIEW
  292. materialize
  293. mz_internal
  294. mz_cluster_replica_status_history
  295. SOURCE
  296. materialize
  297. mz_internal
  298. mz_cluster_replica_statuses
  299. VIEW
  300. materialize
  301. mz_internal
  302. mz_cluster_replica_utilization
  303. VIEW
  304. materialize
  305. mz_internal
  306. mz_cluster_replica_utilization_history
  307. VIEW
  308. materialize
  309. mz_internal
  310. mz_cluster_schedules
  311. BASE TABLE
  312. materialize
  313. mz_internal
  314. mz_cluster_workload_classes
  315. BASE TABLE
  316. materialize
  317. mz_internal
  318. mz_comments
  319. BASE TABLE
  320. materialize
  321. mz_internal
  322. mz_compute_dependencies
  323. SOURCE
  324. materialize
  325. mz_internal
  326. mz_compute_error_counts_raw_unified
  327. SOURCE
  328. materialize
  329. mz_internal
  330. mz_compute_hydration_statuses
  331. VIEW
  332. materialize
  333. mz_internal
  334. mz_compute_hydration_times
  335. SOURCE
  336. materialize
  337. mz_internal
  338. mz_compute_operator_hydration_statuses
  339. VIEW
  340. materialize
  341. mz_internal
  342. mz_compute_operator_hydration_statuses_per_worker
  343. SOURCE
  344. materialize
  345. mz_internal
  346. mz_console_cluster_utilization_overview
  347. VIEW
  348. materialize
  349. mz_internal
  350. mz_continual_tasks
  351. BASE TABLE
  352. materialize
  353. mz_internal
  354. mz_frontiers
  355. SOURCE
  356. materialize
  357. mz_internal
  358. mz_global_frontiers
  359. VIEW
  360. materialize
  361. mz_internal
  362. mz_history_retention_strategies
  363. BASE TABLE
  364. materialize
  365. mz_internal
  366. mz_hydration_statuses
  367. VIEW
  368. materialize
  369. mz_internal
  370. mz_index_advice
  371. VIEW
  372. materialize
  373. mz_internal
  374. mz_internal_cluster_replicas
  375. BASE TABLE
  376. materialize
  377. mz_internal
  378. mz_kafka_source_tables
  379. BASE TABLE
  380. materialize
  381. mz_internal
  382. mz_license_keys
  383. BASE TABLE
  384. materialize
  385. mz_internal
  386. mz_materialization_dependencies
  387. VIEW
  388. materialize
  389. mz_internal
  390. mz_materialization_lag
  391. VIEW
  392. materialize
  393. mz_internal
  394. mz_materialized_view_refresh_strategies
  395. BASE TABLE
  396. materialize
  397. mz_internal
  398. mz_materialized_view_refreshes
  399. SOURCE
  400. materialize
  401. mz_internal
  402. mz_mysql_source_tables
  403. BASE TABLE
  404. materialize
  405. mz_internal
  406. mz_network_policies
  407. BASE TABLE
  408. materialize
  409. mz_internal
  410. mz_network_policy_rules
  411. BASE TABLE
  412. materialize
  413. mz_internal
  414. mz_notices
  415. VIEW
  416. materialize
  417. mz_internal
  418. mz_notices_redacted
  419. VIEW
  420. materialize
  421. mz_internal
  422. mz_object_dependencies
  423. BASE TABLE
  424. materialize
  425. mz_internal
  426. mz_object_fully_qualified_names
  427. VIEW
  428. materialize
  429. mz_internal
  430. mz_object_history
  431. VIEW
  432. materialize
  433. mz_internal
  434. mz_object_lifetimes
  435. VIEW
  436. materialize
  437. mz_internal
  438. mz_object_oid_alias
  439. VIEW
  440. materialize
  441. mz_internal
  442. mz_object_transitive_dependencies
  443. VIEW
  444. materialize
  445. mz_internal
  446. mz_objects_id_namespace_types
  447. VIEW
  448. materialize
  449. mz_internal
  450. mz_optimizer_notices
  451. BASE TABLE
  452. materialize
  453. mz_internal
  454. mz_pending_cluster_replicas
  455. BASE TABLE
  456. materialize
  457. mz_internal
  458. mz_postgres_source_tables
  459. BASE TABLE
  460. materialize
  461. mz_internal
  462. mz_postgres_sources
  463. BASE TABLE
  464. materialize
  465. mz_internal
  466. mz_prepared_statement_history
  467. SOURCE
  468. materialize
  469. mz_internal
  470. mz_recent_activity_log
  471. VIEW
  472. materialize
  473. mz_internal
  474. mz_recent_activity_log_redacted
  475. VIEW
  476. materialize
  477. mz_internal
  478. mz_recent_activity_log_thinned
  479. VIEW
  480. materialize
  481. mz_internal
  482. mz_recent_sql_text
  483. VIEW
  484. materialize
  485. mz_internal
  486. mz_recent_sql_text_redacted
  487. VIEW
  488. materialize
  489. mz_internal
  490. mz_session_history
  491. SOURCE
  492. materialize
  493. mz_internal
  494. mz_sessions
  495. BASE TABLE
  496. materialize
  497. mz_internal
  498. mz_show_all_my_privileges
  499. VIEW
  500. materialize
  501. mz_internal
  502. mz_show_all_objects
  503. VIEW
  504. materialize
  505. mz_internal
  506. mz_show_all_privileges
  507. VIEW
  508. materialize
  509. mz_internal
  510. mz_show_cluster_privileges
  511. VIEW
  512. materialize
  513. mz_internal
  514. mz_show_cluster_replicas
  515. VIEW
  516. materialize
  517. mz_internal
  518. mz_show_clusters
  519. VIEW
  520. materialize
  521. mz_internal
  522. mz_show_columns
  523. VIEW
  524. materialize
  525. mz_internal
  526. mz_show_connections
  527. VIEW
  528. materialize
  529. mz_internal
  530. mz_show_continual_tasks
  531. VIEW
  532. materialize
  533. mz_internal
  534. mz_show_database_privileges
  535. VIEW
  536. materialize
  537. mz_internal
  538. mz_show_databases
  539. VIEW
  540. materialize
  541. mz_internal
  542. mz_show_default_privileges
  543. VIEW
  544. materialize
  545. mz_internal
  546. mz_show_indexes
  547. VIEW
  548. materialize
  549. mz_internal
  550. mz_show_materialized_views
  551. VIEW
  552. materialize
  553. mz_internal
  554. mz_show_my_cluster_privileges
  555. VIEW
  556. materialize
  557. mz_internal
  558. mz_show_my_database_privileges
  559. VIEW
  560. materialize
  561. mz_internal
  562. mz_show_my_default_privileges
  563. VIEW
  564. materialize
  565. mz_internal
  566. mz_show_my_object_privileges
  567. VIEW
  568. materialize
  569. mz_internal
  570. mz_show_my_role_members
  571. VIEW
  572. materialize
  573. mz_internal
  574. mz_show_my_schema_privileges
  575. VIEW
  576. materialize
  577. mz_internal
  578. mz_show_my_system_privileges
  579. VIEW
  580. materialize
  581. mz_internal
  582. mz_show_network_policies
  583. VIEW
  584. materialize
  585. mz_internal
  586. mz_show_object_privileges
  587. VIEW
  588. materialize
  589. mz_internal
  590. mz_show_role_members
  591. VIEW
  592. materialize
  593. mz_internal
  594. mz_show_roles
  595. VIEW
  596. materialize
  597. mz_internal
  598. mz_show_schema_privileges
  599. VIEW
  600. materialize
  601. mz_internal
  602. mz_show_schemas
  603. VIEW
  604. materialize
  605. mz_internal
  606. mz_show_secrets
  607. VIEW
  608. materialize
  609. mz_internal
  610. mz_show_sinks
  611. VIEW
  612. materialize
  613. mz_internal
  614. mz_show_sources
  615. VIEW
  616. materialize
  617. mz_internal
  618. mz_show_system_privileges
  619. VIEW
  620. materialize
  621. mz_internal
  622. mz_show_tables
  623. VIEW
  624. materialize
  625. mz_internal
  626. mz_show_types
  627. VIEW
  628. materialize
  629. mz_internal
  630. mz_show_views
  631. VIEW
  632. materialize
  633. mz_internal
  634. mz_sink_statistics
  635. VIEW
  636. materialize
  637. mz_internal
  638. mz_sink_statistics_raw
  639. SOURCE
  640. materialize
  641. mz_internal
  642. mz_sink_status_history
  643. SOURCE
  644. materialize
  645. mz_internal
  646. mz_sink_statuses
  647. VIEW
  648. materialize
  649. mz_internal
  650. mz_source_references
  651. BASE TABLE
  652. materialize
  653. mz_internal
  654. mz_source_statistics
  655. VIEW
  656. materialize
  657. mz_internal
  658. mz_source_statistics_raw
  659. SOURCE
  660. materialize
  661. mz_internal
  662. mz_source_statistics_with_history
  663. VIEW
  664. materialize
  665. mz_internal
  666. mz_source_status_history
  667. SOURCE
  668. materialize
  669. mz_internal
  670. mz_source_statuses
  671. VIEW
  672. materialize
  673. mz_internal
  674. mz_sql_server_source_tables
  675. BASE TABLE
  676. materialize
  677. mz_internal
  678. mz_sql_text
  679. SOURCE
  680. materialize
  681. mz_internal
  682. mz_sql_text_redacted
  683. VIEW
  684. materialize
  685. mz_internal
  686. mz_statement_execution_history
  687. SOURCE
  688. materialize
  689. mz_internal
  690. mz_statement_execution_history_redacted
  691. VIEW
  692. materialize
  693. mz_internal
  694. mz_statement_lifecycle_history
  695. SOURCE
  696. materialize
  697. mz_internal
  698. mz_storage_shards
  699. SOURCE
  700. materialize
  701. mz_internal
  702. mz_storage_usage_by_shard
  703. BASE TABLE
  704. materialize
  705. mz_internal
  706. mz_subscriptions
  707. BASE TABLE
  708. materialize
  709. mz_internal
  710. mz_type_pg_metadata
  711. BASE TABLE
  712. materialize
  713. mz_internal
  714. mz_wallclock_global_lag
  715. VIEW
  716. materialize
  717. mz_internal
  718. mz_wallclock_global_lag_histogram
  719. VIEW
  720. materialize
  721. mz_internal
  722. mz_wallclock_global_lag_histogram_raw
  723. SOURCE
  724. materialize
  725. mz_internal
  726. mz_wallclock_global_lag_history
  727. VIEW
  728. materialize
  729. mz_internal
  730. mz_wallclock_global_lag_recent_history
  731. VIEW
  732. materialize
  733. mz_internal
  734. mz_wallclock_lag_history
  735. SOURCE
  736. materialize
  737. mz_internal
  738. mz_webhook_sources
  739. BASE TABLE
  740. materialize
  741. mz_internal
  742. pg_attrdef_all_databases
  743. VIEW
  744. materialize
  745. mz_internal
  746. pg_attribute_all_databases
  747. VIEW
  748. materialize
  749. mz_internal
  750. pg_class_all_databases
  751. VIEW
  752. materialize
  753. mz_internal
  754. pg_description_all_databases
  755. VIEW
  756. materialize
  757. mz_internal
  758. pg_namespace_all_databases
  759. VIEW
  760. materialize
  761. mz_internal
  762. pg_type_all_databases
  763. VIEW
  764. materialize
  765. mz_introspection
  766. mz_active_peeks
  767. VIEW
  768. materialize
  769. mz_introspection
  770. mz_active_peeks_per_worker
  771. SOURCE
  772. materialize
  773. mz_introspection
  774. mz_arrangement_batcher_allocations_raw
  775. SOURCE
  776. materialize
  777. mz_introspection
  778. mz_arrangement_batcher_capacity_raw
  779. SOURCE
  780. materialize
  781. mz_introspection
  782. mz_arrangement_batcher_records_raw
  783. SOURCE
  784. materialize
  785. mz_introspection
  786. mz_arrangement_batcher_size_raw
  787. SOURCE
  788. materialize
  789. mz_introspection
  790. mz_arrangement_batches_raw
  791. SOURCE
  792. materialize
  793. mz_introspection
  794. mz_arrangement_heap_allocations_raw
  795. SOURCE
  796. materialize
  797. mz_introspection
  798. mz_arrangement_heap_capacity_raw
  799. SOURCE
  800. materialize
  801. mz_introspection
  802. mz_arrangement_heap_size_raw
  803. SOURCE
  804. materialize
  805. mz_introspection
  806. mz_arrangement_records_raw
  807. SOURCE
  808. materialize
  809. mz_introspection
  810. mz_arrangement_sharing
  811. VIEW
  812. materialize
  813. mz_introspection
  814. mz_arrangement_sharing_per_worker
  815. VIEW
  816. materialize
  817. mz_introspection
  818. mz_arrangement_sharing_raw
  819. SOURCE
  820. materialize
  821. mz_introspection
  822. mz_arrangement_sizes
  823. VIEW
  824. materialize
  825. mz_introspection
  826. mz_arrangement_sizes_per_worker
  827. VIEW
  828. materialize
  829. mz_introspection
  830. mz_compute_dataflow_global_ids_per_worker
  831. SOURCE
  832. materialize
  833. mz_introspection
  834. mz_compute_error_counts
  835. VIEW
  836. materialize
  837. mz_introspection
  838. mz_compute_error_counts_per_worker
  839. VIEW
  840. materialize
  841. mz_introspection
  842. mz_compute_error_counts_raw
  843. SOURCE
  844. materialize
  845. mz_introspection
  846. mz_compute_exports
  847. VIEW
  848. materialize
  849. mz_introspection
  850. mz_compute_exports_per_worker
  851. SOURCE
  852. materialize
  853. mz_introspection
  854. mz_compute_frontiers
  855. VIEW
  856. materialize
  857. mz_introspection
  858. mz_compute_frontiers_per_worker
  859. SOURCE
  860. materialize
  861. mz_introspection
  862. mz_compute_hydration_times_per_worker
  863. SOURCE
  864. materialize
  865. mz_introspection
  866. mz_compute_import_frontiers
  867. VIEW
  868. materialize
  869. mz_introspection
  870. mz_compute_import_frontiers_per_worker
  871. SOURCE
  872. materialize
  873. mz_introspection
  874. mz_compute_lir_mapping_per_worker
  875. SOURCE
  876. materialize
  877. mz_introspection
  878. mz_compute_operator_durations_histogram
  879. VIEW
  880. materialize
  881. mz_introspection
  882. mz_compute_operator_durations_histogram_per_worker
  883. VIEW
  884. materialize
  885. mz_introspection
  886. mz_compute_operator_durations_histogram_raw
  887. SOURCE
  888. materialize
  889. mz_introspection
  890. mz_dataflow_addresses
  891. VIEW
  892. materialize
  893. mz_introspection
  894. mz_dataflow_addresses_per_worker
  895. SOURCE
  896. materialize
  897. mz_introspection
  898. mz_dataflow_arrangement_sizes
  899. VIEW
  900. materialize
  901. mz_introspection
  902. mz_dataflow_channel_operators
  903. VIEW
  904. materialize
  905. mz_introspection
  906. mz_dataflow_channel_operators_per_worker
  907. VIEW
  908. materialize
  909. mz_introspection
  910. mz_dataflow_channels
  911. VIEW
  912. materialize
  913. mz_introspection
  914. mz_dataflow_channels_per_worker
  915. SOURCE
  916. materialize
  917. mz_introspection
  918. mz_dataflow_global_ids
  919. VIEW
  920. materialize
  921. mz_introspection
  922. mz_dataflow_operator_dataflows
  923. VIEW
  924. materialize
  925. mz_introspection
  926. mz_dataflow_operator_dataflows_per_worker
  927. VIEW
  928. materialize
  929. mz_introspection
  930. mz_dataflow_operator_parents
  931. VIEW
  932. materialize
  933. mz_introspection
  934. mz_dataflow_operator_parents_per_worker
  935. VIEW
  936. materialize
  937. mz_introspection
  938. mz_dataflow_operator_reachability
  939. VIEW
  940. materialize
  941. mz_introspection
  942. mz_dataflow_operator_reachability_per_worker
  943. VIEW
  944. materialize
  945. mz_introspection
  946. mz_dataflow_operator_reachability_raw
  947. SOURCE
  948. materialize
  949. mz_introspection
  950. mz_dataflow_operators
  951. VIEW
  952. materialize
  953. mz_introspection
  954. mz_dataflow_operators_per_worker
  955. SOURCE
  956. materialize
  957. mz_introspection
  958. mz_dataflow_shutdown_durations_histogram
  959. VIEW
  960. materialize
  961. mz_introspection
  962. mz_dataflow_shutdown_durations_histogram_per_worker
  963. VIEW
  964. materialize
  965. mz_introspection
  966. mz_dataflow_shutdown_durations_histogram_raw
  967. SOURCE
  968. materialize
  969. mz_introspection
  970. mz_dataflows
  971. VIEW
  972. materialize
  973. mz_introspection
  974. mz_dataflows_per_worker
  975. VIEW
  976. materialize
  977. mz_introspection
  978. mz_expected_group_size_advice
  979. VIEW
  980. materialize
  981. mz_introspection
  982. mz_lir_mapping
  983. VIEW
  984. materialize
  985. mz_introspection
  986. mz_mappable_objects
  987. VIEW
  988. materialize
  989. mz_introspection
  990. mz_message_batch_counts_received_raw
  991. SOURCE
  992. materialize
  993. mz_introspection
  994. mz_message_batch_counts_sent_raw
  995. SOURCE
  996. materialize
  997. mz_introspection
  998. mz_message_counts
  999. VIEW
  1000. materialize
  1001. mz_introspection
  1002. mz_message_counts_per_worker
  1003. VIEW
  1004. materialize
  1005. mz_introspection
  1006. mz_message_counts_received_raw
  1007. SOURCE
  1008. materialize
  1009. mz_introspection
  1010. mz_message_counts_sent_raw
  1011. SOURCE
  1012. materialize
  1013. mz_introspection
  1014. mz_peek_durations_histogram
  1015. VIEW
  1016. materialize
  1017. mz_introspection
  1018. mz_peek_durations_histogram_per_worker
  1019. VIEW
  1020. materialize
  1021. mz_introspection
  1022. mz_peek_durations_histogram_raw
  1023. SOURCE
  1024. materialize
  1025. mz_introspection
  1026. mz_records_per_dataflow
  1027. VIEW
  1028. materialize
  1029. mz_introspection
  1030. mz_records_per_dataflow_operator
  1031. VIEW
  1032. materialize
  1033. mz_introspection
  1034. mz_records_per_dataflow_operator_per_worker
  1035. VIEW
  1036. materialize
  1037. mz_introspection
  1038. mz_records_per_dataflow_per_worker
  1039. VIEW
  1040. materialize
  1041. mz_introspection
  1042. mz_scheduling_elapsed
  1043. VIEW
  1044. materialize
  1045. mz_introspection
  1046. mz_scheduling_elapsed_per_worker
  1047. VIEW
  1048. materialize
  1049. mz_introspection
  1050. mz_scheduling_elapsed_raw
  1051. SOURCE
  1052. materialize
  1053. mz_introspection
  1054. mz_scheduling_parks_histogram
  1055. VIEW
  1056. materialize
  1057. mz_introspection
  1058. mz_scheduling_parks_histogram_per_worker
  1059. VIEW
  1060. materialize
  1061. mz_introspection
  1062. mz_scheduling_parks_histogram_raw
  1063. SOURCE
  1064. materialize
  1065. pg_catalog
  1066. pg_aggregate
  1067. VIEW
  1068. materialize
  1069. pg_catalog
  1070. pg_am
  1071. VIEW
  1072. materialize
  1073. pg_catalog
  1074. pg_attrdef
  1075. VIEW
  1076. materialize
  1077. pg_catalog
  1078. pg_attribute
  1079. VIEW
  1080. materialize
  1081. pg_catalog
  1082. pg_auth_members
  1083. VIEW
  1084. materialize
  1085. pg_catalog
  1086. pg_authid
  1087. VIEW
  1088. materialize
  1089. pg_catalog
  1090. pg_class
  1091. VIEW
  1092. materialize
  1093. pg_catalog
  1094. pg_collation
  1095. VIEW
  1096. materialize
  1097. pg_catalog
  1098. pg_constraint
  1099. VIEW
  1100. materialize
  1101. pg_catalog
  1102. pg_database
  1103. VIEW
  1104. materialize
  1105. pg_catalog
  1106. pg_depend
  1107. VIEW
  1108. materialize
  1109. pg_catalog
  1110. pg_description
  1111. VIEW
  1112. materialize
  1113. pg_catalog
  1114. pg_enum
  1115. VIEW
  1116. materialize
  1117. pg_catalog
  1118. pg_event_trigger
  1119. VIEW
  1120. materialize
  1121. pg_catalog
  1122. pg_extension
  1123. VIEW
  1124. materialize
  1125. pg_catalog
  1126. pg_index
  1127. VIEW
  1128. materialize
  1129. pg_catalog
  1130. pg_indexes
  1131. VIEW
  1132. materialize
  1133. pg_catalog
  1134. pg_inherits
  1135. VIEW
  1136. materialize
  1137. pg_catalog
  1138. pg_language
  1139. VIEW
  1140. materialize
  1141. pg_catalog
  1142. pg_locks
  1143. VIEW
  1144. materialize
  1145. pg_catalog
  1146. pg_matviews
  1147. VIEW
  1148. materialize
  1149. pg_catalog
  1150. pg_namespace
  1151. VIEW
  1152. materialize
  1153. pg_catalog
  1154. pg_operator
  1155. VIEW
  1156. materialize
  1157. pg_catalog
  1158. pg_policy
  1159. VIEW
  1160. materialize
  1161. pg_catalog
  1162. pg_proc
  1163. VIEW
  1164. materialize
  1165. pg_catalog
  1166. pg_range
  1167. VIEW
  1168. materialize
  1169. pg_catalog
  1170. pg_rewrite
  1171. VIEW
  1172. materialize
  1173. pg_catalog
  1174. pg_roles
  1175. VIEW
  1176. materialize
  1177. pg_catalog
  1178. pg_settings
  1179. VIEW
  1180. materialize
  1181. pg_catalog
  1182. pg_shdescription
  1183. VIEW
  1184. materialize
  1185. pg_catalog
  1186. pg_tables
  1187. VIEW
  1188. materialize
  1189. pg_catalog
  1190. pg_tablespace
  1191. VIEW
  1192. materialize
  1193. pg_catalog
  1194. pg_timezone_abbrevs
  1195. VIEW
  1196. materialize
  1197. pg_catalog
  1198. pg_timezone_names
  1199. VIEW
  1200. materialize
  1201. pg_catalog
  1202. pg_trigger
  1203. VIEW
  1204. materialize
  1205. pg_catalog
  1206. pg_type
  1207. VIEW
  1208. materialize
  1209. pg_catalog
  1210. pg_user
  1211. VIEW
  1212. materialize
  1213. pg_catalog
  1214. pg_views
  1215. VIEW
  1216. materialize
  1217. public
  1218. mv
  1219. MATERIALIZED VIEW
  1220. materialize
  1221. public
  1222. s
  1223. SOURCE
  1224. materialize
  1225. public
  1226. s_progress
  1227. SOURCE
  1228. materialize
  1229. public
  1230. t
  1231. BASE TABLE
  1232. materialize
  1233. public
  1234. v
  1235. VIEW