2020-04-30 15:29:43 +00:00
|
|
|
# This file defines feature flags.
|
|
|
|
#
|
|
|
|
# It is used for code generation in the ./kit/feature package.
|
|
|
|
# If you change this file, run `make flags` to regenerate.
|
|
|
|
#
|
|
|
|
# Format details:
|
|
|
|
#
|
|
|
|
# - name: Human-readable name
|
|
|
|
# description: Human-readable description
|
|
|
|
# key: Programmatic name
|
|
|
|
# default: Used when unable to reach server and to infer flag type
|
|
|
|
# contact: Contact for information or issues regarding the flag
|
|
|
|
# lifetime: Expected lifetime of the flag; temporary or permanent, default temporary
|
|
|
|
# expose: Boolean indicating whether the flag should be exposed to callers; default false
|
|
|
|
|
|
|
|
- name: Backend Example
|
|
|
|
description: A permanent backend example boolean flag
|
|
|
|
key: backendExample
|
|
|
|
default: false
|
|
|
|
contact: Gavin Cabbage
|
|
|
|
lifetime: permanent
|
|
|
|
|
|
|
|
- name: Frontend Example
|
|
|
|
description: A temporary frontend example integer flag
|
|
|
|
key: frontendExample
|
|
|
|
default: 42
|
|
|
|
contact: Gavin Cabbage
|
|
|
|
expose: true
|
2020-05-06 07:27:17 +00:00
|
|
|
|
|
|
|
- name: Push Down Window Aggregate Count
|
2020-05-22 06:03:09 +00:00
|
|
|
description: Enable Count variant of PushDownWindowAggregateRule and PushDownBareAggregateRule
|
2020-05-06 07:27:17 +00:00
|
|
|
key: pushDownWindowAggregateCount
|
|
|
|
default: false
|
|
|
|
contact: Query Team
|
|
|
|
|
|
|
|
- name: Push Down Window Aggregate Rest
|
2020-05-22 06:03:09 +00:00
|
|
|
description: Enable non-Count variants of PushDownWindowAggregateRule and PushDownWindowAggregateRule (stage 2)
|
2020-05-06 07:27:17 +00:00
|
|
|
key: pushDownWindowAggregateRest
|
|
|
|
default: false
|
|
|
|
contact: Query Team
|
2020-05-12 18:18:25 +00:00
|
|
|
|
2020-05-08 17:00:39 +00:00
|
|
|
- name: New Auth Package
|
|
|
|
description: Enables the refactored authorization api
|
|
|
|
key: newAuth
|
|
|
|
default: false
|
|
|
|
contact: Alirie Gray
|
|
|
|
lifetime: temporary
|
2020-05-18 17:50:22 +00:00
|
|
|
|
|
|
|
- name: Session Service
|
|
|
|
description: A temporary switching system for the new session system
|
|
|
|
key: sessionService
|
|
|
|
default: false
|
|
|
|
contact: Lyon Hill
|
|
|
|
expose: true
|
2020-05-20 13:57:16 +00:00
|
|
|
|
|
|
|
- name: Push Down Group Aggregate Count
|
|
|
|
description: Enable the count variant of PushDownGroupAggregate planner rule
|
|
|
|
key: pushDownGroupAggregateCount
|
|
|
|
default: false
|
|
|
|
contact: Query Team
|