File size: 229 Bytes
13812dc
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
CREATE TABLE links AS
SELECT
    type,
    source::BIGINT AS source,
    target::BIGINT AS target
FROM read_csv_auto(?, delim='\t', header=false, columns={
    'type': 'VARCHAR',
    'source': 'BIGINT',
    'target': 'BIGINT'
})