Skip to content

Commit

Permalink
Merge branch 'next' into feat/explain
Browse files Browse the repository at this point in the history
  • Loading branch information
dshukertjr committed Nov 21, 2023
2 parents 6bb6998 + 3b1555f commit 426edcf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/postgrest_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ jobs:
time: '5s'

- name: Run tests
run: dart test
run: dart test --concurrency=1
4 changes: 2 additions & 2 deletions packages/postgrest/lib/src/postgrest_filter_builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ class PostgrestFilterBuilder<T> extends PostgrestTransformBuilder<T> {
/// await supabase
/// .from('users')
/// .select()
/// .is_('data', null);
/// .isFilter('data', null);
/// ```
// ignore: non_constant_identifier_names
PostgrestFilterBuilder<T> isFilter(String column, Object? value) {
Expand All @@ -238,7 +238,7 @@ class PostgrestFilterBuilder<T> extends PostgrestTransformBuilder<T> {
/// await supabase
/// .from('users')
/// .select()
/// .in_('status', ['ONLINE', 'OFFLINE']);
/// .inFilter('status', ['ONLINE', 'OFFLINE']);
/// ```
// ignore: non_constant_identifier_names
PostgrestFilterBuilder<T> inFilter(String column, List values) {
Expand Down
1 change: 1 addition & 0 deletions packages/postgrest/test/reset_helper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class ResetHelper {
_users = (await _postgrest.from('users').select());
_channels = await _postgrest.from('channels').select();
_messages = await _postgrest.from('messages').select();
print('messages has ${_messages.length} items');
_reactions = await _postgrest.from('reactions').select();
}

Expand Down

0 comments on commit 426edcf

Please sign in to comment.