Skip to content

Commit

Permalink
Revert "fix: For SQL registry, increase max data_source_name length t…
Browse files Browse the repository at this point in the history
…o 255 (feast-dev#3630)"

This reverts commit 00c4691.
  • Loading branch information
EXPEbdodla authored Jun 11, 2024
1 parent 874e433 commit 9cda4cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/infra/registry/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
data_sources = Table(
"data_sources",
metadata,
Column("data_source_name", String(255), primary_key=True),
Column("data_source_name", String(50), primary_key=True),
Column("project_id", String(50), primary_key=True),
Column("last_updated_timestamp", BigInteger, nullable=False),
Column("data_source_proto", LargeBinary, nullable=False),
Expand Down

0 comments on commit 9cda4cf

Please sign in to comment.