Menu

#649 In metakeywords table, keyword_text is type char(255)

open
nobody
None
5
2009-09-22
2009-09-22
No

In metakeywords table, keyword_text is type char(255). So when you concat keywords in modify.php, you have between keywords 200 spaces...

I propose to change char(255) to varchar(255).

You can find a patch to fix this.

Discussion

  • Steve

    Steve - 2009-09-22

    The following would alter an existing table under mysql:

    alter table metakeywords change column keyword_text keyword_text varchar(255);

     
  • Steve

    Steve - 2009-09-22

    The following would alter an existing table under mysql:

    alter table metakeywords change column keyword_text keyword_text varchar(255);

     
  • Julien HEYMAN

    Julien HEYMAN - 2009-09-22

    Yes, and my patch fix this in postgresql. Could you commit it?

     
  • OSC Member

    OSC Member - 2011-02-07

    Hi,

    This patch is still open.
    What are the plan to apply it ?

    Regards,

     

Log in to post a comment.