Re: [HACKERS] problem with realizing gist index

2009-12-31 Thread Nicolas Barbier
2009/12/31 Sergej Galkin : > typedef struct moving_object > { >     double x_high; >     double y_high; >     double x_low; >     double y_low; >     time_t mov_time; >     double x_plus; >     double y_plus; >     double x_minus; >     double y_minus; > } moving_object; [..] > #define DatumGetM

[HACKERS] problem with realizing gist index

2009-12-31 Thread Sergej Galkin
Hello all, I'm creating gist index for testing purpuses :) I created index element structure: typedef struct moving_object { double x_high; double y_high; double x_low; double y_low; time_t mov_time; double x_plus; double y_plus; double x_minus; double y_minus;