Provides write and scan functions for Vortex files
Installing and Loading
INSTALL vortex FROM community;
LOAD vortex;
Example
-- Write a Vortex file:
COPY (SELECT * from generate_series(0, 4)) TO 'FILENAME.vortex' (FORMAT vortex);
-- Scan a Vortex file:
SELECT * FROM read_vortex('...');
Added Functions
| function_name | function_type | description | comment | examples |
|---|---|---|---|---|
| read_vortex | table | NULL | NULL | |
| vortex_scan | table | NULL | NULL |