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

数据库系统

开发平台:

Unix_Linux

  1. QUERY: select 1
  2. select
  3. select * from nonesuch;
  4. ERROR:  parser: parse error at or near "select"
  5. QUERY: select nonesuch from pg_database;
  6. ERROR:  attribute 'nonesuch' not found
  7. QUERY: select * from pg_database where nonesuch = pg_database.datname;
  8. ERROR:  attribute 'nonesuch' not found
  9. QUERY: select * from pg_database where pg_database.datname = nonesuch;
  10. ERROR:  attribute 'nonesuch' not found
  11. QUERY: select distinct on foobar from pg_database;
  12. ERROR:  parser: parse error at or near "from"
  13. QUERY: select distinct on foobar * from pg_database;
  14. ERROR:  All fields in the UNIQUE ON clause must appear in the target list
  15. QUERY: delete from;
  16. ERROR:  parser: parse error at or near ";"
  17. QUERY: delete from nonesuch;
  18. ERROR:  nonesuch: Table does not exist.
  19. QUERY: drop table;
  20. ERROR:  parser: parse error at or near ";"
  21. QUERY: drop table nonesuch;
  22. ERROR:  Relation 'nonesuch' does not exist
  23. QUERY: alter table rename;
  24. ERROR:  parser: parse error at or near ";"
  25. QUERY: alter table nonesuch rename to newnonesuch;
  26. ERROR:  renamerel: relation "nonesuch" does not exist
  27. QUERY: alter table nonesuch rename to stud_emp;
  28. ERROR:  renamerel: relation "nonesuch" does not exist
  29. QUERY: alter table stud_emp rename to pg_stud_emp;
  30. ERROR:  renamerel: Illegal class name: "pg_stud_emp" -- pg_ is reserved for system catalogs
  31. QUERY: alter table stud_emp rename to aggtest;
  32. ERROR:  renamerel: relation "aggtest" exists
  33. QUERY: alter table stud_emp rename to stud_emp;
  34. ERROR:  renamerel: relation "stud_emp" exists
  35. QUERY: alter table nonesuchrel rename column nonesuchatt to newnonesuchatt;
  36. ERROR:  renameatt: relation "nonesuchrel" nonexistent
  37. QUERY: alter table emp rename column nonesuchatt to newnonesuchatt;
  38. ERROR:  renameatt: attribute "nonesuchatt" nonexistent
  39. QUERY: alter table emp rename column salary to manager;
  40. ERROR:  renameatt: attribute "manager" exists
  41. QUERY: alter table emp rename column salary to oid;
  42. ERROR:  renameatt: attribute "oid" exists
  43. QUERY: abort;
  44. NOTICE:  UserAbortTransactionBlock and not in in-progress state
  45. QUERY: end;
  46. NOTICE:  EndTransactionBlock and not inprogress/abort state 
  47. QUERY: create aggregate newavg1 (sfunc1 = int4pl,
  48.   basetype = int4,
  49.   stype1 = int4,
  50.   sfunc2 = int4inc,
  51.   stype2 = int4,
  52.   initcond1 = '0',
  53.   initcond2 = '0');
  54. ERROR:  AggregateCreate: Aggregate must have final function with both transition functions
  55. QUERY: create aggregate newavg2 (sfunc1 = int4pl,
  56.   basetype = int4,
  57.   stype1 = int4,
  58.   sfunc2 = int2inc,
  59.   stype2 = int2,
  60.   finalfunc = int4div,
  61.   initcond1 = '0',
  62.   initcond2 = '0');
  63. ERROR:  AggregateCreate: 'int4div'('int4','int2') does not exist
  64. QUERY: create aggregate newavg3 (sfunc1 = int4pl,
  65.   basetype = int4,
  66.   stype1 = int4,
  67.   sfunc2 = int4inc,
  68.   stype2 = int4,
  69.   finalfunc = int2div,
  70.   initcond1 = '0',
  71.   initcond2 = '0');
  72. ERROR:  AggregateCreate: 'int2div'('int4','int4') does not exist
  73. QUERY: create aggregate newcnt1 (sfunc2 = int4inc,
  74.   stype2 = int4,
  75. initcond2 = '0');
  76. ERROR:  Define: "basetype" unspecified
  77. QUERY: create aggregate newcnt1 (sfunc2 = int4inc,
  78.   basetype = int4,
  79.   stype2 = int4);
  80. ERROR:  AggregateCreate: transition function 2 MUST have an initial value
  81. QUERY: drop index;
  82. ERROR:  parser: parse error at or near ";"
  83. QUERY: drop index 314159;
  84. ERROR:  parser: parse error at or near "314159"
  85. QUERY: drop index nonesuch;
  86. ERROR:  index "nonesuch" nonexistent
  87. QUERY: drop aggregate;
  88. ERROR:  parser: parse error at or near ";"
  89. QUERY: drop aggregate 314159;
  90. ERROR:  parser: parse error at or near "314159"
  91. QUERY: drop aggregate nonesuch;
  92. ERROR:  parser: parse error at or near ";"
  93. QUERY: drop aggregate newcnt1;
  94. ERROR:  parser: parse error at or near ";"
  95. QUERY: drop aggregate newcnt nonesuch;
  96. ERROR:  RemoveAggregate: type 'nonesuch' does not exist
  97. QUERY: drop aggregate newcnt float4;
  98. ERROR:  RemoveAggregate: aggregate 'newcnt' for 'float4' does not exist
  99. QUERY: drop function ();
  100. ERROR:  parser: parse error at or near "("
  101. QUERY: drop function 314159();
  102. ERROR:  parser: parse error at or near "314159"
  103. QUERY: drop function nonesuch();
  104. ERROR:  RemoveFunction: function 'nonesuch()' does not exist
  105. QUERY: drop type;
  106. ERROR:  parser: parse error at or near ";"
  107. QUERY: drop type 314159;
  108. ERROR:  parser: parse error at or near "314159"
  109. QUERY: drop type nonesuch;
  110. ERROR:  RemoveType: type 'nonesuch' does not exist
  111. QUERY: drop operator;
  112. ERROR:  parser: parse error at or near ";"
  113. QUERY: drop operator equals;
  114. ERROR:  parser: parse error at or near "equals"
  115. QUERY: drop operator ===;
  116. ERROR:  parser: parse error at or near ";"
  117. QUERY: drop operator int4, int4;
  118. ERROR:  parser: parse error at or near "int4"
  119. QUERY: drop operator (int4, int4);
  120. ERROR:  parser: parse error at or near "("
  121. QUERY: drop operator === ();
  122. ERROR:  parser: parse error at or near ")"
  123. QUERY: drop operator === (int4);
  124. ERROR:  parser: argument type missing (use NONE for unary operators)
  125. QUERY: drop operator === (int4, int4);
  126. ERROR:  RemoveOperator: binary operator '===' taking 'int4' and 'int4' does not exist
  127. QUERY: drop operator = (nonesuch);
  128. ERROR:  parser: argument type missing (use NONE for unary operators)
  129. QUERY: drop operator = ( , int4);
  130. ERROR:  parser: parse error at or near ","
  131. QUERY: drop operator = (nonesuch, int4);
  132. ERROR:  RemoveOperator: type 'nonesuch' does not exist
  133. QUERY: drop operator = (int4, nonesuch);
  134. ERROR:  RemoveOperator: type 'nonesuch' does not exist
  135. QUERY: drop operator = (int4, );
  136. ERROR:  parser: parse error at or near ")"
  137. QUERY: drop rule;
  138. ERROR:  parser: parse error at or near ";"
  139. QUERY: drop rule 314159;
  140. ERROR:  parser: parse error at or near "314159"
  141. QUERY: drop rule nonesuch;
  142. ERROR:  Rule or view 'nonesuch' not found
  143. QUERY: drop tuple rule nonesuch;
  144. ERROR:  parser: parse error at or near "tuple"
  145. QUERY: drop instance rule nonesuch;
  146. ERROR:  parser: parse error at or near "instance"
  147. QUERY: drop rewrite rule nonesuch;
  148. ERROR:  parser: parse error at or near "rewrite"