mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 13:18:01 +08:00
20 lines
586 B
Go
20 lines
586 B
Go
|
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
||
|
//
|
||
|
// This Source Code Form is subject to the terms of the MIT License.
|
||
|
// If a copy of the MIT was not distributed with this file,
|
||
|
// You can obtain one at https://github.com/gogf/gf.
|
||
|
|
||
|
package clickhouse
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/gogf/gf/v2/database/gdb"
|
||
|
)
|
||
|
|
||
|
// DoCommit commits current sql and arguments to underlying sql driver.
|
||
|
func (d *Driver) DoCommit(ctx context.Context, in gdb.DoCommitInput) (out gdb.DoCommitOutput, err error) {
|
||
|
ctx = d.InjectIgnoreResult(ctx)
|
||
|
return d.Core.DoCommit(ctx, in)
|
||
|
}
|