-3

The error is this:

sphinxql: syntax error, unexpected NULL, expecting CONST_INT (or 5 other tokens) near 'NULL,1448734444)'

How delete this index id = 1448734444, thank you I don't know how to use sphinx,and where is sphinx's database

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
lpc
  • 1
  • 1
    You have a syntax error which means your SQL query is not correct. Fix the query and you can perform the delete. If you want more help, write down the *exact* SQL query you're using. – xaviert Nov 29 '15 at 10:13
  • when i run this code ' python index_worker.py ' – lpc Nov 29 '15 at 10:19
  • 1
    Well - we **can't see** your screen, nor can we read your mind - **SHOW US** the code you're using that's causing this error ! – marc_s Nov 29 '15 at 10:56

1 Answers1

0

I solve the probeem ,this is delete index

$ mysql -h127.0.0.1 -P9306 mysql> desc bbs_post;

mysql> select * from bbs_post where match('mobei');

mysql> select * from bbs_post where match('beibei'); mysql> select * from bbs_post where match('test');

lpc
  • 1