send same comment to sensors by pattern
[zc] / fdw_file_offset.sql
1 -- CREATE EXTENSION file_fdw;
2
3 -- CREATE SERVER sub FOREIGN DATA WRAPPER file_fdw;
4
5 CREATE FOREIGN TABLE off (
6         pn bigint,
7         x float,
8         y float
9 )
10 SERVER sub
11 OPTIONS ( filename '/home/dpavlin/zc/gnuplot/offset.txt', format 'csv', delimiter ' ' );