From: scottmk Date: Tue, 5 May 2009 20:32:25 +0000 (+0000) Subject: Qualify the column name with the table alias (i.e. class name) X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=13bb171ac0fdc4eee710560926bb2863459e1f8b;p=Evergreen.git 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. git-svn-id: svn://svn.open-ils.org/ILS/trunk@13082 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/c-apps/oils_cstore.c b/Open-ILS/src/c-apps/oils_cstore.c index 52c5c3adc3..c7491fbd3b 100644 --- a/Open-ILS/src/c-apps/oils_cstore.c +++ b/Open-ILS/src/c-apps/oils_cstore.c @@ -3760,7 +3760,7 @@ char* SELECT ( 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);