We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b789593 commit 4e5d990Copy full SHA for 4e5d990
1 file changed
sdk/python/feast/infra/registry_stores/sql.py
@@ -167,15 +167,6 @@
167
)
168
169
170
-feast_metadata = Table(
171
- "feast_metadata",
172
- metadata,
173
- Column("metadata_key", String(50), primary_key=True),
174
- Column("metadata_value", String(50), nullable=False),
175
- Column("last_updated_timestamp", BigInteger, nullable=False),
176
-)
177
-
178
179
class SqlRegistry(BaseRegistry):
180
def __init__(
181
self, registry_config: Optional[RegistryConfig], repo_path: Optional[Path]
0 commit comments