--- parser3/src/classes/table.C 2003/04/11 15:00:04 1.176 +++ parser3/src/classes/table.C 2003/04/14 12:08:16 1.178 @@ -5,7 +5,7 @@ Author: Alexandr Petrosian (http://paf.design.ru) */ -static const char* IDENT_TABLE_C="$Date: 2003/04/11 15:00:04 $"; +static const char* IDENT_TABLE_C="$Date: 2003/04/14 12:08:16 $"; #include "classes.h" #include "pa_common.h" @@ -561,8 +561,7 @@ static bool _locate_expression(Table& ta Value& expression_code=params->as_junction(0, "must be expression"); Locate_expression_func_info info={&r, &expression_code}; - table.locate(locate_expression_func, &info, o); - return false; + return table.locate(locate_expression_func, &info, o); } static bool _locate_name_value(Table& table, Table::Action_options o, Request& r, const String& method_name, MethodParams *params) { @@ -637,6 +636,10 @@ static void _join(Request& r, const Stri &method_name, "source and destination are same table"); + if(o.reverse) + throw Exception(0, + &method_name, + "not implemented in this version, please upgrade"); if(const Array *dest_columns=dest.columns()) { // dest is named int saved_src_current=src.current(); int m=src.size()-o.offset;