-
Notifications
You must be signed in to change notification settings - Fork 72
SQL++ (Couchbase N1QL) support #1210
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
SQL++ (Couchbase N1QL) support #1210
Conversation
…e-sql++ # Conflicts: # pkg/appolly/app/request/span.go
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #1210 +/- ##
==========================================
- Coverage 43.10% 42.92% -0.19%
==========================================
Files 299 300 +1
Lines 32120 32476 +356
==========================================
+ Hits 13846 13939 +93
- Misses 17380 17629 +249
- Partials 894 908 +14
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
| return "", "" | ||
| } | ||
|
|
||
| parts := strings.Split(table, ".") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
consider split.NewIterator instead to prevent the allocation of a new slice each time.
Here's an example: https://github.com/open-telemetry/opentelemetry-ebpf-instrumentation/blob/main/pkg/ebpf/common/redis_detect_transform.go#L116
Adds support for SQL++ (previously Couchbase N1QL), which is a sql query language over json http.
even though mainly used by couchbase as a complimentary way to query data beside the KV protocol, is also used by other databases like apache AsterixDB, so i think it has a justification to be separated to a different protocol
resolves #1167
Checklist