mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
SQL: hide implicitly added columns from SELECT *
This commit is contained in:
committed by
Aleksey Midenkov
parent
70168978fc
commit
e094228631
@ -2991,6 +2991,8 @@ bool Column_definition::prepare_create_field(uint *blob_columns,
|
||||
pack_flag|= FIELDFLAG_NO_DEFAULT;
|
||||
if (flags & WITHOUT_SYSTEM_VERSIONING_FLAG)
|
||||
pack_flag|= FIELDFLAG_WITHOUT_SYSTEM_VERSIONING;
|
||||
if (flags & HIDDEN_FLAG)
|
||||
pack_flag|= FIELDFLAG_HIDDEN;
|
||||
DBUG_RETURN(false);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user