diff options
author | Mitch Jackson <mitch@freeside.biz> | 2018-10-19 17:54:48 -0400 |
---|---|---|
committer | Mitch Jackson <mitch@freeside.biz> | 2018-10-19 18:03:15 -0400 |
commit | cc8918dd73e3bf01fe69bdda09e2229a5c302f10 (patch) | |
tree | b4afb41749aa869d17f620bddac052886482d8e8 | |
parent | d9b37134d7e5dc98012b3111698e160d8f06bb98 (diff) |
RT# 31208 Docs $FS::Record::qsearch_qualify_columns
-rw-r--r-- | FS/FS/Record.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/FS/FS/Record.pm b/FS/FS/Record.pm index 9dd08cfd8..97a60b777 100644 --- a/FS/FS/Record.pm +++ b/FS/FS/Record.pm @@ -286,6 +286,11 @@ the individual PARAMS_HASHREF queries #regular FS::TABLE methods #on it. +C<$FS::Record::qsearch_qualify_columns> package global is enabled by default. +When enabled, the WHERE clause generated from the 'hashref' parameter has +the table name prepended to each column name. WHERE column = 'value' becomes +WHERE table.coumn = 'value' + =cut my %TYPE = (); #for debugging |