summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql/compiler.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/db/backends/postgresql/compiler.py')
-rw-r--r--django/db/backends/postgresql/compiler.py11
1 files changed, 1 insertions, 10 deletions
diff --git a/django/db/backends/postgresql/compiler.py b/django/db/backends/postgresql/compiler.py
index 08d78e333a..48d0ccfd9d 100644
--- a/django/db/backends/postgresql/compiler.py
+++ b/django/db/backends/postgresql/compiler.py
@@ -1,6 +1,6 @@
from django.db.models.sql.compiler import ( # isort:skip
SQLAggregateCompiler,
- SQLCompiler as BaseSQLCompiler,
+ SQLCompiler,
SQLDeleteCompiler,
SQLInsertCompiler as BaseSQLInsertCompiler,
SQLUpdateCompiler,
@@ -25,15 +25,6 @@ class InsertUnnest(list):
return "UNNEST(%s)" % ", ".join(self)
-class SQLCompiler(BaseSQLCompiler):
- def quote_name_unless_alias(self, name):
- if "$" in name:
- raise ValueError(
- "Dollar signs are not permitted in column aliases on PostgreSQL."
- )
- return super().quote_name_unless_alias(name)
-
-
class SQLInsertCompiler(BaseSQLInsertCompiler):
def assemble_as_sql(self, fields, value_rows):
# Specialize bulk-insertion of literal values through UNNEST to