Add changes to Partition Key A/B Test (#954)

This commit is contained in:
t-tarabhatia
2021-07-29 06:48:03 -07:00
committed by GitHub
parent a66fc06dad
commit 7e0c4b7290
4 changed files with 23 additions and 5 deletions

View File

@@ -10,6 +10,7 @@ export type Features = {
readonly enableSchema: boolean;
autoscaleDefault: boolean;
partitionKeyDefault: boolean;
partitionKeyDefault2: boolean;
readonly enableSDKoperations: boolean;
readonly enableSpark: boolean;
readonly enableTtl: boolean;
@@ -72,5 +73,6 @@ export function extractFeatures(given = new URLSearchParams(window.location.sear
ttl90Days: "true" === get("ttl90days"),
autoscaleDefault: "true" === get("autoscaledefault"),
partitionKeyDefault: "true" === get("partitionkeytest"),
partitionKeyDefault2: "true" === get("pkpartitionkeytest"),
};
}