Skip to content

Commit ad85d5b

Browse files
committed
int_ -> int64
1 parent 9e94e4d commit ad85d5b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

data/app.d/tables.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44

55
trades = ck.consume({'bootstrap.servers': 'redpanda:29092'} , 'Trade', key_spec=KeyValueSpec.IGNORE, value_spec=ck.json_spec([
66
('Symbol', dht.string),
7-
('Sequence', dht.int_),
7+
('Sequence', dht.int64),
88
('Price', dht.double),
99
('ExchangeCode', dht.string),
10-
('Size', dht.int_),
11-
('Tick', dht.int_),
10+
('Size', dht.int64),
11+
('Tick', dht.int64),
1212
('Change', dht.double),
13-
('DayVolume', dht.int_),
14-
('DayTurnover', dht.int_),
15-
('Direction', dht.int_),
13+
('DayVolume', dht.int64),
14+
('DayTurnover', dht.int64),
15+
('Direction', dht.int64),
1616
('Timestamp', dht.Instant),
17-
('RawFlags', dht.int_),
18-
('IsETH', dht.int_),
19-
('Scope', dht.int_)
17+
('RawFlags', dht.int64),
18+
('IsETH', dht.int64),
19+
('Scope', dht.int64)
2020
]),table_type = TableType.append()).sort_descending(["KafkaOffset"])
2121

2222
quotes = ck.consume({'bootstrap.servers': 'redpanda:29092'} , 'Quote', key_spec=KeyValueSpec.IGNORE, value_spec=ck.json_spec([

0 commit comments

Comments
 (0)