blob: 77b782cd2410aa4f5f6a877275069a4c290e075c [file] [log] [blame]
--! qt:dataset:src
-- was negative/ambiguous_table_col.q
drop table ambiguous;
create table ambiguous (key string, value string);
FROM src key
INSERT OVERWRITE TABLE ambiguous SELECT key.key, key.value WHERE key.value < 'val_100';
drop table ambiguous;