/ Allocate JSN column description block. */ /
| 1433 | /* Allocate JSN column description block. */ |
| 1434 | /***********************************************************************/ |
| 1435 | PCOL TDBBSN::MakeCol(PGLOBAL g, PCOLDEF cdp, PCOL cprec, int n) |
| 1436 | { |
| 1437 | PBSCOL colp = new(g) BSONCOL(g, cdp, this, cprec, n); |
| 1438 | |
| 1439 | return (colp->ParseJpath(g)) ? NULL : colp; |
| 1440 | } // end of MakeCol |
| 1441 | |
| 1442 | /***********************************************************************/ |
| 1443 | /* InsertSpecialColumn: Put a special column ahead of the column list.*/ |
nothing calls this directly
no test coverage detected