本文整理汇总了Golang中github.com/couchbaselabs/query/expression.Mapper.Map方法的典型用法代码示例。如果您正苦于以下问题:Golang Mapper.Map方法的具体用法?Golang Mapper.Map怎么用?Golang Mapper.Map使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/couchbaselabs/query/expression.Mapper
的用法示例。
在下文中一共展示了Mapper.Map方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: MapExpressions
/*
Apply mapper to where condition expressions.
*/
func (this *MergeDelete) MapExpressions(mapper expression.Mapper) (err error) {
if this.where != nil {
this.where, err = mapper.Map(this.where)
}
return
}
示例2: MapExpressions
/*
This method maps all the constituent clauses, namely the from,
let, where, group by and projection(select) within a Subselect
statement.
*/
func (this *Subselect) MapExpressions(mapper expression.Mapper) (err error) {
if this.from != nil {
err = this.from.MapExpressions(mapper)
if err != nil {
return
}
}
if this.let != nil {
err = this.let.MapExpressions(mapper)
if err != nil {
return
}
}
if this.where != nil {
this.where, err = mapper.Map(this.where)
if err != nil {
return
}
}
if this.group != nil {
err = this.group.MapExpressions(mapper)
if err != nil {
return
}
}
return this.projection.MapExpressions(mapper)
}
示例3: MapExpressions
/*
Applies mapper to all the expressions in the upsert statement.
*/
func (this *Upsert) MapExpressions(mapper expression.Mapper) (err error) {
if this.key != nil {
this.key, err = mapper.Map(this.key)
if err != nil {
return
}
}
if this.value != nil {
this.value, err = mapper.Map(this.value)
if err != nil {
return
}
}
if this.values != nil {
err = this.values.MapExpressions(mapper)
if err != nil {
return
}
}
if this.query != nil {
err = this.query.MapExpressions(mapper)
if err != nil {
return
}
}
if this.returning != nil {
err = this.returning.MapExpressions(mapper)
}
return
}
示例4: MapExpression
/*
Map the input expression of the result expr.
*/
func (this *ResultTerm) MapExpression(mapper expression.Mapper) (err error) {
if this.expr != nil {
this.expr, err = mapper.Map(this.expr)
}
return
}
示例5: MapExpressions
/*
Applies mapper to the key and value expressions.
*/
func (this *Pair) MapExpressions(mapper expression.Mapper) (err error) {
this.Key, err = mapper.Map(this.Key)
if err != nil {
return
}
this.Value, err = mapper.Map(this.Value)
return
}
示例6: MapExpressions
/*
Maps the source array of the unnest if the parent object(left)
is mapped successfully.
*/
func (this *Unnest) MapExpressions(mapper expression.Mapper) (err error) {
err = this.left.MapExpressions(mapper)
if err != nil {
return
}
this.expr, err = mapper.Map(this.expr)
return
}
示例7: MapExpressions
/*
Map Expressions for all sort terms in the receiver.
*/
func (this SortTerms) MapExpressions(mapper expression.Mapper) (err error) {
for _, term := range this {
term.expr, err = mapper.Map(term.expr)
if err != nil {
return
}
}
return
}
示例8: MapExpressions
/*
Applies mapper to the path expressions and update for in
the unset Term.
*/
func (this *UnsetTerm) MapExpressions(mapper expression.Mapper) (err error) {
path, err := mapper.Map(this.path)
if err != nil {
return err
}
this.path = path.(expression.Path)
if this.updateFor != nil {
err = this.updateFor.MapExpressions(mapper)
}
return
}
示例9: MapChildren
/*
It is a utility function that takes in as input parameter
a mapper and maps the involved expressions to an expression.
If there is an error during the mapping, an error is returned.
*/
func (this *AggregateBase) MapChildren(mapper expression.Mapper) error {
children := this.Children()
for i, c := range children {
expr, err := mapper.Map(c)
if err != nil {
return err
}
children[i] = expr
}
return nil
}
示例10: MapExpressions
/*
This method maps all the constituent clauses, namely the
by, letting and having within a group by clause.
*/
func (this *Group) MapExpressions(mapper expression.Mapper) (err error) {
if this.by != nil {
err = this.by.MapExpressions(mapper)
if err != nil {
return
}
}
if this.letting != nil {
err = this.letting.MapExpressions(mapper)
if err != nil {
return
}
}
if this.having != nil {
this.having, err = mapper.Map(this.having)
}
return
}
示例11: MapExpressions
/*
Applies mapper to all the expressions in the delete statement.
*/
func (this *Delete) MapExpressions(mapper expression.Mapper) (err error) {
if this.keys != nil {
this.keys, err = mapper.Map(this.keys)
if err != nil {
return err
}
}
if this.where != nil {
this.where, err = mapper.Map(this.where)
if err != nil {
return err
}
}
if this.limit != nil {
this.limit, err = mapper.Map(this.limit)
if err != nil {
return err
}
}
if this.returning != nil {
err = this.returning.MapExpressions(mapper)
}
return
}
示例12: MapExpressions
/*
This method maps all the constituent clauses, namely the expression,
partition and where clause within a create index statement.
*/
func (this *CreateIndex) MapExpressions(mapper expression.Mapper) (err error) {
err = this.exprs.MapExpressions(mapper)
if err != nil {
return
}
if this.partition != nil {
this.partition, err = mapper.Map(this.partition)
if err != nil {
return
}
}
if this.where != nil {
this.where, err = mapper.Map(this.where)
if err != nil {
return
}
}
return
}