We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 192c97f commit e9077f6Copy full SHA for e9077f6
dbt/adapters/sqlite/relation.py
@@ -1,4 +1,4 @@
1
-from dataclasses import dataclass
+from dataclasses import dataclass, field
2
3
from dbt.adapters.base.relation import BaseRelation, Policy
4
@@ -19,5 +19,5 @@ class SQLiteIncludePolicy(Policy):
19
20
@dataclass(frozen=True, eq=False, repr=False)
21
class SQLiteRelation(BaseRelation):
22
- quote_policy: SQLiteQuotePolicy = SQLiteQuotePolicy()
23
- include_policy: SQLiteIncludePolicy = SQLiteIncludePolicy()
+ quote_policy: SQLiteQuotePolicy = field(default_factory=SQLiteQuotePolicy)
+ include_policy: SQLiteIncludePolicy = field(default_factory=SQLiteIncludePolicy)
0 commit comments