Skip to content

Commit 478caec

Browse files
authored
fix: For SQL registry, increase max data_source_name length to 255 (feast-dev#3630)
* sql.py data_sources.data_source_name String(255) Extend the limit of the data_source_name field from 50 to 255. Signed-off-by: Ross Donnachie <code@radonn.co.za>
1 parent 870762a commit 478caec

File tree

1 file changed

+1
-1
lines changed
  • sdk/python/feast/infra/registry

1 file changed

+1
-1
lines changed

sdk/python/feast/infra/registry/sql.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
data_sources = Table(
8282
"data_sources",
8383
metadata,
84-
Column("data_source_name", String(50), primary_key=True),
84+
Column("data_source_name", String(255), primary_key=True),
8585
Column("project_id", String(50), primary_key=True),
8686
Column("last_updated_timestamp", BigInteger, nullable=False),
8787
Column("data_source_proto", LargeBinary, nullable=False),

0 commit comments

Comments
 (0)