解大劦
解大劦
this is stacktrace information: com.intellij.diagnostic.PluginException: `ActionUpdateThread.OLD_EDT` is deprecated and going to be removed soon. 'com.leinardi.pycharm.pylint.actions.StopCheck' must override `getActionUpdateThread` and chose EDT or BGT. See ActionUpdateThread javadoc. [Plugin: com.leinardi.pycharm.pylint] at com.intellij.diagnostic.PluginProblemReporterImpl.createPluginExceptionByClass(PluginProblemReporterImpl.java:23)...
WhereOr过滤条件大家都不使用吗?如下: ` $where[] = ['mobile', 'like', 'thinkphp%']; $whereOr[] = ['name', 'like', '%thinkphp']; Db::name("abstract_logic_testing")->where($where)->whereOr($whereOr)->select(); $actual = Db::name("abstract_logic_testing")->getLastSql(); ` 这段代码$actual的结果,不应该是SELECT * FROM `m_abstract_logic_testing` WHERE ( `mobile` LIKE 'thinkphp%' ) OR ( `name`...