SQL: Fix 32 bit arm builds (#113270)

* add arm specific frame_db_conf

* use proper field type and fix error

* add extra mising func
This commit is contained in:
Kevin Minehart
2025-10-31 10:42:25 +01:00
committed by GitHub
parent b5cf192331
commit 0a8d15dcac
+19
View File
@@ -0,0 +1,19 @@
//go:build arm
package sql
import (
"errors"
mysql "github.com/dolthub/go-mysql-server/sql"
"github.com/grafana/grafana-plugin-sdk-go/data"
)
// TODO: Implement for 32-bit arm
func MySQLColToFieldType(col *mysql.Column) (data.FieldType, error) {
return data.FieldTypeUnknown, errors.New("arm not implemented")
}
func SchemaFromFrame(frame *data.Frame) mysql.Schema {
return mysql.Schema{}
}