Guest User

Untitled

a guest
Apr 25th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. *** /Users/rngadam/coderbunker/src/pgddl/test/expected/type.out 2018-04-18 10:45:57.000000000 +0800
  2. --- /Users/rngadam/coderbunker/src/pgddl/results/type.out 2018-04-18 10:46:20.000000000 +0800
  3. ***************
  4. *** 128,134 ****
  5. );
  6.  
  7. COMMENT ON TYPE integer IS '-2 billion to 2 billion integer, 4-byte storage';
  8. ! ALTER TYPE integer OWNER TO postgres;
  9. END;
  10.  
  11. (1 row)
  12. --- 128,134 ----
  13. );
  14.  
  15. COMMENT ON TYPE integer IS '-2 billion to 2 billion integer, 4-byte storage';
  16. ! ALTER TYPE integer OWNER TO rngadam;
  17. END;
  18.  
  19. (1 row)
  20. ***************
  21. *** 155,161 ****
  22. );
  23.  
  24. COMMENT ON TYPE integer[] IS NULL;
  25. ! ALTER TYPE integer[] OWNER TO postgres;
  26. END;
  27.  
  28. (1 row)
  29. --- 155,161 ----
  30. );
  31.  
  32. COMMENT ON TYPE integer[] IS NULL;
  33. ! ALTER TYPE integer[] OWNER TO rngadam;
  34. END;
  35.  
  36. (1 row)
  37. ***************
  38. *** 180,186 ****
  39. );
  40.  
  41. COMMENT ON TYPE uuid IS 'UUID datatype';
  42. ! ALTER TYPE uuid OWNER TO postgres;
  43. END;
  44.  
  45. (1 row)
  46. --- 180,186 ----
  47. );
  48.  
  49. COMMENT ON TYPE uuid IS 'UUID datatype';
  50. ! ALTER TYPE uuid OWNER TO rngadam;
  51. END;
  52.  
  53. (1 row)
  54. ***************
  55. *** 206,212 ****
  56. );
  57.  
  58. COMMENT ON TYPE text IS 'variable-length string, no limit specified';
  59. ! ALTER TYPE text OWNER TO postgres;
  60. END;
  61.  
  62. (1 row)
  63. --- 206,212 ----
  64. );
  65.  
  66. COMMENT ON TYPE text IS 'variable-length string, no limit specified';
  67. ! ALTER TYPE text OWNER TO rngadam;
  68. END;
  69.  
  70. (1 row)
  71. ***************
  72. *** 231,237 ****
  73. );
  74.  
  75. COMMENT ON TYPE xml IS 'XML content';
  76. ! ALTER TYPE xml OWNER TO postgres;
  77. END;
  78.  
  79. (1 row)
  80. --- 231,237 ----
  81. );
  82.  
  83. COMMENT ON TYPE xml IS 'XML content';
  84. ! ALTER TYPE xml OWNER TO rngadam;
  85. END;
  86.  
  87. (1 row)
  88. ***************
  89. *** 250,256 ****
  90. );
  91.  
  92. COMMENT ON TYPE daterange IS 'range of dates';
  93. ! ALTER TYPE daterange OWNER TO postgres;
  94. END;
  95.  
  96. (1 row)
  97. --- 250,256 ----
  98. );
  99.  
  100. COMMENT ON TYPE daterange IS 'range of dates';
  101. ! ALTER TYPE daterange OWNER TO rngadam;
  102. END;
  103.  
  104. (1 row)
  105. ***************
  106. *** 274,280 ****
  107. );
  108.  
  109. COMMENT ON OPERATOR =(integer,integer) IS 'equal';
  110. ! ALTER OPERATOR =(integer,integer) OWNER TO postgres;
  111. END;
  112.  
  113. (1 row)
  114. --- 274,280 ----
  115. );
  116.  
  117. COMMENT ON OPERATOR =(integer,integer) IS 'equal';
  118. ! ALTER OPERATOR =(integer,integer) OWNER TO rngadam;
  119. END;
  120.  
  121. (1 row)
  122. ***************
  123. *** 298,304 ****
  124. );
  125.  
  126. COMMENT ON OPERATOR =(text,text) IS 'equal';
  127. ! ALTER OPERATOR =(text,text) OWNER TO postgres;
  128. END;
  129.  
  130. (1 row)
  131. --- 298,304 ----
  132. );
  133.  
  134. COMMENT ON OPERATOR =(text,text) IS 'equal';
  135. ! ALTER OPERATOR =(text,text) OWNER TO rngadam;
  136. END;
  137.  
  138. (1 row)
  139.  
  140. ======================================================================
  141.  
  142. *** /Users/rngadam/coderbunker/src/pgddl/test/expected/fdw.out 2018-04-18 10:45:57.000000000 +0800
  143. --- /Users/rngadam/coderbunker/src/pgddl/results/fdw.out 2018-04-18 10:46:21.000000000 +0800
  144. ***************
  145. *** 49,54 ****
  146. --- 49,61 ----
  147. COMMENT ON COLUMN test_class_f.line IS 'A Line of text'; +
  148. +
  149. ALTER FOREIGN TABLE test_class_f OWNER TO postgres; +
  150. + GRANT INSERT ON test_class_f TO PUBLIC; +
  151. + GRANT SELECT ON test_class_f TO PUBLIC; +
  152. + GRANT UPDATE ON test_class_f TO PUBLIC; +
  153. + GRANT DELETE ON test_class_f TO PUBLIC; +
  154. + GRANT TRUNCATE ON test_class_f TO PUBLIC; +
  155. + GRANT REFERENCES ON test_class_f TO PUBLIC; +
  156. + GRANT TRIGGER ON test_class_f TO PUBLIC; +
  157. END; +
  158.  
  159. (1 row)
  160.  
  161. ======================================================================
Add Comment
Please, Sign In to add comment