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)
| 123 | // Returns: |
| 124 | // - err: An error if the operation fails. |
| 125 | func (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 | // |
nothing calls this directly
no test coverage detected