Skip to content

Commit 8458b61

Browse files
committed
Update Tables README.
1 parent ca4512a commit 8458b61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deltacat/docs/table/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ print(final_table)
167167
# 3 Charlie 35 Chicago
168168
```
169169

170-
Also, it's worth noting that `dc.write` and `dc.read` are simply aliases for `dc.write_to_table` and `dc.read_table`. Their behavior is identical, and the choice of which to use is a matter of preference (i.e., brevity vs. clarity).
170+
Note that `dc.write` and `dc.read` are just aliases for `dc.write_to_table` and `dc.read_table`. Their behavior is identical, and the choice of which to use is a matter of personal preference.
171171

172172
## Table Properties
173173
Table properties are used to configure the table's read/write behavior and optimization level. Custom table properties can be specified during table writes via `dc.write`, when the table is created via `dc.create_table`, and when the table is updated via `dc.alter_table`. Any properties that are not explicitly set at table creation time will inherit default values. Table properties can be read via a table version's `read_table_property` method and updated via `dc.alter_table`.
@@ -214,7 +214,7 @@ Controls how schema changes are handled when writing to a table (see [DeltaCAT S
214214
**DEFAULT_SCHEMA_CONSISTENCY_TYPE (default: COERCE)**
215215
Controls the default schema consistency type for new fields added to the table (see [DeltaCAT Schemas](../schema/README.md)).
216216

217-
**SUPPORTED_READER_TYPES (default: [PANDAS, POLARS, PYARROW, DAFT, RAY_DATASET])**
217+
**SUPPORTED_READER_TYPES (default: [PANDAS, POLARS, PYARROW, NUMPY, DAFT, RAY_DATASET])**
218218
Supported dataset types that should be able to read from the table. Writes that would break one or more of these readers will be rejected.
219219

220220
## Table Read Optimization Levels

0 commit comments

Comments
 (0)