Skip to content

Commit 5d9f23c

Browse files
committed
git auto commit at Thu Aug 13 07:40:49 CST 2020
1 parent 8a16122 commit 5d9f23c

2 files changed

Lines changed: 25 additions & 4 deletions

File tree

ClickSQL/core/clickhouse.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,11 @@ def _create_table_from_df(cls, db: str, table: str, df: pd.DataFrame, key_cols:
177177
query_func(base)
178178
return exist_status
179179

180+
@classmethod
181+
def _check_table_exists(cls, obj, db, table):
182+
## todo check the table exists
183+
pass
184+
180185

181186
class ClickHouseTools(ClickHouseCreateTableTools):
182187

README.md

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
1-
# ClickSQL
1+
# ClickSQL: ClickHouse client for Humans
22

3-
ClickSQL is a smart client for clickhouse database, which may help clickhouse users to use clickhouse more easier and smoother.
4-
it aim to make the clickhouse to be the good alternative Relational Database of MySQL.
53

6-
more information for clickhouse can be found at [here](http://clickhouse.tech)
4+
5+
Package information:
6+
7+
Records is a very simple, but powerful, library for making raw SQL queries to most relational databases.
8+
9+
ClickSQL is a smart client for ClickHouse database, which may help users to use ClickHouse more easier and smoother.
10+
11+
12+
more information for ClickHouse can be found at [here](http://clickhouse.tech)
13+
14+
15+
16+
## Installation
17+
18+
`pip install ClickSQL`
19+
20+
## Usage
21+
22+
````
723

0 commit comments

Comments
 (0)