MCPcopy Create free account
hub / github.com/apache/iotdb-client-go / Insert

Method Insert

client/tablesession.go:125–127  ·  view source on GitHub ↗

Insert inserts a Tablet into the IoTDB. Parameters: - tablet: A pointer to a Tablet containing the data to be inserted. Returns: - err: An error if the operation fails.

(tablet *Tablet)

Source from the content-addressed store, hash-verified

123// Returns:
124// - err: An error if the operation fails.
125func (s *TableSession) Insert(tablet *Tablet) error {
126 return s.session.insertRelationalTablet(tablet)
127}
128
129// ExecuteNonQueryStatement executes a non-query SQL statement, such as a DDL or DML command.
130//

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected