Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge to Official #8

Open
wants to merge 49 commits into
base: master-dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
0920795
Merge branch 'master-dev'
aiwhj Feb 16, 2019
bf88e0b
update README
aiwhj Feb 16, 2019
2c64018
update README
aiwhj Mar 12, 2019
28a6f21
php 5.4 suppert
aiwhj Mar 15, 2019
b22330a
test dont send the report
aiwhj Mar 20, 2019
7fbacaf
include clickhouse-cpp lib
aiwhj Mar 21, 2019
ed5690a
update README
aiwhj Mar 21, 2019
962f296
add package.xml
Neeke Mar 26, 2019
dd1eaa9
update config.m4
aiwhj Mar 27, 2019
5638c99
code reformat & update package.xml
Neeke Mar 28, 2019
222dc13
suppert tuple select
aiwhj Apr 24, 2019
fe089ab
PHP 7.4 support
wujunze May 28, 2019
b6abacf
Fixed tuple select method aways use the first line
aiwhj Jun 5, 2019
3ac4381
Merge pull request #2 from SeasX/bugfix-php74-support
aiwhj Jun 6, 2019
2c89fab
suppert tuple insert
aiwhj Jun 24, 2019
6e017fd
add swoole coroutine support
amuluowin Nov 14, 2019
8992baf
use official library then add decimal support
amuluowin Nov 18, 2019
9be7c15
update file
amuluowin Nov 18, 2019
e4ad515
add files
amuluowin Nov 18, 2019
c3ef85c
remove hook,this feature move to swoole-coroutine branch
amuluowin Nov 18, 2019
7ae9a99
fix swoole support
amuluowin Nov 20, 2019
84552c7
Merge branch 'swoole-coroutine'
amuluowin Nov 20, 2019
9b959e2
remove unuse code support php 7.4
amuluowin Dec 6, 2019
c79672d
use async socket
amuluowin Dec 10, 2019
1e01ea4
remove dep
amuluowin Jul 20, 2020
0d5ceb7
add git modules
amuluowin Jul 20, 2020
e57dfdc
update child module to 1.2.0
amuluowin Jul 21, 2020
525438b
update child module to 1.2.0
amuluowin Jul 21, 2020
df87dd0
update child module
amuluowin Jul 21, 2020
ccb1d34
update child module
amuluowin Jul 21, 2020
722b21f
update child module
amuluowin Jul 21, 2020
66804d2
fix ipv4 and ipv6 type
amuluowin Aug 19, 2020
be1a1fc
fix ipv6 type, only support string
amuluowin Aug 20, 2020
c6f89e1
support string type value to insert Date & DateTime
amuluowin Aug 20, 2020
4c235cd
add try & catch
amuluowin Aug 20, 2020
45aa010
default use swoole, bug it take effect when the swoole is installed b…
amuluowin Aug 20, 2020
d0005d8
update submodule
amuluowin Aug 20, 2020
ffb6aa4
remove lib
amuluowin Aug 20, 2020
15faeb1
add lib
amuluowin Aug 20, 2020
9218027
update submodule
amuluowin Aug 21, 2020
db9f411
support segmented insert
amuluowin Sep 9, 2020
e2ffabb
changed func name
amuluowin Sep 9, 2020
8007818
merge lib clickhouse
amuluowin Sep 9, 2020
bd35208
add query block map
amuluowin Sep 9, 2020
a61c799
update lib
amuluowin Sep 19, 2020
86bc354
fix hook file name
amuluowin Oct 14, 2020
63ce4dc
merge from offical
amuluowin Oct 14, 2020
a450246
support php8.0
amuluowin Nov 28, 2020
9f29bdc
fix missing arginfo warning
amuluowin Nov 28, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[submodule "lib/clickhouse-cpp"]
path = lib/clickhouse-cpp
url = https://github.com/aiwhj/clickhouse-cpp.git
url = https://github.com/amuluowin/clickhouse-cpp.git
branch = master
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ compiler:
os:
- linux

env:
- REPORT_EXIT_STATUS=1 NO_INTERACTION=1

services:
- docker

Expand All @@ -16,6 +19,7 @@ addons:
- clickhouse

php:
- 5.4
- 5.5
- 5.6
- 7.0
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ PHP client for [Yandex ClickHouse](https://clickhouse.yandex/),Based on [Click
**Multidimensional arrays are not supported at this time**
* Date
* DateTime
* Decimal32, Decimal64, Decimal128
* Enum8, Enum16
* FixedString(N)
* Float32, Float64
Expand All @@ -23,7 +24,7 @@ PHP client for [Yandex ClickHouse](https://clickhouse.yandex/),Based on [Click
* UInt8, UInt16, UInt32, UInt64, Int8, Int16, Int32, Int64

## Supported PHP version
PHP 5.5+
PHP 5.4+

## Performance
![image](https://github.com/SeasX/SeasClick/raw/master/tests/bench_mark/bench_mark.png)
Expand All @@ -33,8 +34,6 @@ This performance test [demo](https://github.com/SeasX/SeasClick/blob/master/test
## Install
```ssh
git clone https://github.com/SeasX/SeasClick.git
git submodule init
git submodule update
cd SeasClick
phpize
./configure
Expand Down Expand Up @@ -86,7 +85,7 @@ function testArray($client, $deleteTable = false) {
}
}
```
#### [More examples](https://github.com/SeasX/SeasClick/tests/test.php)
#### [More examples](https://github.com/SeasX/SeasClick/blob/master/tests/test.php)

## Support
SeasX Group
Loading