From 13bb171ac0fdc4eee710560926bb2863459e1f8b Mon Sep 17 00:00:00 2001 From: scottmk Date: Tue, 5 May 2009 20:32:25 +0000 Subject: [PATCH] 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 --- Open-ILS/src/c-apps/oils_cstore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.11.0