Commit 78b61aa3173880776392516f5b0a9a6481478853
1 parent
2c530b05
Exists in
master
Add AMDA access_url and table name in Queries class, useful for debug.
Showing
1 changed file
with
3 additions
and
0 deletions
Show diff stats
src/main/java/eu/omp/irap/vespa/epntapclient/utils/Queries.java
... | ... | @@ -24,6 +24,9 @@ import java.util.StringJoiner; |
24 | 24 | */ |
25 | 25 | public final class Queries { |
26 | 26 | |
27 | + // AMDA access_url: http://cdpp-epntap.cesr.fr/__system__/tap/run/tap | |
28 | + // AMDA table name: amdadb.epn_core | |
29 | + | |
27 | 30 | /** Query to get all EPN-TAP services. */ |
28 | 31 | public static final String GET_EPN_TAP_SERVICES = "SELECT short_name, " |
29 | 32 | + "res_title AS schema_title, table_name, schema_name, ivoid, access_url " | ... | ... |