@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | |
| 48 | 48 | list($database, $table) = $this->getTableDatabase($table); |
| 49 | 49 | |
| 50 | - $idx = $hs->getIndexId($database, $table, $index, implode(',',$fields)); |
|
| 50 | + $idx = $hs->getIndexId($database, $table, $index, implode(',', $fields)); |
|
| 51 | 51 | $hs->select($idx, $operator, $condition); |
| 52 | 52 | $result = $hs->readResponse(); |
| 53 | 53 | |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | |
| 106 | 106 | $fields = array_keys($values); |
| 107 | 107 | |
| 108 | - $idx = $hs->getIndexId($database, $table, '', implode(',',$fields)); |
|
| 108 | + $idx = $hs->getIndexId($database, $table, '', implode(',', $fields)); |
|
| 109 | 109 | $hs->insert($idx, array_values($values)); |
| 110 | 110 | |
| 111 | 111 | $result = $hs->readResponse(); |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | { |
| 9 | 9 | $hs = new HSAL('localhost', 'hstest', HSAL::DRIVER_HSPHP); |
| 10 | 10 | |
| 11 | - $result = $hs->fetchArray('test', ['id','name','cnt'], [HSAL::INDEX_PRIMARY => 3]); |
|
| 11 | + $result = $hs->fetchArray('test', ['id', 'name', 'cnt'], [HSAL::INDEX_PRIMARY => 3]); |
|
| 12 | 12 | |
| 13 | 13 | $this->assertTrue(is_array($result)); |
| 14 | 14 | $this->assertEquals(3, count($result)); |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | { |
| 22 | 22 | $hs = new HSAL('localhost', 'hstest', HSAL::DRIVER_HSPHP); |
| 23 | 23 | |
| 24 | - $result = $hs->fetchAssoc('test', ['id','name','cnt'], [HSAL::INDEX_PRIMARY => 3]); |
|
| 24 | + $result = $hs->fetchAssoc('test', ['id', 'name', 'cnt'], [HSAL::INDEX_PRIMARY => 3]); |
|
| 25 | 25 | |
| 26 | 26 | $this->assertTrue(is_array($result)); |
| 27 | 27 | $this->assertEquals(3, count($result)); |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | { |
| 9 | 9 | $hs = new HSAL('localhost', 'hstest', HSAL::DRIVER_HANDLERSOCKETI); |
| 10 | 10 | |
| 11 | - $result = $hs->fetchArray('test2', ['id','name','cnt'], [HSAL::INDEX_PRIMARY => 3]); |
|
| 11 | + $result = $hs->fetchArray('test2', ['id', 'name', 'cnt'], [HSAL::INDEX_PRIMARY => 3]); |
|
| 12 | 12 | |
| 13 | 13 | $this->assertTrue(is_array($result)); |
| 14 | 14 | $this->assertEquals(3, count($result)); |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | { |
| 22 | 22 | $hs = new HSAL('localhost', 'hstest', HSAL::DRIVER_HANDLERSOCKETI); |
| 23 | 23 | |
| 24 | - $result = $hs->fetchAssoc('test2', ['id','name','cnt'], [HSAL::INDEX_PRIMARY => 3]); |
|
| 24 | + $result = $hs->fetchAssoc('test2', ['id', 'name', 'cnt'], [HSAL::INDEX_PRIMARY => 3]); |
|
| 25 | 25 | |
| 26 | 26 | $this->assertTrue(is_array($result)); |
| 27 | 27 | $this->assertEquals(3, count($result)); |