MCPcopy Index your code
hub / github.com/pgadmin-org/pgadmin4 / get_all_keywords

Function get_all_keywords

tools/sql_keywords.py:84–90  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

82
83
84def get_all_keywords():
85 final_keywords = set()
86
87 final_keywords.update(get_keywords_pg_code())
88 final_keywords.update(get_keywords_pg_docs())
89
90 return len(final_keywords), " ".join(sorted(list(final_keywords))).strip()
91
92
93if __name__ == '__main__':

Callers 1

sql_keywords.pyFile · 0.85

Calls 5

setFunction · 0.85
get_keywords_pg_codeFunction · 0.85
get_keywords_pg_docsFunction · 0.85
joinMethod · 0.80
updateMethod · 0.45

Tested by

no test coverage detected