mirror of
https://github.com/bitechdev/ResolveSpec.git
synced 2026-01-01 09:44:24 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0899ba5029 | ||
|
|
c84dd7dc91 | ||
|
|
f1c6b36374 |
@@ -22,7 +22,10 @@ func NewBunAdapter(db *bun.DB) *BunAdapter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (b *BunAdapter) NewSelect() common.SelectQuery {
|
func (b *BunAdapter) NewSelect() common.SelectQuery {
|
||||||
return &BunSelectQuery{query: b.db.NewSelect()}
|
return &BunSelectQuery{
|
||||||
|
query: b.db.NewSelect(),
|
||||||
|
db: b.db,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *BunAdapter) NewInsert() common.InsertQuery {
|
func (b *BunAdapter) NewInsert() common.InsertQuery {
|
||||||
@@ -78,13 +81,16 @@ func (b *BunAdapter) RunInTransaction(ctx context.Context, fn func(common.Databa
|
|||||||
// BunSelectQuery implements SelectQuery for Bun
|
// BunSelectQuery implements SelectQuery for Bun
|
||||||
type BunSelectQuery struct {
|
type BunSelectQuery struct {
|
||||||
query *bun.SelectQuery
|
query *bun.SelectQuery
|
||||||
schema string // Separated schema name
|
db bun.IDB // Store DB connection for count queries
|
||||||
tableName string // Just the table name, without schema
|
hasModel bool // Track if Model() was called
|
||||||
|
schema string // Separated schema name
|
||||||
|
tableName string // Just the table name, without schema
|
||||||
tableAlias string
|
tableAlias string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *BunSelectQuery) Model(model interface{}) common.SelectQuery {
|
func (b *BunSelectQuery) Model(model interface{}) common.SelectQuery {
|
||||||
b.query = b.query.Model(model)
|
b.query = b.query.Model(model)
|
||||||
|
b.hasModel = true // Mark that we have a model
|
||||||
|
|
||||||
// Try to get table name from model if it implements TableNameProvider
|
// Try to get table name from model if it implements TableNameProvider
|
||||||
if provider, ok := model.(common.TableNameProvider); ok {
|
if provider, ok := model.(common.TableNameProvider); ok {
|
||||||
@@ -228,10 +234,19 @@ func (b *BunSelectQuery) Scan(ctx context.Context, dest interface{}) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (b *BunSelectQuery) Count(ctx context.Context) (int, error) {
|
func (b *BunSelectQuery) Count(ctx context.Context) (int, error) {
|
||||||
// Use ColumnExpr with Scan instead of Count() to avoid requiring a model
|
// If Model() was set, use bun's native Count() which works properly
|
||||||
// This works with just Table() set and avoids "Model(nil)" error
|
if b.hasModel {
|
||||||
|
count, err := b.query.Count(ctx)
|
||||||
|
return count, err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Otherwise, wrap as subquery to avoid "Model(nil)" error
|
||||||
|
// This is needed when only Table() is set without a model
|
||||||
var count int
|
var count int
|
||||||
err := b.query.ColumnExpr("count(*)").Scan(ctx, &count)
|
err := b.db.NewSelect().
|
||||||
|
TableExpr("(?) AS subquery", b.query).
|
||||||
|
ColumnExpr("COUNT(*)").
|
||||||
|
Scan(ctx, &count)
|
||||||
return count, err
|
return count, err
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -381,7 +396,10 @@ type BunTxAdapter struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (b *BunTxAdapter) NewSelect() common.SelectQuery {
|
func (b *BunTxAdapter) NewSelect() common.SelectQuery {
|
||||||
return &BunSelectQuery{query: b.tx.NewSelect()}
|
return &BunSelectQuery{
|
||||||
|
query: b.tx.NewSelect(),
|
||||||
|
db: b.tx,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *BunTxAdapter) NewInsert() common.InsertQuery {
|
func (b *BunTxAdapter) NewInsert() common.InsertQuery {
|
||||||
|
|||||||
@@ -172,12 +172,19 @@ func (h *Handler) handleRead(ctx context.Context, w common.ResponseWriter, id st
|
|||||||
logger.Info("Reading records from %s.%s", schema, entity)
|
logger.Info("Reading records from %s.%s", schema, entity)
|
||||||
|
|
||||||
// Create the model pointer for Scan() operations
|
// Create the model pointer for Scan() operations
|
||||||
// We don't set it on the query to avoid table duplication in FROM clause
|
|
||||||
sliceType := reflect.SliceOf(reflect.PointerTo(modelType))
|
sliceType := reflect.SliceOf(reflect.PointerTo(modelType))
|
||||||
modelPtr := reflect.New(sliceType).Interface()
|
modelPtr := reflect.New(sliceType).Interface()
|
||||||
|
|
||||||
// Use only Table() - model will be provided to Scan() directly
|
// Start with Model() using the slice pointer to avoid "Model(nil)" errors in Count()
|
||||||
query := h.db.NewSelect().Table(tableName)
|
// Bun's Model() accepts both single pointers and slice pointers
|
||||||
|
query := h.db.NewSelect().Model(modelPtr)
|
||||||
|
|
||||||
|
// Only set Table() if the model doesn't provide a table name via the underlying type
|
||||||
|
// Create a temporary instance to check for TableNameProvider
|
||||||
|
tempInstance := reflect.New(modelType).Interface()
|
||||||
|
if provider, ok := tempInstance.(common.TableNameProvider); !ok || provider.TableName() == "" {
|
||||||
|
query = query.Table(tableName)
|
||||||
|
}
|
||||||
|
|
||||||
// Apply column selection
|
// Apply column selection
|
||||||
if len(options.Columns) > 0 {
|
if len(options.Columns) > 0 {
|
||||||
|
|||||||
@@ -201,9 +201,16 @@ func (h *Handler) handleRead(ctx context.Context, w common.ResponseWriter, id st
|
|||||||
|
|
||||||
logger.Info("Reading records from %s.%s", schema, entity)
|
logger.Info("Reading records from %s.%s", schema, entity)
|
||||||
|
|
||||||
// Use Table() with the resolved table name
|
// Start with Model() using the slice pointer to avoid "Model(nil)" errors in Count()
|
||||||
// Model will be provided to Scan() directly to avoid table duplication in FROM clause
|
// Bun's Model() accepts both single pointers and slice pointers
|
||||||
query := h.db.NewSelect().Table(tableName)
|
query := h.db.NewSelect().Model(modelPtr)
|
||||||
|
|
||||||
|
// Only set Table() if the model doesn't provide a table name via the underlying type
|
||||||
|
// Create a temporary instance to check for TableNameProvider
|
||||||
|
tempInstance := reflect.New(modelType).Interface()
|
||||||
|
if provider, ok := tempInstance.(common.TableNameProvider); !ok || provider.TableName() == "" {
|
||||||
|
query = query.Table(tableName)
|
||||||
|
}
|
||||||
|
|
||||||
// Apply column selection
|
// Apply column selection
|
||||||
if len(options.Columns) > 0 {
|
if len(options.Columns) > 0 {
|
||||||
|
|||||||
Reference in New Issue
Block a user