From 50c25040c0f98897a65a141a1210bb3460ecbc72 Mon Sep 17 00:00:00 2001 From: Moussa Taifi Date: Mon, 2 Nov 2020 14:14:37 -0500 Subject: [PATCH] fix typo --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 714e8d29..e97b3c64 100644 --- a/README.rst +++ b/README.rst @@ -198,7 +198,7 @@ Auto-incrementing a value requires the :code:`Sequence` object. Include the :cod Object Name Case Handling ------------------------------------------------------------------------------- -Snowflake stores all case-insensitive object names in uppercase text. In contrast, SQLAlchemy considers all lowercase object names to be case-insensitive. Snowflake SQLAlchemy converts the object name case during schema-level communication, i.e. during table and index reflection. If you use uppercase object names, SQLAlchemy assumes they are case-sensitive and encloses the names with quotes. This behavior will cause mismatches agaisnt data dictionary data received from Snowflake, so unless identifier names have been truly created as case sensitive using quotes, e.g., :code:`"TestDb"`, all lowercase names should be used on the SQLAlchemy side. +Snowflake stores all case-insensitive object names in uppercase text. In contrast, SQLAlchemy considers all lowercase object names to be case-insensitive. Snowflake SQLAlchemy converts the object name case during schema-level communication, i.e. during table and index reflection. If you use uppercase object names, SQLAlchemy assumes they are case-sensitive and encloses the names with quotes. This behavior will cause mismatches against data dictionary data received from Snowflake, so unless identifier names have been truly created as case sensitive using quotes, e.g., :code:`"TestDb"`, all lowercase names should be used on the SQLAlchemy side. Index Support -------------------------------------------------------------------------------