commit | dbdda9f3fa164748f581439a73226f696cdc3ecb | [log] [tgz] |
---|---|---|
author | Michael Blow <michael.blow@couchbase.com> | Sat Jun 28 13:11:55 2025 -0400 |
committer | Michael Blow <michael.blow@couchbase.com> | Thu Jul 10 12:43:15 2025 -0400 |
tree | 797c0fb2015cd5c122b01109e6ba8e3016752d75 | |
parent | 73c0276930098db475c3f7e0fdf8fb54fae51de8 [diff] |
[NO ISSUE][*DB][STO] Return null from readAllBytes() in no-op client Ext-ref: MB-65877 Change-Id: I9642b1d32beb4ab93b0914a20c38ad1476abbab0 Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/20006 Reviewed-by: Michael Blow <mblow@apache.org> Reviewed-by: Murtadha Hubail <mhubail@apache.org> Integration-Tests: Jenkins <jenkins@fulliautomatix.ics.uci.edu> Tested-by: Michael Blow <mblow@apache.org> Contrib: Michael Blow <mblow@apache.org>
diff --git a/asterixdb/asterix-cloud/src/main/java/org/apache/asterix/cloud/clients/NoopCloudClient.java b/asterixdb/asterix-cloud/src/main/java/org/apache/asterix/cloud/clients/NoopCloudClient.java index 8f37191..45dabeb 100644 --- a/asterixdb/asterix-cloud/src/main/java/org/apache/asterix/cloud/clients/NoopCloudClient.java +++ b/asterixdb/asterix-cloud/src/main/java/org/apache/asterix/cloud/clients/NoopCloudClient.java
@@ -76,7 +76,7 @@ @Override public byte[] readAllBytes(String bucket, String path) throws HyracksDataException { - return new byte[0]; + return null; } @Override