2019年11月1日
摘要: # This is the main Samba configuration file. You should read the# smb.conf(5) manual page in order to understand the options listed# here. Samba has a 阅读全文
posted @ 2019-11-01 17:33 kisstherain8231 阅读(168) 评论(0) 推荐(0)
  2019年6月11日
摘要: 阅读全文
posted @ 2019-06-11 19:50 kisstherain8231 阅读(109) 评论(0) 推荐(0)
  2019年6月1日
摘要: …or create a new repository on the command line echo "# codechallenge" >> README.md git init git add README.md git commit -m "first commit" git remote 阅读全文
posted @ 2019-06-01 16:37 kisstherain8231 阅读(179) 评论(0) 推荐(0)
  2019年3月14日
摘要: mysql 唯一键失效 insert into studnet_unique(name, nick) values("abc", NULL); 能够插入多次,已经有了唯一索引,为什么能够写入多次数据呢 查看代码发现,当辅助索引中有字段的内容为NULL时,NULL != NULL 阅读全文
posted @ 2019-03-14 20:54 kisstherain8231 阅读(444) 评论(0) 推荐(0)
  2019年2月20日
摘要: # attach process llvm process attach --pid 64924 # 添加断点 breakpoint set -n dispatch_command(enum_server_command,\ THD*,\ char*,\ unsigned\ int) breakpo 阅读全文
posted @ 2019-02-20 21:25 kisstherain8231 阅读(173) 评论(0) 推荐(0)
摘要: # 查看mysql的插件 show plugins \G # 安装mysql 插件 INSTALL PLUGIN spartan SONAME 'ha_spartan.so'; # 卸载 UNINSTALL PLUGIN spartan; # 查看插件目录 show variables like ' 阅读全文
posted @ 2019-02-20 20:52 kisstherain8231 阅读(272) 评论(0) 推荐(0)
  2019年2月18日
摘要: # 创建表的stack frame #0: 0x000000011d11f58a ha_spartan.so`Spartan_data::create_table(this=0x00007f9fc1311c40, path="./test/testarc.sde") + 74 at spartan_ 阅读全文
posted @ 2019-02-18 20:19 kisstherain8231 阅读(457) 评论(0) 推荐(0)
  2019年2月15日
摘要: init_read_record 阅读全文
posted @ 2019-02-15 00:13 kisstherain8231 阅读(124) 评论(0) 推荐(0)
  2019年1月27日
摘要: 阅读全文
posted @ 2019-01-27 22:06 kisstherain8231 阅读(227) 评论(0) 推荐(0)
  2019年1月12日
摘要: innodb 存储引擎,创建一个表 本文分析创建一个段。待叙,主要说明是如何创建一文件,并在文件中分配一个索引。 上面是创建一个表的调用图。创建文件和创建一个btr 阅读全文
posted @ 2019-01-12 00:45 kisstherain8231 阅读(1042) 评论(0) 推荐(0)