We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 891a8fb commit 0ab2eddCopy full SHA for 0ab2edd
supabase/lib/src/operation.dart
@@ -3,7 +3,8 @@ enum Operation {
3
insert('insert'),
4
upsert('upsert'),
5
update('update'),
6
- delete('delete');
+ delete('delete'),
7
+ unknown('unknown');
8
9
final String value;
10
const Operation(this.value);
supabase/lib/src/sentry_supabase_request.dart
@@ -54,7 +54,7 @@ class SentrySupabaseRequest {
54
case 'DELETE':
55
return Operation.delete;
56
default:
57
- return Operation.select; // Should never happen.
+ return Operation.unknown; // Should never happen.
58
}
59
60
0 commit comments