Skip to content

Commit

Permalink
add lastOpenAt in LIGHT_QUERY_PROJECTION (#2957)
Browse files Browse the repository at this point in the history
add lastOpenAt in LIGHT_QUERY_PROJECTION
  • Loading branch information
YannanGao-gs authored Jul 12, 2024
1 parent 98c1a9e commit 94a1a95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class QueryStoreManager
// so that it records the dataSpace it is created from
private static final String QUERY_PROFILE_PATH = "meta::pure::profiles::query";
private static final String QUERY_PROFILE_TAG_DATA_SPACE = "dataSpace";
private static final List<String> LIGHT_QUERY_PROJECTION = Arrays.asList("id", "name", "versionId", "originalVersionId", "groupId", "artifactId", "owner", "createdAt", "lastUpdatedAt");
private static final List<String> LIGHT_QUERY_PROJECTION = Arrays.asList("id", "name", "versionId", "originalVersionId", "groupId", "artifactId", "owner", "createdAt", "lastUpdatedAt", "lastOpenAt");
private static final int GET_QUERIES_LIMIT = 50;
private final MongoClient mongoClient;

Expand Down

0 comments on commit 94a1a95

Please sign in to comment.