Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions influxdb_client_3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,11 @@ def write(self, record=None, database=None, **kwargs):
"""
Write data to InfluxDB.

Warning: When you write with only one Point or one Dict, and If that Point or Dict
contains fields with None value, those fields will not be written to InfluxDB.
If such fields are later queried explicitly, for example,
"SELECT field_with_value, field_with_null_value FROM my_table" an error will be thrown.

:param record: The data point(s) to write.
:type record: object or list of objects
:param database: The database to write to. If not provided, uses the database provided during initialization.
Expand Down
Loading