You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geode.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2017/03/02 22:52:45 UTC

[jira] [Commented] (GEODE-2578) Query string limited to 64 KiB

    [ https://issues.apache.org/jira/browse/GEODE-2578?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15893191#comment-15893191 ] 

ASF GitHub Bot commented on GEODE-2578:
---------------------------------------

GitHub user PivotalSarge opened a pull request:

    https://github.com/apache/geode-native/pull/44

    GEODE-2578: Remove 64 KiB limit on query strings.

    - Remove artificial cap of 65535 for query string
      length by using 32 bits for the length of query
      strings in DataOutput::writeFullUTF().
    - Rename parameter to TcrMessage::writeStringPart()
      whose name is misleading due to copy-and-paste.
    - Add three unit tests for query-related messages:
      * testConstructorEXECUTECQ_MSG_TYPE
      * testConstructorWithGinormousQueryEXECUTECQ_MSG_TYPE
      * testConstructorEXECUTECQ_WITH_IR_MSG_TYPE

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/PivotalSarge/geode-native feature/GEODE-2578

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/geode-native/pull/44.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #44
    
----
commit 542c6349c7194558f463732a96a0e32a216a17a3
Author: Sarge <md...@pivotal.io>
Date:   2017-03-02T22:45:37Z

    GEODE-2578: Remove 64 KiB limit on query strings.
    
    - Remove artificial cap of 65535 for query string
      length by using 32 bits for the length of query
      strings in DataOutput::writeFullUTF().
    - Rename parameter to TcrMessage::writeStringPart()
      whose name is misleading due to copy-and-paste.
    - Add three unit tests for query-related messages:
      * testConstructorEXECUTECQ_MSG_TYPE
      * testConstructorWithGinormousQueryEXECUTECQ_MSG_TYPE
      * testConstructorEXECUTECQ_WITH_IR_MSG_TYPE

----


> Query string limited to 64 KiB
> ------------------------------
>
>                 Key: GEODE-2578
>                 URL: https://issues.apache.org/jira/browse/GEODE-2578
>             Project: Geode
>          Issue Type: Bug
>          Components: native client
>            Reporter: Michael Dodge
>            Assignee: Michael Dodge
>
> The serialization of query strings uses a 16-bit unsigned integer to represent the length of the query string. Query strings with more than 65535 characters are silently truncated. Use of a 32-bit unsigned integer to represent the length would greatly increase the size of query strings that may be used.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)