Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(bigtable/bttest): Error when applying a mutation with an empty row key #9512

Merged
merged 3 commits into from
May 24, 2024

Commits on May 13, 2024

  1. fix(bigtable/bttest): Error when applying a mutation with an empty ro…

    …w key
    
    Against a real version of Bigtable, an attempt to apply a mutation with
    an empty row key leads to the following error being produced
    
    ```
    unable to apply: rpc error: code = InvalidArgument desc = Row keys must be non-empty
    ```
    
    bttest does not conform to this behaviour. This commit:
    
    - adds error-handling when given a mutation with an empty row key, and
    - adds a regression test.
    adamroyjones committed May 13, 2024
    Configuration menu
    Copy the full SHA
    7737223 View commit details
    Browse the repository at this point in the history
  2. chore(bigtable/bttest): Remove a deprecated option from the example

    grpc.WithInsecure is deprecated. It was marked as such by v1.43.0 of the
    library. See here:
    
    grpc/grpc-go#4718
    
    This commit removes a reference to this from the example comment.
    adamroyjones committed May 13, 2024
    Configuration menu
    Copy the full SHA
    7b89cca View commit details
    Browse the repository at this point in the history

Commits on May 24, 2024

  1. Configuration menu
    Copy the full SHA
    a66fb7c View commit details
    Browse the repository at this point in the history