Skip to content

Commit c90f641

Browse files
committed
make title consistent
1 parent c2ac8c4 commit c90f641

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/introduction/read_and_write.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ You will need to provide a :py:class:`pyarrow.Schema` for the dataset in this ca
5050
:py:meth:`lance.write_dataset` supports writing :py:class:`pyarrow.Table`, :py:class:`pandas.DataFrame`,
5151
:py:class:`pyarrow.dataset.Dataset`, and ``Iterator[pyarrow.RecordBatch]``.
5252

53-
Adding data to an existing dataset
54-
----------------------------------
53+
Adding Rows
54+
-----------
5555

5656
To insert data into your dataset, you can use either :py:meth:`LanceDataset.insert <lance.LanceDataset.insert>`
5757
or :py:meth:`~lance.write_dataset` with ``mode=append``.
@@ -161,7 +161,7 @@ more efficient to use the merge insert operation described below.
161161
dataset.update({"age": new_age}, where=f"name='{name}'")
162162
163163
Merge Insert
164-
~~~~~~~~~~~~
164+
------------
165165

166166
Lance supports a merge insert operation. This can be used to add new data in bulk
167167
while also (potentially) matching against existing data. This operation can be used

0 commit comments

Comments
 (0)