Lines Matching refs:table
16 # removed an index entry by not the main table entry. To recreate the
19 # (1) Create a table with an index. Insert some data into that table.
20 # (2) Start a query on the table but do not complete the query.
21 # (3) Try to delete a single entry from the table.
23 # Step 3 will fail because there is still a read cursor on the table.
25 # index entry was deleted first, before the table entry. And the index
27 # the table.
29 # The solution to the problem was to detect that the table is locked
38 # Create a table that has an index.
59 # Start a query on the table. The query should not use the index.
60 # Do not complete the query, thus leaving the table locked.
68 # Try to delete a row from the table while a read is in process.
83 # Finalize the query, thus clearing the lock on the table. Then