|
@@ -80,7 +80,7 @@ |
|
|
block discarded – undo |
|
80
|
80
|
*/ |
|
81
|
81
|
public function introspectSchema(string $schema_name = null): Schema |
|
82
|
82
|
{ |
|
83
|
|
- $schema_name ??= $this->query(sql: 'SELECT DATABASE() AS schema_name')[0]->schema_name; |
|
|
83
|
+ $schema_name ??= $this->query(sql: 'SELECT DATABASE() AS schema_name')[0]->schema_name; |
|
84
|
84
|
$pattern = $this->escapeLike(string: $this->prefix) . '%'; |
|
85
|
85
|
$table_data = $this->informationSchemaTables(schema_name: $schema_name, pattern: $pattern); |
|
86
|
86
|
$column_data = $this->informationSchemaColumns(schema_name: $schema_name, pattern: $pattern); |
Please login to merge, or discard this patch.