Field and region names that include hyphens (-) or dots (.) can lead to syntax errors or unexpected behavior when writing queries in GemFire OQL.
Hyphens (-) in field names are treated by the query parser as subtraction operators, not part of the field name.
Dots (.) in region names are interpreted as object field or method access, not as part of the region path.
Use Java-friendly field names like fieldName or field_name to avoid quoting issues.
Avoid using dots (.) in region names to prevent confusion with field access syntax.
Preferred alternatives:
/field_name