We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c36336a commit e3c2b07Copy full SHA for e3c2b07
2 files changed
CHANGELOG.md
@@ -9,6 +9,7 @@
9
### Bug Fixes
10
11
* Fix a bug where the `\llm` command on alternate invocations weren't detected correctly. (#211)
12
+* Do not escape upper table or column name. [(#185)](https://github.com/dbcli/litecli/issues/185)
13
14
### Internal
15
tests/test_smart_completion_public_schema_only.py
@@ -314,7 +314,7 @@ def test_auto_escaped_col_names(completer, complete_event):
314
result = list(completer.get_completions(Document(text=text, cursor_position=position), complete_event))
315
assert result == [
316
Completion(text="*", start_position=0),
317
- Completion(text="`ABC`", start_position=0),
+ Completion(text="ABC", start_position=0),
318
Completion(text="`insert`", start_position=0),
319
Completion(text="id", start_position=0),
320
] + list(map(Completion, completer.functions)) + [Completion(text="select", start_position=0)] + list(
@@ -329,7 +329,7 @@ def test_un_escaped_table_names(completer, complete_event):
329
assert result == list(
330
[
331
332
333
334
335
]
0 commit comments