MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / table_url

Function table_url

misc/python/materialize/biglake.py:158–161  ·  view source on GitHub ↗
(prefix: str, namespace: str, table: str)

Source from the content-addressed store, hash-verified

156
157
158def table_url(prefix: str, namespace: str, table: str) -> str:
159 ns = urllib.parse.quote(namespace, safe="")
160 tbl = urllib.parse.quote(table, safe="")
161 return catalog_url(prefix, f"namespaces/{ns}/tables/{tbl}")
162
163
164def namespace_url(prefix: str, namespace: str) -> str:

Callers 3

_verify_sink_committedFunction · 0.90
workflow_defaultFunction · 0.90

Calls 1

catalog_urlFunction · 0.85

Tested by

no test coverage detected