1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Gene Selkov's SEG datatype (GiST example code)

This commit is contained in:
Tom Lane
2000-12-11 20:40:33 +00:00
parent 9892ddf5ee
commit a3694b420f
14 changed files with 6076 additions and 0 deletions

8
contrib/seg/segdata.h Normal file
View File

@ -0,0 +1,8 @@
typedef struct SEG {
float lower;
float upper;
char l_sigd;
char u_sigd;
char l_ext;
char u_ext;
} SEG;