Lines Matching refs:table
28 # Create a 6 page database containing a single table - t1. Table t1
73 # Now create a new table in the database file. The root of the new table
74 # is page 6, which is also the right-most leaf page in table t1.
80 table t1 t1 2 {CREATE TABLE t1(x)}
81 table t4 t4 6 {CREATE TABLE t4(x)}
86 # This statement opens a cursor on table t1 and does a full table scan. As
87 # each row is visited, it is copied into table t4. There is no temporary
88 # table.
95 # b-tree for table t4 increased. From the point of view of the t1 cursor,
126 # Now create a new table in the database file. The root of the new table
127 # is page 5, which is also the right-most leaf page in table t1.
133 table t1 t1 2 {CREATE TABLE t1(x)}
134 table t4 t4 5 {CREATE TABLE t4(x)}