File tree Expand file tree Collapse file tree
x-pack/platform/plugins/shared/lens/public/datasources/form_based Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -111,19 +111,6 @@ export function generateEsqlQuery(
111111 }
112112 }
113113
114- // Also check esAggEntries for unsupported features (in case columns differ)
115- for ( const [ , col ] of esAggEntries ) {
116- if ( col . operationType === 'formula' ) {
117- return getEsqlQueryFailedResult ( 'formula_not_supported' ) ;
118- }
119- if ( col . timeShift ) {
120- return getEsqlQueryFailedResult ( 'time_shift_not_supported' ) ;
121- }
122- if ( 'sourceField' in col && indexPattern . getFieldByName ( col . sourceField ) ?. runtime ) {
123- return getEsqlQueryFailedResult ( 'runtime_field_not_supported' ) ;
124- }
125- }
126-
127114 // indexPattern.title is the actual ES pattern
128115 // Build query parts as strings, then combine with esql() for proper parameterization
129116 // ES|QL composer docs: src/platform/packages/shared/kbn-esql-language/src/composer/README.md
You can’t perform that action at this time.
0 commit comments