v0.0.519
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Has been cancelled

This commit is contained in:
2024-10-05 00:58:15 +02:00
parent f6b47792a4
commit dc6cb274ee
4 changed files with 41 additions and 33 deletions

View File

@@ -9,12 +9,15 @@ type PrePingMeta struct {
}
type PreTxBeginMeta struct {
ConstructorContext context.Context
}
type PreTxCommitMeta struct {
ConstructorContext context.Context
}
type PreTxRollbackMeta struct {
ConstructorContext context.Context
}
type PreQueryMeta struct {
@@ -30,25 +33,28 @@ type PostPingMeta struct {
}
type PostTxBeginMeta struct {
Init time.Time
Start time.Time
End time.Time
ConstructorContext context.Context
Init time.Time
Start time.Time
End time.Time
}
type PostTxCommitMeta struct {
Init time.Time
Start time.Time
End time.Time
ExecCounter int
QueryCounter int
ConstructorContext context.Context
Init time.Time
Start time.Time
End time.Time
ExecCounter int
QueryCounter int
}
type PostTxRollbackMeta struct {
Init time.Time
Start time.Time
End time.Time
ExecCounter int
QueryCounter int
ConstructorContext context.Context
Init time.Time
Start time.Time
End time.Time
ExecCounter int
QueryCounter int
}
type PostQueryMeta struct {