Java: Remove unnecessary columns

This commit is contained in:
Koen Vlaswinkel
2023-09-22 16:11:30 +02:00
parent 7dc22e47d6
commit f4522edc95
4 changed files with 33 additions and 34 deletions

View File

@@ -23,5 +23,5 @@ where
usage = aUsage(endpoint) and
type = supportedType(endpoint) and
classification = usageClassification(usage)
select usage, apiName, supported.toString(), "supported", endpoint.jarContainer(),
endpoint.jarVersion(), type, "type", classification, "classification"
select usage, apiName, supported, endpoint.jarContainer(), endpoint.jarVersion(), type,
classification

View File

@@ -15,6 +15,5 @@ where
apiName = endpoint.getApiName() and
supported = isSupported(endpoint) and
type = supportedType(endpoint)
select endpoint, apiName, supported.toString(), "supported",
endpoint.getCompilationUnit().getParentContainer().getBaseName(), "library", type, "type",
"unknown", "classification"
select endpoint, apiName, supported,
endpoint.getCompilationUnit().getParentContainer().getBaseName(), type