i18n: Use grafana/i18n to init the locale and manage the regionalFormat (#105281)

This commit is contained in:
Laura Fernández
2025-05-19 13:24:33 +02:00
committed by GitHub
parent 8b78b604ca
commit 23ecb9d904
12 changed files with 116 additions and 9 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ type DB struct{}
// Stub out the QueryFrames method for ARM builds
// See github.com/dolthub/go-mysql-server/issues/2837
func (db *DB) QueryFrames(_ context.Context, _ tracing.Tracer, _, _ string, _ []*data.Frame, _...QueryOption) (*data.Frame, error) {
func (db *DB) QueryFrames(_ context.Context, _ tracing.Tracer, _, _ string, _ []*data.Frame, _ ...QueryOption) (*data.Frame, error) {
return nil, fmt.Errorf("sql expressions not supported in arm")
}