Skip to content

Commit

Permalink
🔥 Remove support for removed functions
Browse files Browse the repository at this point in the history
  • Loading branch information
dej611 committed Jan 11, 2024
1 parent 9be03fe commit 07c05f6
Showing 1 changed file with 0 additions and 39 deletions.
39 changes: 0 additions & 39 deletions packages/kbn-monaco/src/esql/lib/ast/definitions/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -482,45 +482,6 @@ export const evalFunctionsDefinitions: FunctionDefinition[] = [
},
],
},
{
name: 'is_finite',
description: i18n.translate('monaco.esql.definitions.isFiniteDoc', {
defaultMessage: 'Returns a boolean that indicates whether its input is a finite number.',
}),
signatures: [
{
params: [{ name: 'field', type: 'number' }],
returnType: 'boolean',
examples: ['from index | eval s = is_finite(field/0)'],
},
],
},
{
name: 'is_infinite',
description: i18n.translate('monaco.esql.definitions.isInfiniteDoc', {
defaultMessage: 'Returns a boolean that indicates whether its input is infinite.',
}),
signatures: [
{
params: [{ name: 'field', type: 'number' }],
returnType: 'boolean',
examples: ['from index | eval s = is_infinite(field/0)'],
},
],
},
{
name: 'is_nan',
description: i18n.translate('monaco.esql.definitions.isNanDoc', {
defaultMessage: 'Returns a boolean that indicates whether its input is not a number.',
}),
signatures: [
{
params: [{ name: 'field', type: 'number' }],
returnType: 'boolean',
examples: ['row a = 1 | eval is_nan(a)'],
},
],
},
{
name: 'case',
description: i18n.translate('monaco.esql.definitions.caseDoc', {
Expand Down

0 comments on commit 07c05f6

Please sign in to comment.