/ Set the max same values for each column after making the index. */ /
| 129 | /* Set the max same values for each column after making the index. */ |
| 130 | /***********************************************************************/ |
| 131 | void INDEXDEF::SetMxsame(PXINDEX x) |
| 132 | { |
| 133 | PKPDEF kdp; |
| 134 | PXCOL xcp; |
| 135 | |
| 136 | for (kdp = ToKeyParts, xcp = x->To_KeyCol; |
| 137 | kdp && xcp; kdp = kdp->Next, xcp = xcp->Next) |
| 138 | kdp->Mxsame = xcp->Mxs; |
| 139 | } // end of SetMxsame |
| 140 | |
| 141 | /* -------------------------- Class KPARTDEF ------------------------- */ |
| 142 |