Skip to content
Snippets Groups Projects
Commit 0467bf22 authored by Marijn Haverbeke's avatar Marijn Haverbeke
Browse files

[sql-hint] Add a test for the fix in 172a7816

Issue #3274
parent 172a7816
No related branches found
No related tags found
No related merge requests found
......@@ -168,6 +168,16 @@
to: Pos(0, 9)
});
test("alias_complete_with_displayText", {
value: "SELECT t. FROM mytable t",
cursor: Pos(0, 9),
tables: displayTextTables,
list: [{text: "t.id", displayText: "id | Unique ID"},
{text: "t.name", displayText: "name | The name"}],
from: Pos(0, 7),
to: Pos(0, 9)
})
function deepCompare(a, b) {
if (!a || typeof a != "object")
return a === b;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment