You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-24 14:20:59 +03:00
MCOL-163 Add support for DOUBLE PRECISION
Just an alias for DOUBLE
This commit is contained in:
@@ -981,6 +981,16 @@ approximate_numeric_type:
|
||||
$$ = new ColumnType(DDL_UNSIGNED_DOUBLE);
|
||||
$$->fLength = DDLDatatypeLength[DDL_DOUBLE];
|
||||
}
|
||||
| DOUBLE PRECISION opt_display_precision_scale_null
|
||||
{
|
||||
$$ = new ColumnType(DDL_DOUBLE);
|
||||
$$->fLength = DDLDatatypeLength[DDL_DOUBLE];
|
||||
}
|
||||
| DOUBLE PRECISION opt_display_precision_scale_null UNSIGNED
|
||||
{
|
||||
$$ = new ColumnType(DDL_UNSIGNED_DOUBLE);
|
||||
$$->fLength = DDLDatatypeLength[DDL_DOUBLE];
|
||||
}
|
||||
| REAL opt_display_precision_scale_null
|
||||
{
|
||||
$$ = new ColumnType(DDL_DOUBLE);
|
||||
|
||||
Reference in New Issue
Block a user