Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.

Commit c70bd0a

Browse files
authored
Merge pull request #132 from ooobik/patch-1
Fix integer overflow in beacon_dataset_counts_table
2 parents 2026232 + 51afbbd commit c70bd0a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

data/init.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ variantcount: SELECT count(*) FROM beacon_data_table;
2929
CREATE TABLE IF NOT EXISTS beacon_dataset_counts_table (
3030
datasetId VARCHAR(128),
3131
callCount INTEGER DEFAULT NULL,
32-
variantCount INTEGER DEFAULT NULL
32+
variantCount BIGINT DEFAULT NULL
3333
);
3434

3535
CREATE TABLE IF NOT EXISTS beacon_data_table (

0 commit comments

Comments
 (0)