Skip to content

Commit 9b2c6d1

Browse files
sfc-gh-jvasquezrojasrosneraholten
authored
Fix readme typos (#548)
* Fix typo in README.md --------- Co-authored-by: Norman Rosner <norman@rosner.io> Co-authored-by: Anthony Holten <anthony.holten1@gmail.com>
1 parent 9157932 commit 9b2c6d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ finally:
209209

210210
# Best
211211
try:
212-
with engine.connext() as connection:
212+
with engine.connect() as connection:
213213
connection.execute(text(<SQL>))
214214
# or
215215
connection.exec_driver_sql(<SQL>)
@@ -230,7 +230,7 @@ t = Table('mytable', metadata,
230230

231231
### Object Name Case Handling
232232

233-
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., `"TestDb"`, all lowercase names should be used on the SQLAlchemy side.
233+
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., `"TestDb"`, all lowercase names should be used on the SQLAlchemy side.
234234

235235
### Index Support
236236

0 commit comments

Comments
 (0)