This is an automated email from the ASF dual-hosted git repository.
mblow pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/asterixdb.git
The following commit(s) were added to refs/heads/master by this push:
new 51b4f16287 [NO ISSUE][*DB][STO] Return null from readAllBytes() in
no-op client
51b4f16287 is described below
commit 51b4f1628763a24c55fe0ba4c91cd65b57b33533
Author: Michael Blow <[email protected]>
AuthorDate: Sat Jun 28 13:11:55 2025 -0400
[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 <[email protected]>
Reviewed-by: Murtadha Hubail <[email protected]>
Integration-Tests: Jenkins <[email protected]>
Tested-by: Michael Blow <[email protected]>
Contrib: Michael Blow <[email protected]>
---
.../src/main/java/org/apache/asterix/cloud/clients/NoopCloudClient.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 8f37191b44..45dabeb221 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 @@ public class NoopCloudClient implements ICloudClient {
@Override
public byte[] readAllBytes(String bucket, String path) throws
HyracksDataException {
- return new byte[0];
+ return null;
}
@Override