/ Allocate JSN column description block. */ /
| 895 | /* Allocate JSN column description block. */ |
| 896 | /***********************************************************************/ |
| 897 | PCOL TDBJSN::MakeCol(PGLOBAL g, PCOLDEF cdp, PCOL cprec, int n) |
| 898 | { |
| 899 | PJCOL colp = new(g) JSONCOL(g, cdp, this, cprec, n); |
| 900 | |
| 901 | return (colp->ParseJpath(g)) ? NULL : colp; |
| 902 | } // end of MakeCol |
| 903 | |
| 904 | /***********************************************************************/ |
| 905 | /* InsertSpecialColumn: Put a special column ahead of the column list.*/ |
nothing calls this directly
no test coverage detected