From 30461d4b2d7d67f4bbe45c00ad6b63de73c1502c Mon Sep 17 00:00:00 2001 From: Christopher Jones Date: Tue, 12 Nov 2024 12:15:34 +1100 Subject: [PATCH] Fix build --- lib/sqlalchemy/dialects/oracle/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/sqlalchemy/dialects/oracle/base.py b/lib/sqlalchemy/dialects/oracle/base.py index dccaeaff73..bb5dde9ce8 100644 --- a/lib/sqlalchemy/dialects/oracle/base.py +++ b/lib/sqlalchemy/dialects/oracle/base.py @@ -966,8 +966,8 @@ class OracleCompiler(compiler.SQLCompiler): "statements that use RETURNING; the value of the column " "*before* the UPDATE takes place is returned. It is " "advised to not use RETURNING with an Oracle Database " - "computed "column. Consider setting implicit_returning " - "to False on "the Table object in order to avoid implicit " + "computed column. Consider setting implicit_returning " + "to False on the Table object in order to avoid implicit " "RETURNING clauses from being generated for this Table." ) if column.type._has_column_expression: -- 2.47.3