Skip to content

Commit

Permalink
replace FOREVER with a valid value in table creation (#1967)
Browse files Browse the repository at this point in the history
Co-authored-by: Ion DULGHERU <[email protected]>
  • Loading branch information
johann8384 and iondulgheru authored Jun 12, 2020
1 parent 1a69fe9 commit 57399bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/create_table.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 57399bf

Please sign in to comment.