db_qd_relative_path_p (private)
db_qd_relative_path_p path
Defined in packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl
Check if the path is relative
- Parameters:
- path (required)
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
Source code: set root_path [db_qd_root_path] set root_path_length [string length $root_path] # Check if the path starts with the root if {[string range $path 0 $root_path_length-1] eq $root_path} { return 0 } else { return 1 }XQL Not present: Generic, PostgreSQL, Oracle