Skip to content

Commit 9180dd0

Browse files
committed
Make origion TTL and Writetime auto values as false
1 parent 23de805 commit 9180dd0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/datastax/cdm/properties/KnownProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ public enum PropertyType {
8585
required.add(ORIGIN_KEYSPACE_TABLE);
8686
types.put(ORIGIN_TTL_NAMES, PropertyType.STRING_LIST);
8787
types.put(ORIGIN_TTL_AUTO, PropertyType.BOOLEAN);
88-
defaults.put(ORIGIN_TTL_AUTO, "true");
88+
defaults.put(ORIGIN_TTL_AUTO, "false");
8989
types.put(ORIGIN_WRITETIME_NAMES, PropertyType.STRING_LIST);
9090
types.put(ORIGIN_WRITETIME_AUTO, PropertyType.BOOLEAN);
91-
defaults.put(ORIGIN_WRITETIME_AUTO, "true");
91+
defaults.put(ORIGIN_WRITETIME_AUTO, "false");
9292
types.put(ORIGIN_COLUMN_NAMES_TO_TARGET, PropertyType.STRING_LIST);
9393
}
9494

0 commit comments

Comments
 (0)