[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', {
defaultMessage: 'LOOKUP JOIN',
}),
preview: true,
preview: false,
description: (
<Markdown
openLinksInNewTab={true}

View file

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