@@ -290,7 +290,7 @@ def select(
290
290
*columns: The names of the columns to fetch.
291
291
count: The method to use to get the count of rows returned.
292
292
Returns:
293
- :class:`AsyncSelectRequestBuilder `
293
+ :class:`SyncSelectRequestBuilder `
294
294
"""
295
295
method , params , headers , json = pre_select (* columns , count = count , head = head )
296
296
return SyncSelectRequestBuilder [_ReturnT ](
@@ -317,7 +317,7 @@ def insert(
317
317
Otherwise, use the default value for the column.
318
318
Only applies for bulk inserts.
319
319
Returns:
320
- :class:`AsyncQueryRequestBuilder `
320
+ :class:`SyncQueryRequestBuilder `
321
321
"""
322
322
method , params , headers , json = pre_insert (
323
323
json ,
@@ -353,7 +353,7 @@ def upsert(
353
353
not when merging with existing rows under `ignoreDuplicates: false`.
354
354
This also only applies when doing bulk upserts.
355
355
Returns:
356
- :class:`AsyncQueryRequestBuilder `
356
+ :class:`SyncQueryRequestBuilder `
357
357
"""
358
358
method , params , headers , json = pre_upsert (
359
359
json ,
@@ -381,7 +381,7 @@ def update(
381
381
count: The method to use to get the count of rows returned.
382
382
returning: Either 'minimal' or 'representation'
383
383
Returns:
384
- :class:`AsyncFilterRequestBuilder `
384
+ :class:`SyncFilterRequestBuilder `
385
385
"""
386
386
method , params , headers , json = pre_update (
387
387
json ,
@@ -404,7 +404,7 @@ def delete(
404
404
count: The method to use to get the count of rows returned.
405
405
returning: Either 'minimal' or 'representation'
406
406
Returns:
407
- :class:`AsyncFilterRequestBuilder `
407
+ :class:`SyncFilterRequestBuilder `
408
408
"""
409
409
method , params , headers , json = pre_delete (
410
410
count = count ,
0 commit comments