-
-
Notifications
You must be signed in to change notification settings - Fork 45
Closed
Description
In VO, the REINDEX command is defined as
REINDEX => ORDLISTREBUILD()
REINDEX [EVAL <ev>] [EVERY <evr>] ;
=> ORDCONDSET(,,,, <{ev}>, <evr>,,,,,,,) ;; ;
ORDLISTREBUILD()
In X#, only the single token version is defined and it calls DBReindex() instead of OrdListRebuild():
#command REINDEX => DbReindex()
There's also an alternative version for use with IN/ALIAS, is that one used for FoxPro compatibility? (still using DBReindex()):
#command REINDEX <x:IN,ALIAS> <(a)> => (<(a)>) -> (DbReindex())