2006-02-01から1ヶ月間の記事一覧

Improve the comparison of NUMERIC data

patch applied. http://archives.postgresql.org/pgsql-patches/2006-02/msg00080.php

gdb memo

callコマンドで関数を実行できる。例) innodbのrecordの情報を出力する (1)ブレークポイントを設定 break rec_init_offsets(2)ブレークしたらデバッグ用の関数を実行 call rec_print(stderr, rec, index) continueこれでmysqlのerrファイル(mysqlhome/varに…

mysql-5.1のstorage engine

storage engineの実装は、storageディレクトリにある bdb heap innobase myisam myisammrg ndbがある storage engineのインタフェースには、handlerとhandlertonがある handlerはinsertやselectなど、テーブルを操作するインターフェースを定義したclass。sq…