blob: 09191063f2af484bcf21f5f4cb4c2e5a36cf3810 [file] [log] [blame]
DROP EXTERNAL TABLE IF EXISTS tbl_ext_fixedwidth;
CREATE READABLE EXTERNAL TABLE tbl_ext_fixedwidth (
s1 char(10), s2 varchar(10), s3 text, dt timestamp,
n1 smallint, n2 integer, n3 bigint, n4 decimal,
n5 numeric, n6 real, n7 double precision)
LOCATION (
'file://@hostname@@abs_srcdir@/data/fixedwidth_small_correct.tbl'
)
FORMAT 'CUSTOM' (formatter='fixedwidth_in',
s1=1:10, dt=31:50, n4=76:85, n7=106:120);
ERROR: syntax error at or near ":"
LINE 9: s1=1:10, dt=31:50, n4=76:85, n7=106:120);
^