(s *schema.Schema, query string, arguments []interface{})
| 1008 | } |
| 1009 | |
| 1010 | func (tx *Transaction) Query(s *schema.Schema, query string, arguments []interface{}) (list []*schema.Resource, err error) { |
| 1011 | return tx.QueryContext(context.Background(), s, query, arguments) |
| 1012 | } |
| 1013 | |
| 1014 | // Query with raw sql string |
| 1015 | func (tx *Transaction) QueryContext(ctx context.Context, s *schema.Schema, query string, arguments []interface{}) (list []*schema.Resource, err error) { |
nothing calls this directly
no test coverage detected