Skip to content

Commit

Permalink
Use small int
Browse files Browse the repository at this point in the history
  • Loading branch information
mhutchinson committed Dec 9, 2024
1 parent d6923ec commit 99959da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/mysql/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ CREATE TABLE IF NOT EXISTS `Subtree` (
CREATE TABLE IF NOT EXISTS `TiledLeaves` (
`tile_index` BIGINT UNSIGNED NOT NULL,
-- size is the number of entries serialized into this leaf bundle.
`size` INT UNSIGNED NOT NULL,
`size` SMALLINT UNSIGNED NOT NULL,
`data` LONGBLOB NOT NULL,
PRIMARY KEY(`tile_index`)
);

0 comments on commit 99959da

Please sign in to comment.