diff options
| author | Simonov Denis <sim-mail@list.ru> | 2019-10-25 18:38:01 +0200 |
|---|---|---|
| committer | Christoph M. Becker <cmbecker69@gmx.de> | 2019-10-28 16:40:51 +0100 |
| commit | 3fb42a382cdd64015375eec4c3a8d708ea17a06b (patch) | |
| tree | 2dbb30c601d1e5e1e3fe079dab6e7ad00831908b /ext/pdo_firebird/php_pdo_firebird_int.h | |
| parent | 9e4c5db7331011da5daca701df0a62dcc2a622df (diff) | |
| download | php-git-3fb42a382cdd64015375eec4c3a8d708ea17a06b.tar.gz | |
Add support for Interbase 1 dialect
Diffstat (limited to 'ext/pdo_firebird/php_pdo_firebird_int.h')
| -rw-r--r-- | ext/pdo_firebird/php_pdo_firebird_int.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/pdo_firebird/php_pdo_firebird_int.h b/ext/pdo_firebird/php_pdo_firebird_int.h index 3694d362c0..dca1a575f0 100644 --- a/ext/pdo_firebird/php_pdo_firebird_int.h +++ b/ext/pdo_firebird/php_pdo_firebird_int.h @@ -86,10 +86,12 @@ typedef struct { char *time_format; char *timestamp_format; + unsigned sql_dialect:2; + /* prepend table names on column names in fetch */ unsigned fetch_table_names:1; - unsigned _reserved:31; + unsigned _reserved:29; } pdo_firebird_db_handle; |
