diff --git a/third_party/ibis/ibis_oracle/__init__.py b/third_party/ibis/ibis_oracle/__init__.py index 9c5024e28..aa2c2591e 100644 --- a/third_party/ibis/ibis_oracle/__init__.py +++ b/third_party/ibis/ibis_oracle/__init__.py @@ -61,6 +61,8 @@ def do_connect( def connect(dbapi_connection, connection_record): with dbapi_connection.cursor() as cur: cur.execute("ALTER SESSION SET TIME_ZONE='UTC'") + # Standardise numeric formatting on en_US (issue 1033). + cur.execute("ALTER SESSION SET NLS_NUMERIC_CHARACTERS='.,'") super().do_connect(engine)