(sql string)
| 521 | } |
| 522 | |
| 523 | func (s *Session) ExecuteStatement(sql string) (*SessionDataSet, error) { |
| 524 | return s.ExecuteStatementWithContext(context.Background(), sql) |
| 525 | } |
| 526 | |
| 527 | func (s *Session) ExecuteNonQueryStatement(sql string) error { |
| 528 | request := rpc.TSExecuteStatementReq{ |
nothing calls this directly
no test coverage detected