Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
docs(go): Clarify MySQL registry store package documentation
Signed-off-by: PepeluDev <joseluislobell@gmail.com>
  • Loading branch information
PepeluDev authored and ntkathole committed Feb 6, 2026
commit cb5b8ed063fe13dab0b571a5c4c84694bc34c5be
7 changes: 4 additions & 3 deletions go/internal/feast/registry/mysql_registry_store.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Package registry implements Feast registry stores.
//
// MySQL Registry Store:
// The MySQL registry store queries assume a database schema matching the Python SQLAlchemy
// schema defined in sdk/python/feast/infra/registry/sql.py. When the Python schema evolves,
// the Go queries in this package must be updated accordingly.
// The MySQL registry store provides read-only access to a Feast registry stored in MySQL.
// It queries a database schema matching the Python SQLAlchemy schema defined in
// sdk/python/feast/infra/registry/sql.py. When the Python schema evolves, the Go queries
// in this package must be updated accordingly.
package registry

import (
Expand Down
Loading