|
From: Claudio V. C. <ro...@us...> - 2006-01-26 08:00:56
|
Build Version : T2.0.0.12189 Firebird 2.0 Beta 2 (writeBuildNum.sh,v 1.12340 2006/01/26 08:00:46 robocop Exp ) Update of /cvsroot/firebird/firebird2/src/qli In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23503/src/qli Modified Files: show.epp Log Message: Beware of PC_ENGINE in qli: it's used to protect code meant to be marked with EXPRESSION_INDICES instead, therefore probably all places should be enabled unconditionally. At least with one change (this one) it now shows expression indices correctly. Index: show.epp =================================================================== RCS file: /cvsroot/firebird/firebird2/src/qli/show.epp,v retrieving revision 1.40 retrieving revision 1.41 diff -b -U3 -r1.40 -r1.41 --- show.epp 16 Jan 2006 16:47:37 -0000 1.40 +++ show.epp 26 Jan 2006 08:00:41 -0000 1.41 @@ -1900,8 +1900,7 @@ printf(" %s\n", Y.RDB$FIELD_NAME); END_FOR; -#ifdef PC_ENGINE -/*** + if (!X.RDB$EXPRESSION_SOURCE.NULL) show_text_blob(database, "\t ", 0, &X.RDB$EXPRESSION_SOURCE, 0, NULL, true); else if (!X.RDB$EXPRESSION_BLR.NULL) @@ -1909,8 +1908,7 @@ ERRQ_msg_put (485, NULL, NULL, NULL, NULL, NULL); display_blr(database, &X.RDB$EXPRESSION_BLR); } -***/ -#endif + END_FOR; } else { |