hash_index.out
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:3k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. QUERY: SELECT hash_i4_heap.*
  2.    WHERE hash_i4_heap.random = 843938989;
  3. seqno|   random
  4. -----+---------
  5.    15|843938989
  6. (1 row)
  7. QUERY: SELECT hash_i4_heap.*
  8.    WHERE hash_i4_heap.random = 66766766;
  9. seqno|random
  10. -----+------
  11. (0 rows)
  12. QUERY: SELECT hash_name_heap.*
  13.    WHERE hash_name_heap.random = '1505703298'::name;
  14. seqno|    random
  15. -----+----------
  16.  9838|1505703298
  17. (1 row)
  18. QUERY: SELECT hash_name_heap.*
  19.    WHERE hash_name_heap.random = '7777777'::name;
  20. seqno|random
  21. -----+------
  22. (0 rows)
  23. QUERY: SELECT hash_txt_heap.*
  24.    WHERE hash_txt_heap.random = '1351610853'::text;
  25. seqno|    random
  26. -----+----------
  27.  5677|1351610853
  28. (1 row)
  29. QUERY: SELECT hash_txt_heap.*
  30.    WHERE hash_txt_heap.random = '111111112222222233333333'::text;
  31. seqno|random
  32. -----+------
  33. (0 rows)
  34. QUERY: SELECT hash_f8_heap.*
  35.    WHERE hash_f8_heap.random = '444705537'::float8;
  36. seqno|   random
  37. -----+---------
  38.  7853|444705537
  39. (1 row)
  40. QUERY: SELECT hash_f8_heap.*
  41.    WHERE hash_f8_heap.random = '88888888'::float8;
  42. seqno|random
  43. -----+------
  44. (0 rows)
  45. QUERY: UPDATE hash_i4_heap
  46.    SET random = 1
  47.    WHERE hash_i4_heap.seqno = 1492;
  48. QUERY: SELECT h.seqno AS i1492, h.random AS i1
  49.    FROM hash_i4_heap h
  50.    WHERE h.random = 1;
  51. i1492|i1
  52. -----+--
  53.  1492| 1
  54. (1 row)
  55. QUERY: UPDATE hash_i4_heap
  56.    SET seqno = 20000
  57.    WHERE hash_i4_heap.random = 1492795354;
  58. QUERY: SELECT h.seqno AS i20000
  59.    FROM hash_i4_heap h
  60.    WHERE h.random = 1492795354;
  61. i20000
  62. ------
  63.  20000
  64. (1 row)
  65. QUERY: UPDATE hash_name_heap
  66.    SET random = '0123456789abcdef'::name
  67.    WHERE hash_name_heap.seqno = 6543;
  68. QUERY: SELECT h.seqno AS i6543, h.random AS c0_to_f
  69.    FROM hash_name_heap h
  70.    WHERE h.random = '0123456789abcdef'::name;
  71. i6543|c0_to_f         
  72. -----+----------------
  73.  6543|0123456789abcdef
  74. (1 row)
  75. QUERY: UPDATE hash_name_heap
  76.    SET seqno = 20000
  77.    WHERE hash_name_heap.random = '76652222'::name;
  78. QUERY: SELECT h.seqno AS emptyset
  79.    FROM hash_name_heap h
  80.    WHERE h.random = '76652222'::name;
  81. emptyset
  82. --------
  83. (0 rows)
  84. QUERY: UPDATE hash_txt_heap
  85.    SET random = '0123456789abcdefghijklmnop'::text
  86.    WHERE hash_txt_heap.seqno = 4002;
  87. QUERY: SELECT h.seqno AS i4002, h.random AS c0_to_p
  88.    FROM hash_txt_heap h
  89.    WHERE h.random = '0123456789abcdefghijklmnop'::text;
  90. i4002|c0_to_p                   
  91. -----+--------------------------
  92.  4002|0123456789abcdefghijklmnop
  93. (1 row)
  94. QUERY: UPDATE hash_txt_heap
  95.    SET seqno = 20000
  96.    WHERE hash_txt_heap.random = '959363399'::text;
  97. QUERY: SELECT h.seqno AS t20000
  98.    FROM hash_txt_heap h
  99.    WHERE h.random = '959363399'::text;
  100. t20000
  101. ------
  102.  20000
  103. (1 row)
  104. QUERY: UPDATE hash_f8_heap
  105.    SET random = '-1234.1234'::float8
  106.    WHERE hash_f8_heap.seqno = 8906;
  107. QUERY: SELECT h.seqno AS i8096, h.random AS f1234_1234
  108.    FROM hash_f8_heap h
  109.    WHERE h.random = '-1234.1234'::float8;
  110. i8096|f1234_1234
  111. -----+----------
  112.  8906|-1234.1234
  113. (1 row)
  114. QUERY: UPDATE hash_f8_heap
  115.    SET seqno = 20000
  116.    WHERE hash_f8_heap.random = '488912369'::float8;
  117. QUERY: SELECT h.seqno AS f20000
  118.    FROM hash_f8_heap h
  119.    WHERE h.random = '488912369'::float8;
  120. f20000
  121. ------
  122.  20000
  123. (1 row)