You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a maximum length, MAX_STRING (defined in config.h file, currently at value of 1024), restriction on all string values. The string data type should not put any constraints on the length of the values.
This task is to completely remove the MAX_STRING restriction from the string data type. In order to do that, the chunked encoding of HTTP response from bandicoot could cut a tuple in the middle of a string attribute.
The text was updated successfully, but these errors were encountered:
the MAX_BLOCK is unfortunately coming as a requirement from other piece of the code 'sys_proxy'. The data sent by the processor to the main process must be at most of the MAX_BLOCK size. I did not manage to come up with a simpler solution without rewriting the sys_proxy part.
I removed the trailing spaces.
I added one more FIXME into the bandicoot.c, there seems to be a memory leak on the tuples of the return if a client closes the connection before all the tuples were sent to the client. This now is applicable to the 'PBuf' instance as well.
There is one more use case of the MAX_STRING which I did not get rid of. The string literals in the language must be at most MAX_STRING characters long.
There is a maximum length, MAX_STRING (defined in config.h file, currently at value of 1024), restriction on all string values. The string data type should not put any constraints on the length of the values.
This task is to completely remove the MAX_STRING restriction from the string data type. In order to do that, the chunked encoding of HTTP response from bandicoot could cut a tuple in the middle of a string attribute.
The text was updated successfully, but these errors were encountered: