@@ -290,7 +290,7 @@ def select(
290290 *columns: The names of the columns to fetch.
291291 count: The method to use to get the count of rows returned.
292292 Returns:
293- :class:`AsyncSelectRequestBuilder `
293+ :class:`SyncSelectRequestBuilder `
294294 """
295295 method , params , headers , json = pre_select (* columns , count = count , head = head )
296296 return SyncSelectRequestBuilder [_ReturnT ](
@@ -317,7 +317,7 @@ def insert(
317317 Otherwise, use the default value for the column.
318318 Only applies for bulk inserts.
319319 Returns:
320- :class:`AsyncQueryRequestBuilder `
320+ :class:`SyncQueryRequestBuilder `
321321 """
322322 method , params , headers , json = pre_insert (
323323 json ,
@@ -353,7 +353,7 @@ def upsert(
353353 not when merging with existing rows under `ignoreDuplicates: false`.
354354 This also only applies when doing bulk upserts.
355355 Returns:
356- :class:`AsyncQueryRequestBuilder `
356+ :class:`SyncQueryRequestBuilder `
357357 """
358358 method , params , headers , json = pre_upsert (
359359 json ,
@@ -381,7 +381,7 @@ def update(
381381 count: The method to use to get the count of rows returned.
382382 returning: Either 'minimal' or 'representation'
383383 Returns:
384- :class:`AsyncFilterRequestBuilder `
384+ :class:`SyncFilterRequestBuilder `
385385 """
386386 method , params , headers , json = pre_update (
387387 json ,
@@ -404,7 +404,7 @@ def delete(
404404 count: The method to use to get the count of rows returned.
405405 returning: Either 'minimal' or 'representation'
406406 Returns:
407- :class:`AsyncFilterRequestBuilder `
407+ :class:`SyncFilterRequestBuilder `
408408 """
409409 method , params , headers , json = pre_delete (
410410 count = count ,
0 commit comments