ClickHouse / ClickHouse/clickhouse-fiddle

Change default table engine to MergeTree

Open
#79 2 comments 1 reaction 2 assignees Claimed by @nikitamikhaylov View on GitHub
Dominant language
Go
Stars
74
Forks
12
Avg merge
5h 52m
Merged PRs (30d)
16

Description

In 99% of all cases, I find myself changing the table engine in the default SQL from

```sql
CREATE TABLE users (uid Int16, name String, age Int16) ENGINE=Memory;
```

to

```sql
CREATE TABLE users (uid Int16, name String, age Int16) ENGINE=MergeTree ORDER BY uid;
```

Could it be MergeTree out of the box?

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.