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

SQL Server

开发平台:

Unix_Linux

  1. /* 
  2.  *  type.h - contains data types shared by plan generator and interpretator
  3.  *           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 Konstantin Dyshlevoj 
  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: type.h,v 1.245 1997/03/31 03:46:38 kml Exp $ */
  29. #ifndef __TYPE_H__
  30. #define __TYPE_H__
  31. #include "engine/rnmtp.h" 
  32. /* the following 3 declarations are used for debugging only */
  33. typedef u2_t   Segid;
  34. typedef i4_t    Tid;
  35. typedef i4_t    Unid;
  36. typedef  struct {
  37.   /* untabid - the 1st element of structure  */
  38. Unid  untabid;/* unique identifier of relation  */
  39. Segid segid;  /* segment identifier in wich     */
  40.       /* table is located               */
  41. Tid   tabd;   /* tid of table   descriptor      */
  42.                               /* in table-catalog of given      */
  43.       /* segment                        */
  44.        }   Tabid     ;
  45. typedef  struct {
  46. Tabid tabid;    /* table identifier             */
  47. Unid  unindid;  /* indexe number                */
  48.       }      Indid ;
  49. typedef   i4_t   Filid ;
  50. typedef   i4_t   Scanid ;
  51. #endif