Commit 165132bf6f1f8db4c391c38ea5db09f5796ee5e4
1 parent
43c14591
Exists in
master
Add a query to get TAP services.
Showing
1 changed file
with
5 additions
and
0 deletions
Show diff stats
src/main/java/eu/omp/irap/vespa/epntapclient/utils/Queries.java
... | ... | @@ -44,4 +44,9 @@ public class Queries { |
44 | 44 | + "FROM (SELECT ivoid, accessurl, COUNT ( ivoid ) AS ntable FROM glots.services " |
45 | 45 | + "JOIN glots.tables USING ( ivoid ) GROUP BY ivoid) AS t " |
46 | 46 | + "JOIN rr.resource USING ( ivoid )"; |
47 | + | |
48 | + // TODO: récupérer les noms des services | |
49 | + /** Minimal query to get TAP all services of the registry, using GloTS. */ | |
50 | + public static final String GET_TAP_SERVICES = "SELECT ivoid, accessurl FROM glots.services"; | |
51 | + | |
47 | 52 | } | ... | ... |