You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mkdocs/docs/api.md
+17-4Lines changed: 17 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -331,12 +331,25 @@ df = pa.Table.from_pylist(
331
331
table.append(df)
332
332
```
333
333
334
-
<!-- prettier-ignore-start -->
334
+
You can delete some of the data from the table by calling `tbl.delete()` with a desired `delete_filter`.
335
+
336
+
```python
337
+
tbl.delete(delete_filter="city == 'Paris'")
338
+
```
335
339
336
-
!!! example "Under development"
337
-
Writing using PyIceberg is still under development. Support for [partial overwrites](https://github.com/apache/iceberg-python/issues/268) and writing to [partitioned tables](https://github.com/apache/iceberg-python/issues/208) is planned and being worked on.
340
+
In the above example, any records where the city field value equals to `Paris` will be deleted.
0 commit comments