summaryrefslogtreecommitdiffstats
path: root/tests/test_smart_completion_public_schema_only.py
diff options
context:
space:
mode:
authorIrina Truong <i.chernyavska@gmail.com>2019-01-02 16:15:59 -0800
committerGitHub <noreply@github.com>2019-01-02 16:15:59 -0800
commit0cae7e20361dbee41fb8f79d7ee9c763d17d51e1 (patch)
tree2f5c4054233777bc420d2b9f24dc769f1377ac10 /tests/test_smart_completion_public_schema_only.py
parent2a1de91292e1996f0fff0407ca147c5894be8042 (diff)
Remove some functions completions (#982)
Remove extension and private functions from completer.
Diffstat (limited to 'tests/test_smart_completion_public_schema_only.py')
-rw-r--r--tests/test_smart_completion_public_schema_only.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_smart_completion_public_schema_only.py b/tests/test_smart_completion_public_schema_only.py
index 3ccac9e5..0b8fbcc4 100644
--- a/tests/test_smart_completion_public_schema_only.py
+++ b/tests/test_smart_completion_public_schema_only.py
@@ -17,12 +17,12 @@ metadata = {
'functions': ['function'],
},
'functions': [
- ['custom_fun', [], [], [], '', False, False, False],
- ['_custom_fun', [], [], [], '', False, False, False],
- ['custom_func1', [], [], [], '', False, False, False],
- ['custom_func2', [], [], [], '', False, False, False],
+ ['custom_fun', [], [], [], '', False, False, False, False],
+ ['_custom_fun', [], [], [], '', False, False, False, False],
+ ['custom_func1', [], [], [], '', False, False, False, False],
+ ['custom_func2', [], [], [], '', False, False, False, False],
['set_returning_func', ['x', 'y'], ['integer', 'integer'],
- ['b', 'b'], '', False, False, True]],
+ ['b', 'b'], '', False, False, True, False]],
'datatypes': ['custom_type1', 'custom_type2'],
'foreignkeys': [
('public', 'users', 'id', 'public', 'users', 'parentid'),