MapGuide RFC 5 - Enhanced Join Support

From OSGeo
Jump to navigation Jump to search
This page contains an change request (RFC) for MapGuide Open Source.  
More MapGuide RFCs can be found on the MapGuide RFCs page.

Status

  • Submission Date:
  • Last Modified Date:
  • Author:
  • RFC Status: (draft, proposed/pending vote, adopted or rejected)
  • Implementation Status: (pending, under development, completed)
  • Voting History:
  • Assigned PSC guide(s):

Overview

This proposal is for additional functionality to feature source joins to support chained joins, inner joins, and 1-to-many support.

Motivation

Current join support is limited to left outer join type only. This means that the result consists of all feature records from the primary source, even if the attributes are null. An inner join is defined as a join that results in only the records with matching secondary records.

A chained join is one in which the secondary source for a previously defined joined is used as a primary source for another join. This situation occurs when there is a need to join a secondary table to another secondary table, not just hang all secondary tables off the primary one. For example, “parcels” are joined to a secondary table of “owners”. But you want to join “owners” to “demographics” to do an analysis on age or income levels or family size.

It is possible that a secondary source within a join might have multiple records that match one primary record. This is a 1 : many case. Current functionality limits the joined records to only the first one, effectively enforcing a 1 : 1 case, such that the additional matching records are not available in the join result. By supporting the 1 : many case, all the joined secondary data is available for further analysis.

Funding/Resources

The effort to implement the proposed changes will be sponsored by Autodesk.

Proposed Changes

Chained joins will be specified using the name of a primary join as a prefix in the FeatureClassProperty attribute value using the following notation: <Primary_Join_name.Attribute_name>, where the dot symbol "." is used as a delimiter.

The notation for extended properties will use a delimiter to separate property names from their qualifiers in joins. The default symbol will be a vertical bar "|". This delimiter is a customizable string and is not limited to a single character.

Enhanced join support will make use of schema changes already incorporated into Bond for specifying the join type, 1 : many support, and the delimiter symbol for identifying extended attributes.

Implications

This section allows discussion of the repercussions of the change, such as whether there will be any breakage in backwards compatibility, if documentation will need to be updated, etc.

Test Plan

How the proposed change will be tested, if applicable. New unit tests should be detailed here???