Skip to content

Commit

Permalink
Changes writetime/ttl auto flag default to false
Browse files Browse the repository at this point in the history
  • Loading branch information
arvydasj committed Dec 15, 2023
1 parent 81869b2 commit f57479f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ public enum PropertyType {
required.add(ORIGIN_KEYSPACE_TABLE);
types.put(ORIGIN_TTL_NAMES, PropertyType.STRING_LIST);
types.put(ORIGIN_TTL_AUTO, PropertyType.BOOLEAN);
defaults.put(ORIGIN_TTL_AUTO, "true");
defaults.put(ORIGIN_TTL_AUTO, "false");
types.put(ORIGIN_WRITETIME_NAMES, PropertyType.STRING_LIST);
types.put(ORIGIN_WRITETIME_AUTO, PropertyType.BOOLEAN);
defaults.put(ORIGIN_WRITETIME_AUTO, "true");
defaults.put(ORIGIN_WRITETIME_AUTO, "false");
types.put(ORIGIN_COLUMN_NAMES_TO_TARGET, PropertyType.STRING_LIST);
}

Expand Down

0 comments on commit f57479f

Please sign in to comment.