Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for incrStat (0.27 sec)

  1. src/database/sql/fakedb_test.go

    	// The waiter is called before each query. May be used in place of the "WAIT"
    	// directive.
    	waiter func(context.Context)
    }
    
    func (c *fakeConn) touchMem() {
    	c.line++
    }
    
    func (c *fakeConn) incrStat(v *int) {
    	c.mu.Lock()
    	*v++
    	c.mu.Unlock()
    }
    
    type fakeTx struct {
    	c *fakeConn
    }
    
    type boundCol struct {
    	Column      string
    	Placeholder string
    	Ordinal     int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top