Skip to content

Commit

Permalink
Merge pull request #482 from naoa/update-test
Browse files Browse the repository at this point in the history
Update test
  • Loading branch information
daijiro committed Feb 18, 2016
2 parents 4c9518d + 0ab4df7 commit 966fcc4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ load --table Users
{"_key": "Ken"}
]
[[0,0.0,0.0],3]
select Users --filter '_key @^ "T" && fuzzy_search(_key, "To", 1)' --output_columns '_key, _score' --match_escalation_threshold -1
select Users --filter '_key @^ "T" && fuzzy_search(_key, "To")' --output_columns '_key, _score' --match_escalation_threshold -1
[[0,0.0,0.0],[[[1],[["_key","ShortText"],["_score","Int32"]],["Tom",2]]]]
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ load --table Users
{"_key": "Ken"}
]

select Users --filter '_key @^ "T" && fuzzy_search(_key, "To", 1)' \
select Users --filter '_key @^ "T" && fuzzy_search(_key, "To")' \
--output_columns '_key, _score' \
--match_escalation_threshold -1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ load --table Users
{"_key": "Ken"}
]
[[0,0.0,0.0],3]
select Users --filter '_key @^ "T" || fuzzy_search(_key, "Ke", 1)' --output_columns '_key, _score' --match_escalation_threshold -1
select Users --filter '_key @^ "T" || fuzzy_search(_key, "Ke")' --output_columns '_key, _score' --match_escalation_threshold -1
[
[
0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ load --table Users
{"_key": "Ken"}
]

select Users --filter '_key @^ "T" || fuzzy_search(_key, "Ke", 1)' \
select Users --filter '_key @^ "T" || fuzzy_search(_key, "Ke")' \
--output_columns '_key, _score' \
--match_escalation_threshold -1

0 comments on commit 966fcc4

Please sign in to comment.