Skip to content

Commit 59c05ad

Browse files
committed
micro-fixes
1 parent 64198f7 commit 59c05ad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ send queries to ClickHouse server and parsing answering data.
2828
* **queryValue**($sql, [post]) - Send query and receive data in one string (false if error)
2929
* **queryArray**($sql) - for queries returning multi-rows data
3030
* **queryKeyValues**(see descr.) - for queries returning 2 columns key => value
31-
* **queryInsertArray**($table, $fields_names, $fields_set) - insert data into table
31+
* **queryInsertArray**($table, $fields_names, $fields_set) - insert data into table from array
3232
* **queryInsertFile**($table, $file, $structure) - insert data from file into table
3333

3434
### Class **ClickHouseFunctions**

src/ClickHouseFunctions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,9 +321,9 @@ public function parseFieldsArr($fields_arr)
321321
}
322322
}
323323

324-
// make $type_full, $default, $create strings from $create array
324+
// make type_full, default, create strings from $create array
325325
$type_full = $type_src = $create[0];
326-
// make $type_full, $type_name, $to_conv, $bytes (from $type_full)
326+
// make type_full, type_name, to_conv, bytes (from type_full)
327327
$type_name = $to_conv = null;
328328
$bytes = $this->parseType($type_full, $type_name, $to_conv);
329329
if ($bytes === false) {

0 commit comments

Comments
 (0)