You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by GitBox <gi...@apache.org> on 2021/01/20 15:26:06 UTC

[GitHub] [nifi] MikeThomsen edited a comment on pull request #4771: NIFI-8156 Fixed byte handling bug in cassandra.

MikeThomsen edited a comment on pull request #4771:
URL: https://github.com/apache/nifi/pull/4771#issuecomment-763707997


   @joewitt here are test instructions:
   
   ```
   docker run -p 7000:7000 -p 9042:9042 --name cassandra -d cassandra:3
   ```
   
   ```
   CREATE KEYSPACE byte_test WITH replication = {'class':'SimpleStrategy', 'replication_factor' : 3};
   use byte_test;
   create table binary_test (id text, data blob, primary key(id));
   ```
   
   [Cassandra_Byte_Array_Test.xml.txt](https://github.com/apache/nifi/files/5843448/Cassandra_Byte_Array_Test.xml.txt)
   
   Once it's running, you can test with:
   
   ```
   select id, blobastext(data) from binary_test;
   ```


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org