Skip to main content

Module scan_no_index

Module scan_no_index 

Source

Functionsยง

scan_limit_with_filter_returns_correct_count
Scan with a filter AND a limit returns exactly limit matching rows even when the table contains more non-matching rows than limit. This exercises the loop-with-ExclusiveStartKey path in the DynamoDB driver.
scan_no_filter
Scan with no filter predicate returns all rows.
scan_or_filter
Scan with an OR filter on non-indexed fields.
scan_order_by_is_error
ORDER BY on a scan-path query is an error on DynamoDB โ€” the Scan API returns items in an unspecified order so sorted results cannot be guaranteed.
scan_order_by_sql
ORDER BY on a full-table scan works on SQL drivers โ€” the database sorts natively via ORDER BY in the SQL query.
scan_paginate_multi_page
Cursor-based pagination over a full-table scan returns all rows across multiple pages with no duplicates.
scan_with_limit
Scan respects a limit โ€” at most limit rows are returned.