Skip to content

Commit

Permalink
Added a comment about upcoming support for inferTime
Browse files Browse the repository at this point in the history
  • Loading branch information
lancegliser committed Sep 26, 2024
1 parent f3decbe commit 9c3ac4b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/features/sources/Base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,12 @@ export abstract class InferFeatureAttributesBase {
};
}

/**
* Support for time only attributes is a near term goal. Parts of the work are under way:
* Product Backlog Item 21293: Full support for time(-only) types
*
* Before full implementation, they must be treated as unrelated strings.
*/
protected async inferTime(featureName: string): Promise<FeatureAttributes> {
return this.inferString(featureName);
}
Expand Down

0 comments on commit 9c3ac4b

Please sign in to comment.