proind.c
上传用户:dgyhgb
上传日期:2007-01-07
资源大小:676k
文件大小:2k
源码类别:

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  proind.c  -  Processing of all DB table indexes in the time of an insertion, a deletion or a modification
  3.  *               Kernel of GNU SQL-server 
  4.  *
  5.  *  This file is a part of GNU SQL Server
  6.  *
  7.  *  Copyright (c) 1996, 1997, Free Software Foundation, Inc
  8.  *  Developed at the Institute of System Programming
  9.  *  This file is written by  Vera Ponomarenko
  10.  *
  11.  *  This program is free software; you can redistribute it and/or modify
  12.  *  it under the terms of the GNU General Public License as published by
  13.  *  the Free Software Foundation; either version 2 of the License, or
  14.  *  (at your option) any later version.
  15.  *
  16.  *  This program is distributed in the hope that it will be useful,
  17.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  *  GNU General Public License for more details.
  20.  *
  21.  *  You should have received a copy of the GNU General Public License
  22.  *  along with this program; if not, write to the Free Software
  23.  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  24.  *
  25.  *  Contacts:   gss@ispras.ru
  26.  *
  27.  */
  28. /* $Id: proind.c,v 1.246 1997/03/31 11:04:21 kml Exp $ */
  29. #include "destrn.h"
  30. #include "strml.h"
  31. #include "fdcltrn.h"
  32. u2_t
  33. proind (i4_t (*f) (), struct d_r_t *desrel, u2_t cinum, char *cort, struct des_tid *tid)
  34. {
  35.   u2_t n, fdf;
  36.   struct ldesind *desind;
  37.   char a[BD_PAGESIZE];
  38.   desind = desrel->pid;
  39.   fdf = desrel->desrbd.fdfnum;
  40.   for (n = 0; desind != NULL && n != cinum; desind = desind->listind, n++)
  41.     {
  42.       keyform (desind, fdf, a, cort);
  43.       if ((*f) (desind, a, tid) != OK)
  44. return (n);
  45.     }
  46.   return (n);
  47. }
  48. u2_t
  49. mproind (struct d_r_t *desrel, u2_t cinum, char *cort, char *newc, struct des_tid *tid)
  50. {
  51.   u2_t n, k;
  52.   struct ldesind *desind;
  53.   char a[BD_PAGESIZE];
  54.   desind = desrel->pid;
  55.   k = desrel->desrbd.fdfnum;
  56.   for (n = 0; desind != NULL && n != cinum; desind = desind->listind, n++)
  57.     {
  58.       keyform (desind, k, a, cort);
  59.       ordindd (desind, a, tid);
  60.       keyform (desind, k, a, newc);
  61.       if (ordindi (desind, a, tid) != OK)
  62. return (n);
  63.     }
  64.   return (n);
  65. }