{"version":3,"sources":["../../../src/generated/operator_docs/add.ts","../../../src/generated/operator_docs/cast.ts","../../../src/generated/operator_docs/div.ts","../../../src/generated/operator_docs/equals.ts","../../../src/generated/operator_docs/greater_than.ts","../../../src/generated/operator_docs/greater_than_or_equal.ts","../../../src/generated/operator_docs/in.ts","../../../src/generated/operator_docs/is_not_null.ts","../../../src/generated/operator_docs/is_null.ts","../../../src/generated/operator_docs/less_than.ts","../../../src/generated/operator_docs/less_than_or_equal.ts","../../../src/generated/operator_docs/like.ts","../../../src/generated/operator_docs/match_operator.ts","../../../src/generated/operator_docs/mod.ts","../../../src/generated/operator_docs/mul.ts","../../../src/generated/operator_docs/neg.ts","../../../src/generated/operator_docs/not_equals.ts","../../../src/generated/operator_docs/not_in.ts","../../../src/generated/operator_docs/not_like.ts","../../../src/generated/operator_docs/not_rlike.ts","../../../src/generated/operator_docs/rlike.ts","../../../src/generated/operator_docs/sub.ts","../../../src/generated/operator_docs/index.ts"],"sourcesContent":["/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/add.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Add two values. In case of numeric fields, if either field is multivalued then the result is `null`.\\nFor dense_vector operations, both arguments should be dense_vectors. Inequal vector dimensions generate null result.\\n',\n  params: {\n    lhs: 'A numeric value, dense_vector or a date time value.',\n    rhs: 'A numeric value, dense_vector or a date time value.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/cast.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'The `::` operator provides a convenient alternative syntax to the TO_<type> conversion functions.',\n  examples: [\n    'ROW ver = CONCAT((\"0\"::INT + 1)::STRING, \".2.3\")::VERSION',\n  ],\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/div.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Divide one value by another. For numeric operands, if either field is multivalued\\nthen the result is `null`.',\n  note: 'Division of two integer types will yield an integer result, rounding towards 0. \"\\nIf you need floating point division, `Cast (::)` one of the arguments to a `DOUBLE`.\\nFor dense_vector operations, both arguments should be dense_vectors. Inequal vector dimensions generate null result.\\n',\n  params: {\n    lhs: 'A numeric value.',\n    rhs: 'A numeric value.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/equals.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Check if two fields are equal. If either field is multivalued then the result is `null`.',\n  note: 'This is pushed to the underlying search index if one side of the comparison is constant and the other side is a field in the index that has both an mapping-index and doc-values.',\n  params: {\n    lhs: 'An expression.',\n    rhs: 'An expression.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/greater_than.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Check if one field is greater than another. If either field is multivalued then the result is `null`.',\n  note: 'This is pushed to the underlying search index if one side of the comparison is constant and the other side is a field in the index that has both an mapping-index and doc-values.',\n  params: {\n    lhs: 'An expression.',\n    rhs: 'An expression.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/greater_than_or_equal.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Check if one field is greater than or equal to another. If either field is multivalued then the result is `null`.',\n  note: 'This is pushed to the underlying search index if one side of the comparison is constant and the other side is a field in the index that has both an mapping-index and doc-values.',\n  params: {\n    lhs: 'An expression.',\n    rhs: 'An expression.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/in.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'The `IN` operator allows testing whether a field or expression equals an element in a list of literals, fields or expressions.',\n  examples: [\n    'ROW a = 1, b = 4, c = 3\\n| WHERE c-a IN (3, b / 2, a)',\n  ],\n  params: {\n    field: 'An expression.',\n    inlist: 'A list of items.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/is_not_null.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Returns `false` if the value is `NULL`, `true` otherwise.',\n  examples: [\n    'FROM employees\\n| WHERE is_rehired IS NOT NULL\\n| STATS COUNT(emp_no)',\n  ],\n  note: 'If a field is only in some documents it will be `NULL` in the documents that did not contain it.',\n  params: {\n    field: 'Value to check. It can be a single- or multi-valued column or an expression.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/is_null.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Returns `true` if the value is `NULL`, `false` otherwise.',\n  examples: [\n    'FROM employees\\n| WHERE birth_date IS NULL',\n  ],\n  note: 'If a field is only in some documents it will be `NULL` in the documents that did not contain it.',\n  params: {\n    field: 'Value to check. It can be a single- or multi-valued column or an expression.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/less_than.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Check if one field is less than another. If either field is multivalued then the result is `null`.',\n  note: 'This is pushed to the underlying search index if one side of the comparison is constant and the other side is a field in the index that has both an mapping-index and doc-values.',\n  params: {\n    lhs: 'An expression.',\n    rhs: 'An expression.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/less_than_or_equal.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Check if one field is less than or equal to another. If either field is multivalued then the result is `null`.',\n  note: 'This is pushed to the underlying search index if one side of the comparison is constant and the other side is a field in the index that has both an mapping-index and doc-values.',\n  params: {\n    lhs: 'An expression.',\n    rhs: 'An expression.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/like.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Use `LIKE` to filter data based on string patterns using wildcards. `LIKE`\\nusually acts on a field placed on the left-hand side of the operator, but it can\\nalso act on a constant (literal) expression. The right-hand side of the operator\\nrepresents the pattern, which can be a string literal, a query parameter, or any\\nconstant expression such as a call to `CONCAT` or `TO_LOWER`.\\n\\nThe following wildcard characters are supported:\\n\\n* `*` matches zero or more characters.\\n* `?` matches one character.',\n  examples: [\n    'FROM employees\\n| WHERE first_name LIKE \"\"\"?b*\"\"\"\\n| KEEP first_name, last_name',\n  ],\n  params: {\n    str: 'A literal expression.',\n    pattern: 'Pattern.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/match_operator.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Use the match operator (`:`) to perform a match query on the specified field or expression.\\nUsing `:` is equivalent to using the `match` query in the Elasticsearch Query DSL.\\n\\nThe match operator is equivalent to the match function.\\n\\nFor using the function syntax, or adding match query parameters, you can use the\\nmatch function.\\n\\n`:` returns true if the provided query matches the row.',\n  examples: [\n    'FROM books\\n| WHERE author:\"Faulkner\"',\n    'FROM employees\\n| WHERE job_positions:\"Internship\"\\n| KEEP emp_no, job_positions',\n    'FROM books METADATA _score\\n| WHERE semantic_title:\"Shakespeare\"\\n| SORT _score DESC\\n| KEEP _score, semantic_title',\n  ],\n  params: {\n    field: 'Field or expression that the query will target.',\n    query: 'Value to find in the provided field or expression.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/mod.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Divide one number by another and return the remainder. If either field is multivalued then the result is `null`.',\n  params: {\n    lhs: 'A numeric value.',\n    rhs: 'A numeric value.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/mul.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Multiply two values together. For numeric fields, if either field is multivalued\\nthen the result is `null`. For dense_vector operations, both arguments should be dense_vectors. Inequal vector dimensions generate\\nnull result.\\n',\n  params: {\n    lhs: 'A numeric value or dense_vector',\n    rhs: 'A numeric value or dense_vector',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/neg.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Returns the negation of the argument.',\n  params: {\n    field: 'A numeric value or a date time interval.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/not_equals.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Check if two fields are unequal. If either field is multivalued then the result is `null`.',\n  note: 'This is pushed to the underlying search index if one side of the comparison is constant and the other side is a field in the index that has both an mapping-index and doc-values.',\n  params: {\n    lhs: 'An expression.',\n    rhs: 'An expression.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/not in.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'The `NOT IN` operator allows testing whether a field or expression does *not* equal any element in a list of literals, fields or expressions.',\n  params: {\n    field: 'An expression.',\n    inlist: 'A list of items.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/not like.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Use `LIKE` to filter data based on string patterns using wildcards. `LIKE`\\nusually acts on a field placed on the left-hand side of the operator, but it can\\nalso act on a constant (literal) expression. The right-hand side of the operator\\nrepresents the pattern, which can be a string literal, a query parameter, or any\\nconstant expression such as a call to `CONCAT` or `TO_LOWER`.\\n\\nThe following wildcard characters are supported:\\n\\n* `*` matches zero or more characters.\\n* `?` matches one character.',\n  params: {\n    str: 'A literal expression.',\n    pattern: 'Pattern.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/not rlike.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Use `RLIKE` to filter data based on string patterns using\\nregular expressions. `RLIKE` usually acts on a field placed on\\nthe left-hand side of the operator, but it can also act on a constant (literal)\\nexpression. The right-hand side of the operator represents the pattern, which can\\nbe a string literal, a query parameter, or any constant expression such as a call\\nto `CONCAT` or `TO_UPPER`.',\n  params: {\n    str: 'A literal value.',\n    pattern: 'A regular expression.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/rlike.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Use `RLIKE` to filter data based on string patterns using\\nregular expressions. `RLIKE` usually acts on a field placed on\\nthe left-hand side of the operator, but it can also act on a constant (literal)\\nexpression. The right-hand side of the operator represents the pattern, which can\\nbe a string literal, a query parameter, or any constant expression such as a call\\nto `CONCAT` or `TO_UPPER`.',\n  examples: [\n    'FROM employees\\n| WHERE first_name RLIKE \"\"\".leja.*\"\"\"\\n| KEEP first_name, last_name',\n  ],\n  params: {\n    str: 'A literal value.',\n    pattern: 'A regular expression.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED BY\n// `yarn workspace @elastic/esql-definitions generate` FROM\n// `elasticsearch/esql/x-pack-esql/definition/operators/sub.json`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nconst docs: DefinitionDocs = {\n  description: 'Subtract one value from another. In case of numeric fields, if either field is multivalued\\nthen the result is `null`. For dense_vector fields, both arguments should be dense_vectors. Inequal vector dimensions generate\\nnull result.\\n',\n  params: {\n    lhs: 'A numeric value, dense_vector or a date time value.',\n    rhs: 'A numeric value, dense_vector or a date time value.',\n  },\n};\n\nexport default docs;\n","/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0; you may not use this file except in compliance with the Elastic License\n * 2.0.\n */\n\n// DO NOT MODIFY THIS FILE BY HAND. IT IS GENERATED FROM `elasticsearch/` BY\n// `yarn workspace @elastic/esql-definitions generate`.\n\nimport type { DefinitionDocs } from '../../definition_types';\n\nimport addDocs from './add';\nimport castDocs from './cast';\nimport divDocs from './div';\nimport equalsDocs from './equals';\nimport greaterThanDocs from './greater_than';\nimport greaterThanOrEqualDocs from './greater_than_or_equal';\nimport inDocs from './in';\nimport isNotNullDocs from './is_not_null';\nimport isNullDocs from './is_null';\nimport lessThanDocs from './less_than';\nimport lessThanOrEqualDocs from './less_than_or_equal';\nimport likeDocs from './like';\nimport matchOperatorDocs from './match_operator';\nimport modDocs from './mod';\nimport mulDocs from './mul';\nimport negDocs from './neg';\nimport notEqualsDocs from './not_equals';\nimport notInDocs from './not_in';\nimport notLikeDocs from './not_like';\nimport notRlikeDocs from './not_rlike';\nimport rlikeDocs from './rlike';\nimport subDocs from './sub';\n\nexport const operatorDocs: Record<string, DefinitionDocs> = {\n  add: addDocs,\n  cast: castDocs,\n  div: divDocs,\n  equals: equalsDocs,\n  greater_than: greaterThanDocs,\n  greater_than_or_equal: greaterThanOrEqualDocs,\n  in: inDocs,\n  is_not_null: isNotNullDocs,\n  is_null: isNullDocs,\n  less_than: lessThanDocs,\n  less_than_or_equal: lessThanOrEqualDocs,\n  like: likeDocs,\n  match_operator: matchOperatorDocs,\n  mod: modDocs,\n  mul: mulDocs,\n  neg: negDocs,\n  not_equals: notEqualsDocs,\n  not_in: notInDocs,\n  not_like: notLikeDocs,\n  not_rlike: notRlikeDocs,\n  rlike: rlikeDocs,\n  sub: subDocs,\n};\n"],"mappings":"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","names":["docs","docs","docs","docs","docs","docs","docs","docs","docs","docs","docs","docs","docs","docs","docs","docs","docs","docs","docs","docs","docs"]}