contrib.go.opencensus.io/integrations/ocsql.ocStmt.options (field)

24 uses

	contrib.go.opencensus.io/integrations/ocsql (current package)
		driver.go#L478: 	options TraceOptions
		driver.go#L484: 	if !s.options.AllowRoot {
		driver.go#L489: 	attrs := make([]trace.Attribute, 0, len(s.options.DefaultAttributes)+2)
		driver.go#L490: 	attrs = append(attrs, s.options.DefaultAttributes...)
		driver.go#L498: 	if s.options.Query {
		driver.go#L500: 		if s.options.QueryParams {
		driver.go#L516: 	res, err = ocResult{parent: res, ctx: ctx, options: s.options}, nil
		driver.go#L531: 	if !s.options.AllowRoot {
		driver.go#L536: 	attrs := make([]trace.Attribute, 0, len(s.options.DefaultAttributes)+2)
		driver.go#L537: 	attrs = append(attrs, s.options.DefaultAttributes...)
		driver.go#L545: 	if s.options.Query {
		driver.go#L547: 		if s.options.QueryParams {
		driver.go#L562: 	rows, err = wrapRows(ctx, rows, s.options), nil
		driver.go#L570: 	if !s.options.AllowRoot && parentSpan == nil {
		driver.go#L581: 	attrs := append([]trace.Attribute(nil), s.options.DefaultAttributes...)
		driver.go#L582: 	if s.options.Query {
		driver.go#L584: 		if s.options.QueryParams {
		driver.go#L601: 	res, err = ocResult{parent: res, ctx: ctx, options: s.options}, nil
		driver.go#L609: 	if !s.options.AllowRoot && parentSpan == nil {
		driver.go#L620: 	attrs := append([]trace.Attribute(nil), s.options.DefaultAttributes...)
		driver.go#L621: 	if s.options.Query {
		driver.go#L623: 		if s.options.QueryParams {
		driver.go#L640: 	rows, err = wrapRows(ctx, rows, s.options), nil
		driver_go1.10.go#L85: 	s := ocStmt{parent: stmt, query: query, options: options}