fresh-borzoni opened a new issue, #137:
URL: https://github.com/apache/fluss-rust/issues/137

   ### Search before asking
   
   - [x] I searched in the 
[issues](https://github.com/apache/fluss-rust/issues) and found nothing similar.
   
   
   ### Motivation
   
     Python bindings only support batch operations (`write_arrow_batch`, 
`write_pandas`).
     No way to write individual records
   
   ### Solution
   
     ### Proposal
     Add `append(row)` method:
     ```python
     writer.append({'id': 1, 'name': 'Alice'})
     writer.append([2, 'Bob'])
   
     Implementation
   
     - Core API already exists: AppendWriter::append(GenericRow)
     - Convert Python dict/list → GenericRow
     - Use Datum::OwnedString (no memory leak)
   
   ### Anything else?
   
   _No response_
   
   ### Willingness to contribute
   
   - [x] I'm willing to submit a PR!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to