Full transaction messages, implement QoS and fix memory issues#1
Open
vsalvador wants to merge 34 commits into
Open
Full transaction messages, implement QoS and fix memory issues#1vsalvador wants to merge 34 commits into
vsalvador wants to merge 34 commits into
Conversation
Updated README to show proper syntax
Lint the README file
Implemented a proper linked list reversal for ENDXACT_PAYLOAD.
Allows to do what README says. if not explicit topic is defined, the table name is used as topic.
…tion_cmds Merge branche to allow default tabname as topic
getMQTTServerInfo: len bytes are allocated, but then serverHost[len] = 0; is written. This causes an out-of-bounds write. It should be len + 1 bytes. Protection for strlen crash
Functions that don't know the size of the buffer they receive. In your code, this affects `columnValueToString` and, by extension, `rowToCSV`. am_open: set xact memory as PER_TRANSACTION and get memory pointer by name; similar to indexList; `my_register_callback` is called on every DML operation (insert/update/delete). Memory leak of net if MqttClient_Init fails
Readded fallback for MQTT topic to table name and added QoS setting.
Change example usage files Reflect changes to README
Simplify linked list algorithm
…t between threads.
added 13 commits
April 15, 2026 10:05
rtrim all char/varchar strings
… memory corruption
Added section on current implementation issues, including transaction isolation and datablade usage in replicated tables.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The reversal algorithm of ENDXACT_PAYLOAD linked structures is not properly implemented. This patch fix the reversal algorithm and allow to retrive all index operations inside a single transaction.