Skip to content

Commit 3ef0072

Browse files
committed
Rename recipes to align with OLTP
1 parent 5593b95 commit 3ef0072

File tree

5 files changed

+6
-17
lines changed

5 files changed

+6
-17
lines changed

docs/docs/streamlit/tables/tables_edit.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sidebar_position: 3
33
---
44

5-
# Edit a table
5+
# Edit a Delta table
66

77
Use this recipe to read, edit, and write back data in a [Unity Catalog table](https://docs.databricks.com/aws/en/tables/) using the [Databricks SQL Connector](https://docs.databricks.com/en/dev-tools/python-sql-connector.html).
88

docs/docs/streamlit/tables/tables_read.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sidebar_position: 2
33
---
44

5-
# Read a table
5+
# Read a Delta table
66

77
This recipe reads a [Unity Catalog table](https://docs.databricks.com/aws/en/tables/) using the [Databricks SQL Connector](https://docs.databricks.com/en/dev-tools/python-sql-connector.html).
88

streamlit/view_groups.py

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
"icon": ":material/database:",
2020
},
2121
{
22-
"label": "Read a table",
22+
"label": "Read a Delta table",
2323
"help": "Query a Unity Catalog Delta table.",
2424
"page": "views/tables_read.py",
2525
"icon": ":material/table_view:",
2626
},
2727
{
28-
"label": "Edit a table",
28+
"label": "Edit a Delta table",
2929
"help": "Interactively edit a Delta table in the UI.",
3030
"page": "views/tables_edit.py",
3131
"icon": ":material/edit_document:",
@@ -151,15 +151,4 @@
151151
},
152152
],
153153
},
154-
{
155-
"title": "Unity Catalog",
156-
"views": [
157-
{
158-
"label": "Get Catalogs",
159-
"help": "Get meta data.",
160-
"page": "views/unity_catalog_get.py",
161-
"icon": ":material/lan:",
162-
},
163-
],
164-
},
165154
]

streamlit/views/tables_edit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
st.header(body="Tables", divider=True)
9-
st.subheader("Edit a table")
9+
st.subheader("Edit a Delta table")
1010
st.write(
1111
"Use this recipe to read, edit, and write back data stored in a small Unity Catalog table "
1212
"with [Databricks SQL Connector]"

streamlit/views/tables_read.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from databricks.sdk import WorkspaceClient
55

66
st.header(body="Tables", divider=True)
7-
st.subheader("Read a table")
7+
st.subheader("Read a Delta table")
88
st.write(
99
"This recipe reads a Unity Catalog table using the [Databricks SQL Connector](https://docs.databricks.com/en/dev-tools/python-sql-connector.html)."
1010
)

0 commit comments

Comments
 (0)