sp_defs.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & Ramil Kalimullin & MySQL Finland AB 
  2.    & TCX DataKonsult AB
  3.    
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2 of the License, or
  7.    (at your option) any later version.
  8.    
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.    
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  17. #ifndef _SP_DEFS_H
  18. #define _SP_DEFS_H
  19. #define SPDIMS 2
  20. #define SPTYPE HA_KEYTYPE_DOUBLE
  21. #define SPLEN  8
  22. #ifdef HAVE_SPATIAL
  23. enum wkbType
  24. {
  25.   wkbPoint = 1,
  26.   wkbLineString = 2,
  27.   wkbPolygon = 3,
  28.   wkbMultiPoint = 4,
  29.   wkbMultiLineString = 5,
  30.   wkbMultiPolygon = 6,
  31.   wkbGeometryCollection = 7
  32. };
  33. enum wkbByteOrder
  34. {
  35.   wkbXDR = 0,    /* Big Endian    */
  36.   wkbNDR = 1     /* Little Endian */
  37. };                                    
  38. uint sp_make_key(register MI_INFO *info, uint keynr, uchar *key,
  39.                  const byte *record, my_off_t filepos);
  40. #endif /*HAVE_SPATIAL*/
  41. #endif /* _SP_DEFS_H */