Minor: add searchPageHierarchy method (#18578)

This commit is contained in:
Sriharsha Chintalapani 2024-11-11 09:04:50 -08:00 committed by GitHub
parent 1c05415321
commit 5589b9665e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -201,6 +201,12 @@ public interface SearchClient {
Response.Status.NOT_IMPLEMENTED, NOT_IMPLEMENTED_ERROR_TYPE, NOT_IMPLEMENTED_METHOD);
}
@SuppressWarnings("unused")
default ResultList searchPageHierarchy(String query, String pageType, int offset, int limit) {
throw new CustomExceptionMessage(
Response.Status.NOT_IMPLEMENTED, NOT_IMPLEMENTED_ERROR_TYPE, NOT_IMPLEMENTED_METHOD);
}
Map<String, Object> searchLineageInternal(
String fqn,
int upstreamDepth,