Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for stmtsMade (0.08 sec)

  1. src/database/sql/fakedb_test.go

    	currTx *fakeTx
    
    	// Every operation writes to line to enable the race detector
    	// check for data races.
    	line int64
    
    	// Stats for tests:
    	mu          sync.Mutex
    	stmtsMade   int
    	stmtsClosed int
    	numPrepare  int
    
    	// bad connection tests; see isBad()
    	bad       bool
    	stickyBad bool
    
    	skipDirtySession bool // tests that use Conn should set this to true.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(db.freeConn) != 1 {
    		t.Fatalf("expected 1 free conn")
    	}
    	fakeConn := db.freeConn[0].ci.(*fakeConn)
    	if made, closed := fakeConn.stmtsMade, fakeConn.stmtsClosed; made != closed {
    		t.Errorf("statement close mismatch: made %d, closed %d", made, closed)
    	}
    }
    
    var atomicRowsCloseHook atomic.Value // of func(*Rows, *error)
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top