We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40af749 commit 44e4f51Copy full SHA for 44e4f51
1 file changed
lib/sqlalchemy/dialects/oracle/base.py
@@ -2054,12 +2054,12 @@ def _table_options_query(
2054
(
2055
dictionary.all_tables.c.compression
2056
if self._supports_table_compression
2057
- else sql.literal_column("NULL").label("compression")
+ else sql.null().label("compression")
2058
),
2059
2060
dictionary.all_tables.c.compress_for
2061
if self._supports_table_compress_for
2062
- else sql.literal_column("NULL").label("compress_for")
+ else sql.null().label("compress_for")
2063
2064
).where(dictionary.all_tables.c.owner == owner)
2065
if has_filter_names:
0 commit comments