Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
clausnagel committed Jan 14, 2025
1 parent 0d21de1 commit a9d7111
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public class Index {
public static final Index GEOMETRY_DATA_GEOMETRY = Index.spatial("geometry_data_spx", Table.GEOMETRY_DATA, "geometry");
public static final Index IMPLICIT_GEOMETRY_OBJECTID = Index.normal("implicit_geometry_objectid_inx", Table.IMPLICIT_GEOMETRY, "objectid");
public static final Index PROPERTY_NAME = Index.normal("property_name_inx", Table.PROPERTY, "name");
public static final Index PROPERTY_NAMESPACE = Index.normal("property_namespace_inx", Table.PROPERTY, "namespace");
public static final Index PROPERTY_VAL_TIMESTAMP = Index.normal("property_val_date_inx", Table.PROPERTY, "val_timestamp");
public static final Index PROPERTY_VAL_DOUBLE = Index.normal("property_val_double_inx", Table.PROPERTY, "val_double");
public static final Index PROPERTY_VAL_INT = Index.normal("property_val_int_inx", Table.PROPERTY, "val_int");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@

public class IndexHelper {
public static final Set<Index> DEFAULT_INDEXES = new LinkedHashSet<>(List.of(
Index.FEATURE_OBJECTID,
Index.FEATURE_IDENTIFIER,
Index.FEATURE_ENVELOPE,
Index.FEATURE_CREATION_DATE,
Index.FEATURE_VALID_FROM,
Index.FEATURE_VALID_TO,
Index.GEOMETRY_DATA_GEOMETRY,
Index.PROPERTY_NAME,
Index.PROPERTY_NAMESPACE,
Index.PROPERTY_VAL_TIMESTAMP,
Index.PROPERTY_VAL_DOUBLE,
Index.PROPERTY_VAL_INT,
Expand Down

0 comments on commit a9d7111

Please sign in to comment.