Skip to content

Commit

Permalink
Fix entry id query
Browse files Browse the repository at this point in the history
Field names shouldn't contain any special characters; otherwise, the parser will throw an exception.
  • Loading branch information
LoayGhreeb committed Oct 26, 2024
1 parent b0ca86f commit 53cd50c
Show file tree
Hide file tree
Showing 2 changed files with 143 additions and 143 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
public enum PostgreConstants {
BIB_FIELDS_SCHEME("bib_fields"),
SPLIT_TABLE_SUFFIX("_split_values"),
ENTRY_ID("entry_id"),
ENTRY_ID("entryid"),
FIELD_NAME("field_name"),
FIELD_VALUE_LITERAL("field_value_literal"), // contains the value as-is
FIELD_VALUE_TRANSFORMED("field_value_transformed"); // contains the value transformed for better querying
Expand Down
Loading

0 comments on commit 53cd50c

Please sign in to comment.