@@ -48,7 +48,7 @@ class ExecContext;
4848class ARROW_EXPORT ScalarAggregateOptions : public FunctionOptions {
4949 public:
5050 explicit ScalarAggregateOptions (bool skip_nulls = true , uint32_t min_count = 1 );
51- static constexpr char const kTypeName [] = " ScalarAggregateOptions" ;
51+ static constexpr const char kTypeName [] = " ScalarAggregateOptions" ;
5252 static ScalarAggregateOptions Defaults () { return ScalarAggregateOptions{}; }
5353
5454 // / If true (the default), null values are ignored. Otherwise, if any value is null,
@@ -72,7 +72,7 @@ class ARROW_EXPORT CountOptions : public FunctionOptions {
7272 ALL,
7373 };
7474 explicit CountOptions (CountMode mode = CountMode::ONLY_VALID);
75- static constexpr char const kTypeName [] = " CountOptions" ;
75+ static constexpr const char kTypeName [] = " CountOptions" ;
7676 static CountOptions Defaults () { return CountOptions{}; }
7777
7878 CountMode mode;
@@ -85,7 +85,7 @@ class ARROW_EXPORT CountOptions : public FunctionOptions {
8585class ARROW_EXPORT ModeOptions : public FunctionOptions {
8686 public:
8787 explicit ModeOptions (int64_t n = 1 , bool skip_nulls = true , uint32_t min_count = 0 );
88- static constexpr char const kTypeName [] = " ModeOptions" ;
88+ static constexpr const char kTypeName [] = " ModeOptions" ;
8989 static ModeOptions Defaults () { return ModeOptions{}; }
9090
9191 int64_t n = 1 ;
@@ -103,7 +103,7 @@ class ARROW_EXPORT ModeOptions : public FunctionOptions {
103103class ARROW_EXPORT VarianceOptions : public FunctionOptions {
104104 public:
105105 explicit VarianceOptions (int ddof = 0 , bool skip_nulls = true , uint32_t min_count = 0 );
106- static constexpr char const kTypeName [] = " VarianceOptions" ;
106+ static constexpr const char kTypeName [] = " VarianceOptions" ;
107107 static VarianceOptions Defaults () { return VarianceOptions{}; }
108108
109109 int ddof = 0 ;
@@ -119,7 +119,7 @@ class ARROW_EXPORT SkewOptions : public FunctionOptions {
119119 public:
120120 explicit SkewOptions (bool skip_nulls = true , bool biased = true ,
121121 uint32_t min_count = 0 );
122- static constexpr char const kTypeName [] = " SkewOptions" ;
122+ static constexpr const char kTypeName [] = " SkewOptions" ;
123123 static SkewOptions Defaults () { return SkewOptions{}; }
124124
125125 // / If true (the default), null values are ignored. Otherwise, if any value is null,
@@ -154,7 +154,7 @@ class ARROW_EXPORT QuantileOptions : public FunctionOptions {
154154 enum Interpolation interpolation = LINEAR,
155155 bool skip_nulls = true , uint32_t min_count = 0 );
156156
157- static constexpr char const kTypeName [] = " QuantileOptions" ;
157+ static constexpr const char kTypeName [] = " QuantileOptions" ;
158158 static QuantileOptions Defaults () { return QuantileOptions{}; }
159159
160160 // / probability level of quantile must be between 0 and 1 inclusive
@@ -178,7 +178,7 @@ class ARROW_EXPORT TDigestOptions : public FunctionOptions {
178178 explicit TDigestOptions (std::vector<double > q, uint32_t delta = 100 ,
179179 uint32_t buffer_size = 500 , bool skip_nulls = true ,
180180 uint32_t min_count = 0 );
181- static constexpr char const kTypeName [] = " TDigestOptions" ;
181+ static constexpr const char kTypeName [] = " TDigestOptions" ;
182182 static TDigestOptions Defaults () { return TDigestOptions{}; }
183183
184184 // / probability level of quantile must be between 0 and 1 inclusive
@@ -268,7 +268,7 @@ class ARROW_EXPORT PivotWiderOptions : public FunctionOptions {
268268 UnexpectedKeyBehavior unexpected_key_behavior = kIgnore );
269269 // Default constructor for serialization
270270 PivotWiderOptions ();
271- static constexpr char const kTypeName [] = " PivotWiderOptions" ;
271+ static constexpr const char kTypeName [] = " PivotWiderOptions" ;
272272 static PivotWiderOptions Defaults () { return PivotWiderOptions{}; }
273273
274274 // / The values expected in the pivot key column
@@ -283,7 +283,7 @@ class ARROW_EXPORT IndexOptions : public FunctionOptions {
283283 explicit IndexOptions (std::shared_ptr<Scalar> value);
284284 // Default constructor for serialization
285285 IndexOptions ();
286- static constexpr char const kTypeName [] = " IndexOptions" ;
286+ static constexpr const char kTypeName [] = " IndexOptions" ;
287287
288288 std::shared_ptr<Scalar> value;
289289};
0 commit comments