From 76c505399c92ff4312516003affa35bcfb3799e7 Mon Sep 17 00:00:00 2001 From: tkaunlaky-e6 Date: Wed, 1 Apr 2026 13:14:44 +0530 Subject: [PATCH] Add 'index' to E6 reserved keywords Ensures that 'index' is quoted when used as an identifier (e.g. CTE alias, column name) to avoid conflicts with the INDEX keyword. --- sqlglot/dialects/e6.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sqlglot/dialects/e6.py b/sqlglot/dialects/e6.py index 0888febfaa..f3c420e8c9 100644 --- a/sqlglot/dialects/e6.py +++ b/sqlglot/dialects/e6.py @@ -3140,6 +3140,7 @@ def create_lpad_component(func_name: str): "grouping", "having", "in", + "index", "inner", "int", "integer",