From 57399bf64d15b5e37bb48be9a65f4edc20bf1833 Mon Sep 17 00:00:00 2001 From: Jonathan Creasy Date: Fri, 12 Jun 2020 15:22:20 -0400 Subject: [PATCH] replace FOREVER with a valid value in table creation (#1967) Co-authored-by: Ion DULGHERU --- src/create_table.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/create_table.sh b/src/create_table.sh index 1cbe666319..917a4ff3de 100755 --- a/src/create_table.sh +++ b/src/create_table.sh @@ -23,7 +23,7 @@ COMPRESSION=`echo "$COMPRESSION" | tr a-z A-Z` # This can save a lot of storage space. DATA_BLOCK_ENCODING=${DATA_BLOCK_ENCODING-'DIFF'} DATA_BLOCK_ENCODING=`echo "$DATA_BLOCK_ENCODING" | tr a-z A-Z` -TSDB_TTL=${TSDB_TTL-'FOREVER'} +TSDB_TTL=${TSDB_TTL-'2147483647'} case $COMPRESSION in (NONE|LZO|GZIP|SNAPPY) :;; # Known good.