Skip to content

Commit 90f1f29

Browse files
committed
wip
1 parent 665d8bc commit 90f1f29

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

wp-includes/sqlite-ast/class-wp-sqlite-information-schema-builder.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -774,10 +774,10 @@ private function extract_column_constraint_data( string $table_name, string $col
774774
'packed' => null, // not implemented
775775
'nullable' => true === $nullable ? 'YES' : '',
776776
'index_type' => 'BTREE',
777-
'comment' => '', // not implemented
778-
'index_comment' => '', // @TODO
779-
'is_visible' => 'YES', // @TODO: Save actual visibility value.
780-
'expression' => null, // @TODO
777+
'comment' => '', // not implemented
778+
'index_comment' => '', // inline constraints cannot have comments
779+
'is_visible' => 'YES', // inline constraints are always created visible
780+
'expression' => null, // @TODO
781781
);
782782
}
783783
return null;

0 commit comments

Comments
 (0)