Skip to content

Commit

Permalink
Fixed syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
qvad committed Apr 12, 2024
1 parent d26ade0 commit be52073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yugabyte/src/yugabyte/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@
(defn test-3
"Final phase where we define global cluster configuration parameters"
[opts]
(let [packed-columns-enabled ((v/newer-or-equal? (:version test) minimal-packed-version) and (> (rand) 0.5))
(let [packed-columns-enabled (and (v/newer-or-equal? (:version test) minimal-packed-version) (> (rand) 0.5))
colocated (and (not (utils/is-test-geo-partitioned? opts)) (> (rand) 0.5))]
(assoc opts :yb-packed-columns-enabled packed-columns-enabled :yb-colocated colocated))
())
Expand Down

0 comments on commit be52073

Please sign in to comment.