Skip to content

Commit

Permalink
set relation_max_name_length to 1024
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzl25 committed Dec 26, 2023
1 parent 1d15898 commit 8a3cc71
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions dbt/adapters/risingwave/relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,8 @@ class RisingWaveRelation(PostgresRelation):
@classproperty
def get_relation_type(cls) -> Type[RisingWaveRelationType]:
return RisingWaveRelationType

# RisingWave has no limitation on relation name length.
# We set a relatively large value right now.
def relation_max_name_length(self):
return 1024

0 comments on commit 8a3cc71

Please sign in to comment.