extend casing data :return:
(self, words)
| 181 | self.all_completions.update(schemata) |
| 182 | |
| 183 | def extend_casing(self, words): |
| 184 | """extend casing data |
| 185 | |
| 186 | :return: |
| 187 | """ |
| 188 | # casing should be a dict {lowercasename:PreferredCasingName} |
| 189 | self.casing = {word.lower(): word for word in words} |
| 190 | |
| 191 | def extend_relations(self, data, kind): |
| 192 | """extend metadata for tables or views. |
no outgoing calls
no test coverage detected