| 1 | <?php namespace Bosnadev\Database; |
||
| 10 | class PostgresConnection extends BasePostgresConnection |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Get a schema builder instance for the connection. |
||
| 14 | * |
||
| 15 | * @return Schema\Builder |
||
| 16 | */ |
||
| 17 | public function getSchemaBuilder() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Get the default query grammar instance. |
||
| 28 | * |
||
| 29 | * @return \Illuminate\Database\Grammar |
||
| 30 | */ |
||
| 31 | 3 | protected function getDefaultQueryGrammar() |
|
| 35 | |||
| 36 | |||
| 37 | /** |
||
| 38 | * Get the default schema grammar instance. |
||
| 39 | * |
||
| 40 | * @return \Illuminate\Database\Grammar |
||
| 41 | */ |
||
| 42 | protected function getDefaultSchemaGrammar() |
||
| 46 | |||
| 47 | |||
| 48 | /** |
||
| 49 | * Get the default post processor instance. |
||
| 50 | * |
||
| 51 | * @return \Illuminate\Database\Query\Processors\PostgresProcessor |
||
| 52 | */ |
||
| 53 | 3 | protected function getDefaultPostProcessor() |
|
| 57 | } |
||
| 58 |