📄 rtree.help
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -