(completer)
| 697 | |
| 698 | @parametrize("completer", completers()) |
| 699 | def test_learn_keywords(completer): |
| 700 | history = "CREATE VIEW v AS SELECT 1" |
| 701 | completer.extend_query_history(history) |
| 702 | |
| 703 | # Now that we've used `VIEW` once, it should be suggested ahead of other |
| 704 | # keywords starting with v. |
| 705 | text = "create v" |
| 706 | completions = get_result(completer, text) |
| 707 | assert completions[0].text == "VIEW" |
| 708 | |
| 709 | |
| 710 | @parametrize("completer", completers(casing=False, aliasing=False)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…