This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new b0141c23ed [rest] Fix ambiguous mapping between listViewDetails and
listViews method (#5369)
b0141c23ed is described below
commit b0141c23ed6df64af1274dac84bc505f40838ba7
Author: wangkang <[email protected]>
AuthorDate: Fri Mar 28 15:21:27 2025 +0800
[rest] Fix ambiguous mapping between listViewDetails and listViews method
(#5369)
---
.../src/main/java/org/apache/paimon/open/api/RESTCatalogController.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/paimon-open-api/src/main/java/org/apache/paimon/open/api/RESTCatalogController.java
b/paimon-open-api/src/main/java/org/apache/paimon/open/api/RESTCatalogController.java
index 7aac6c7d97..4eb781fb08 100644
---
a/paimon-open-api/src/main/java/org/apache/paimon/open/api/RESTCatalogController.java
+++
b/paimon-open-api/src/main/java/org/apache/paimon/open/api/RESTCatalogController.java
@@ -757,7 +757,7 @@ public class RESTCatalogController {
responseCode = "500",
content = {@Content(schema = @Schema())})
})
- @GetMapping("/v1/{prefix}/databases/{database}/views")
+ @GetMapping("/v1/{prefix}/databases/{database}/view-details")
public ListViewDetailsResponse listViewDetails(
@PathVariable String prefix,
@PathVariable String database,