Commit 5b96905e50873a23c41ae6b8b5dd4cd51673af8d
1 parent
76a922bc
Exists in
master
Add missing columns on the select query.
Showing
1 changed file
with
3 additions
and
2 deletions
Show diff stats
src/main/java/eu/omp/irap/vespa/epntapclient/service/Queries.java
... | ... | @@ -23,8 +23,9 @@ package eu.omp.irap.vespa.epntapclient.service; |
23 | 23 | */ |
24 | 24 | public final class Queries { |
25 | 25 | |
26 | - private static final String SELECT = "SELECT DISTINCT short_name, res_title, " | |
27 | - + "table_name, schema_name, ivoid, access_url "; | |
26 | + private static final String SELECT = "SELECT DISTINCT ivoid, access_url, res_title, " | |
27 | + + "short_name, table_name, content_type, res_description, creator_seq, content_level, " | |
28 | + + "reference_url, created, updated "; | |
28 | 29 | |
29 | 30 | private static final String FROM = "FROM rr.resource " |
30 | 31 | + "NATURAL JOIN rr.res_schema " | ... | ... |