Guest User

Untitled

a guest
Aug 16th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. Datum
  2. sub_fp_compress(PG_FUNCTION_ARGS)
  3. {
  4. GISTENTRY *entry = (GISTENTRY *)PG_GETARG_POINTER(0);
  5. // Column and Storage data types are the same (bytea)
  6. // so no compression is required.
  7. GISTENTRY *retval = entry;
  8.  
  9. PG_RETURN_POINTER(retval);
  10. }
Add Comment
Please, Sign In to add comment