This commit is contained in:
Raul-Mircea 2020-01-27 13:48:49 +01:00
parent 61d4294a3b
commit 30863a092a

View File

@ -7,10 +7,12 @@ import (
// TableAndQuery returns the table name and the query already formatted as a string // TableAndQuery returns the table name and the query already formatted as a string
func (scope Scope) TableAndQuery() (string, string) { func (scope Scope) TableAndQuery() (string, string) {
scope.InstanceSet("skip_bindvar", true) scope.InstanceSet("skip_bindvar", true)
scope.prepareQuerySQL()
//qs := LogFormatter("sql", "q", time.Duration(1), scope.SQL, scope.SQLVars, int64(1)) //qs := LogFormatter("sql", "q", time.Duration(1), scope.SQL, scope.SQLVars, int64(1))
//t, q := scope.TableName(), qs[3].(string) //t, q := scope.TableName(), qs[3].(string)
if scope.SQL == "" {
scope.prepareQuerySQL()
}
t, q := scope.TableName(), scope.SQL t, q := scope.TableName(), scope.SQL
if t == "" { if t == "" {
qsplit := strings.Fields(strings.ToLower(q)) qsplit := strings.Fields(strings.ToLower(q))