Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestNullByteParam (0.19 sec)

  1. src/database/sql/sql_test.go

    		{NullInt16{33, true}, 1, NullInt16{33, true}},
    		{NullInt16{222, false}, 1, NullInt16{0, false}},
    		{0, NullInt16{31, false}, nil},
    	}}
    	nullTestRun(t, spec)
    }
    
    func TestNullByteParam(t *testing.T) {
    	spec := nullTestSpec{"nullbyte", "byte", [6]nullTestRow{
    		{NullByte{31, true}, 1, NullByte{31, true}},
    		{NullByte{0, false}, 1, NullByte{0, false}},
    		{22, 1, NullByte{22, true}},
    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