Skip to content

Commit

Permalink
Removes SQL documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
stratoula committed Feb 7, 2024
1 parent 6ffb70f commit 3f9f317
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 1,145 deletions.
20 changes: 0 additions & 20 deletions packages/kbn-text-based-editor/src/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,26 +136,6 @@ export const getDocumentationSections = async (language: string) => {
description?: string;
items: Array<{ label: string; description?: JSX.Element }>;
}> = [];
if (language === 'sql') {
const {
comparisonOperators,
logicalOperators,
mathOperators,
initialSection,
aggregateFunctions,
} = await import('./sql_documentation_sections');
groups.push({
label: i18n.translate('textBasedEditor.query.textBasedLanguagesEditor.howItWorks', {
defaultMessage: 'How it works',
}),
items: [],
});
groups.push(comparisonOperators, logicalOperators, mathOperators, aggregateFunctions);
return {
groups,
initialSection,
};
}
if (language === 'esql') {
const {
sourceCommands,
Expand Down
Loading

0 comments on commit 3f9f317

Please sign in to comment.