File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed
Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ def get_index_fields(self) -> list[SearchableField]:
4949 vector_search_profile_name = self .vector_search_profile_name ,
5050 ),
5151 ComplexField (
52- name = "Queries " ,
52+ name = "Decomposition " ,
5353 collection = True ,
5454 fields = [
5555 SearchableField (
@@ -71,11 +71,11 @@ def get_index_fields(self) -> list[SearchableField]:
7171 collection = True ,
7272 fields = [
7373 SearchableField (
74- name = "ColumnName " ,
74+ name = "Name " ,
7575 type = SearchFieldDataType .String ,
7676 ),
7777 SearchableField (
78- name = "ColumnDefinition " ,
78+ name = "Definition " ,
7979 type = SearchFieldDataType .String ,
8080 ),
8181 SearchableField (
Original file line number Diff line number Diff line change @@ -70,6 +70,14 @@ def get_index_fields(self) -> list[SearchableField]:
7070 type = SearchFieldDataType .String ,
7171 analyzer_name = "keyword" ,
7272 ),
73+ SearchableField (
74+ name = "Database" ,
75+ type = SearchFieldDataType .String ,
76+ ),
77+ SearchableField (
78+ name = "Warehouse" ,
79+ type = SearchFieldDataType .String ,
80+ ),
7381 SearchableField (
7482 name = "Definition" ,
7583 type = SearchFieldDataType .String ,
@@ -129,11 +137,7 @@ def get_index_fields(self) -> list[SearchableField]:
129137 collection = True ,
130138 fields = [
131139 SearchableField (
132- name = "ImmediateRelationshipName" ,
133- type = SearchFieldDataType .String ,
134- ),
135- SearchableField (
136- name = "ImmediateRelationshipEntity" ,
140+ name = "Name" ,
137141 type = SearchFieldDataType .String ,
138142 ),
139143 ComplexField (
You can’t perform that action at this time.
0 commit comments