Skip to content

Commit

Permalink
GIS: Store PolyDictionary as JSON instead of String, so that we can p…
Browse files Browse the repository at this point in the history
…arse it on the frontend
  • Loading branch information
murermader committed Jan 2, 2025
1 parent 1f85b7a commit 3da583f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ private ImmutableList<ImmutableList<RexLiteral>> getNodePropertyValues( Immutabl
ImmutableList.Builder<RexLiteral> row = ImmutableList.builder();
row.add( id );
row.add( getStringLiteral( entry.getKey().value, LABEL_TYPE ) );
row.add( getStringLiteral( entry.getValue().toString(), VALUE_TYPE ) );
row.add( getStringLiteral( entry.getValue().toJson(), VALUE_TYPE ) );
rows.add( row.build() );
}
}
Expand Down

0 comments on commit 3da583f

Please sign in to comment.