rtree.help

来自「一个功能强大的内存数据库源代码,c++编写,有详细的注释」· HELP 代码 · 共 40 行

HELP
40
字号
This is a test program for the Generalized Search Tree (GiST), asdescribed by Hellerstein, Naughton & Pfeffer in Proceedings of the21st International Conference on Very Large Database Systems.The following commands are understood:create rtree foo         Creates and opens a new r-tree named fooopen rtree foo           Opens an existing r-tree fooclose foo                Closes the rtree foodrop x                   Drops (deletes) the table fooselect from foo          Selects (displays) all entries in fooselect from foo where key <op> (<xlo>, <xhi>, <ylo>, <yhi>)                          Selects entries in foo based on comparison with			 a bounding box.  The comparison operators                         that can be used in place of <op> are =                         (equals), & (overlaps), < (contained-in), and                         > (contains).  The four coordinates of                          the key are (xlow, xhigh, ylow, yhigh) of the                         query box, which are all of type double.insert foo ((0,1.2,0,1), 4)   Inserts a new entry with key (0,1.2,0,1),                          pointer 4 into table foo.  delete foo ((0,0,0,0), 4)   deletes an entry with key (0,0,0,0), pointer 4                         from table foodebug                    Activate debugging outputhelp                     Display this screendump foo                 Dump tree foo to the screen. quit                     Quit the program

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?