[ES|QL] Flip LOOKUP JOIN to GA in docs (#225117)

This commit is contained in:
Alexander Spies 2025-06-25 07:31:25 +02:00 committed by GitHub
parent 1812b4099e
commit 6e7c61a13e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -462,7 +462,7 @@ FROM employees
label: i18n.translate('languageDocumentation.documentationESQL.lookupJoin', { label: i18n.translate('languageDocumentation.documentationESQL.lookupJoin', {
defaultMessage: 'LOOKUP JOIN', defaultMessage: 'LOOKUP JOIN',
}), }),
preview: true, preview: false,
description: ( description: (
<Markdown <Markdown
openLinksInNewTab={true} openLinksInNewTab={true}

View file

@ -583,7 +583,7 @@ export const commandDefinitions: Array<CommandDefinition<any>> = [
defaultMessage: 'Join table with another table.', defaultMessage: 'Join table with another table.',
}), }),
declaration: `LOOKUP JOIN <lookup_index> ON <field_name>`, declaration: `LOOKUP JOIN <lookup_index> ON <field_name>`,
preview: true, preview: false,
examples: [ examples: [
'… | LOOKUP JOIN lookup_index ON join_field', '… | LOOKUP JOIN lookup_index ON join_field',
// TODO: Uncomment when other join types are implemented // TODO: Uncomment when other join types are implemented