[open-ils-commits] r13082 - trunk/Open-ILS/src/c-apps (scottmk)
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue May 5 16:32:29 EDT 2009
Author: scottmk
Date: 2009-05-05 16:32:25 -0400 (Tue, 05 May 2009)
New Revision: 13082
Modified:
trunk/Open-ILS/src/c-apps/oils_cstore.c
Log:
Qualify the column name with the table alias (i.e. class name)
at one spot in the ORDER BY clause where we were neglecting
to do so.
Modified: trunk/Open-ILS/src/c-apps/oils_cstore.c
===================================================================
--- trunk/Open-ILS/src/c-apps/oils_cstore.c 2009-05-05 19:30:33 UTC (rev 13081)
+++ trunk/Open-ILS/src/c-apps/oils_cstore.c 2009-05-05 20:32:25 UTC (rev 13082)
@@ -3760,7 +3760,7 @@
else
order_buf = buffer_init(128);
- OSRF_BUFFER_ADD(order_buf, _f);
+ buffer_fadd( order_buf, "\"%s\".%s", class_itr->key, _f);
} // end while
// jsonIteratorFree(order_itr);
More information about the open-ils-commits
mailing list