Skip to content

Commit

Permalink
Bump version to v0.0.2 (#47)
Browse files Browse the repository at this point in the history
Signed-off-by: Lloyd-Pottiger <[email protected]>
  • Loading branch information
Lloyd-Pottiger authored Aug 14, 2023
1 parent 0952376 commit 404bcee
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@ All DDL which will change the schema of table are supported (except index relate
> **Note**
> 1. Snowflake does not support partition table, tidb2dw will view table with multiple partitions as ordinary table.
> 2. Snowflake has a lot of limitations on modifying column type, like Snowflake does not support update column default value, refer to [Snowflake Docs](https://docs.snowflake.com/en/sql-reference/sql/alter-table-column).
> 3. The type mapping from TiDB to Snowflake is defined [here](./snowsql/types.go).
> 3. The type mapping from TiDB to Snowflake is defined [here](./pkg/snowsql/types.go).
> 4. Should execute at least one DML before DDL or will report error.
6 changes: 5 additions & 1 deletion changefeed.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ memory-quota = 4294967296
case-sensitive = true

# 是否输出 old value,从 v4.0.5 开始支持,从 v5.0 开始默认为 true
enable-old-value = true
enable-old-value = false

# 是否开启 Syncpoint 功能,从 v6.3.0 开始支持,该功能默认关闭。
# 从 v6.4.0 开始,使用 Syncpoint 功能需要同步任务拥有下游集群的 SYSTEM_VARIABLES_ADMIN 或者 SUPER 权限。
Expand Down Expand Up @@ -104,3 +104,7 @@ include-commit-ts = true
integrity-check-level = "none"
# 当单行数据的 Checksum 校验失败时,Changefeed 打印错误行数据相关日志的级别。默认值为 "warn",可选值为 "warn" 和 "error"。
corruption-handle-level = "warn"

[sink.cloud-storage-config]
# 是否在 DDL JSON 文件中包含 column-id。默认值为 false。
output-column-id = true
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var (
// TiDB2DWVerMinor is the minor version of TiDB2DW
TiDB2DWVerMinor = 0
// TiDB2DWVerPatch is the patch version of TiDB2DW
TiDB2DWVerPatch = 1
TiDB2DWVerPatch = 2
// TiDB2DWVerName is an alternative name of the version
TiDB2DWVerName = "TiDB2DW"
// GitHash is the current git commit hash
Expand Down

0 comments on commit 404bcee

Please sign in to comment.