Skip to content

Commit

Permalink
Fix typo in batch retrieval sql logic
Browse files Browse the repository at this point in the history
  • Loading branch information
zhilingc committed Oct 24, 2019
1 parent 81a6703 commit 437a192
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ UNION ALL
SELECT
event_timestamp,
{% for otherFeatureSet in featureSets %}
{% if otherFeatureSet.id == featureSet.id %}
{% if otherFeatureSet.id != featureSet.id %}
NULL as {{ otherFeatureSet.name }}_v{{ otherFeatureSet.version }}_feature_timestamp,
{% else %}
event_timestamp as {{ featureSet.name }}_v{{ featureSet.version }}_feature_timestamp,
Expand Down

0 comments on commit 437a192

Please sign in to comment.