-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add map_string_as_varchar session property in ClickHouse
- Loading branch information
Showing
5 changed files
with
141 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
...rino-clickhouse/src/main/java/io/trino/plugin/clickhouse/ClickHouseSessionProperties.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.trino.plugin.clickhouse; | ||
|
||
import com.google.common.collect.ImmutableList; | ||
import io.trino.plugin.base.session.SessionPropertiesProvider; | ||
import io.trino.spi.connector.ConnectorSession; | ||
import io.trino.spi.session.PropertyMetadata; | ||
|
||
import javax.inject.Inject; | ||
|
||
import java.util.List; | ||
|
||
import static io.trino.spi.session.PropertyMetadata.booleanProperty; | ||
|
||
public class ClickHouseSessionProperties | ||
implements SessionPropertiesProvider | ||
{ | ||
public static final String MAP_STRING_AS_VARCHAR = "map_string_as_varchar"; | ||
|
||
private final List<PropertyMetadata<?>> sessionProperties; | ||
|
||
@Inject | ||
public ClickHouseSessionProperties(ClickHouseConfig clickHouseConfig) | ||
{ | ||
sessionProperties = ImmutableList.of( | ||
booleanProperty( | ||
MAP_STRING_AS_VARCHAR, | ||
"Map ClickHouse String and FixedString as varchar instead of varbinary", | ||
clickHouseConfig.isMapStringAsVarchar(), | ||
false)); | ||
} | ||
|
||
@Override | ||
public List<PropertyMetadata<?>> getSessionProperties() | ||
{ | ||
return sessionProperties; | ||
} | ||
|
||
public static boolean isMapStringAsVarchar(ConnectorSession session) | ||
{ | ||
return session.getProperty(MAP_STRING_AS_VARCHAR, Boolean.class); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters