Advertisement
Guest User

Untitled

a guest
Oct 5th, 2012
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 38.22 KB | None | 0 0
  1. org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.LazyLoadingTest STANDARD_OUT
  2. 08:03:33,143 INFO DriverManagerConnectionProviderImpl:96 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
  3. 08:03:33,143 INFO DriverManagerConnectionProviderImpl:130 - HHH000115: Hibernate connection pool size: 5
  4. 08:03:33,143 INFO DriverManagerConnectionProviderImpl:133 - HHH000006: Autocommit mode: false
  5. 08:03:33,144 INFO DriverManagerConnectionProviderImpl:147 - HHH000401: using driver [org.postgresql.Driver] at URL [jdbc:postgresql://postgresql04.mw.lab.eng.bos.redhat.com:5432/dballo02]
  6. 08:03:33,144 INFO DriverManagerConnectionProviderImpl:152 - HHH000046: Connection properties: {user=dballo02, password=****}
  7. 08:03:33,271 INFO Dialect:125 - HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL82Dialect
  8. 08:03:33,272 INFO LobCreatorBuilder:120 - HHH000424: Disabling contextual LOB creation as createClob() method threw error : java.lang.reflect.InvocationTargetException
  9. 08:03:33,272 INFO TransactionFactoryInitiator:68 - HHH000399: Using default transaction strategy (direct JDBC transactions)
  10. 08:03:33,273 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
  11. 08:03:33,273 WARN CachingRegionFactory:56 - CachingRegionFactory should be only used for testing.
  12. 08:03:33,296 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
  13. 08:03:33,297 DEBUG SchemaExport:353 - Import file not found: /import.sql
  14. 08:03:33,297 DEBUG SQL:104 -
  15. alter table O_CUSTINVENTORY
  16. drop constraint FK223174592F7D6A92
  17. Hibernate:
  18. alter table O_CUSTINVENTORY
  19. drop constraint FK223174592F7D6A92
  20. 08:03:33,298 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table O_CUSTINVENTORY drop constraint FK223174592F7D6A92
  21. 08:03:33,298 ERROR SchemaExport:426 - ERROR: relation "o_custinventory" does not exist
  22. 08:03:33,298 DEBUG SQL:104 -
  23. alter table O_CUSTINVENTORY
  24. drop constraint FK22317459157493FC
  25. Hibernate:
  26. alter table O_CUSTINVENTORY
  27. drop constraint FK22317459157493FC
  28. 08:03:33,299 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table O_CUSTINVENTORY drop constraint FK22317459157493FC
  29. 08:03:33,299 ERROR SchemaExport:426 - ERROR: relation "o_custinventory" does not exist
  30. 08:03:33,299 DEBUG SQL:104 -
  31. drop table if exists O_CUSTINVENTORY cascade
  32. Hibernate:
  33. drop table if exists O_CUSTINVENTORY cascade
  34. 08:03:33,300 DEBUG SQL:104 -
  35. drop table if exists O_CUSTOMERDEMAND cascade
  36. Hibernate:
  37. drop table if exists O_CUSTOMERDEMAND cascade
  38. 08:03:33,300 DEBUG SQL:104 -
  39. drop table if exists O_ITEM cascade
  40. Hibernate:
  41. drop table if exists O_ITEM cascade
  42. 08:03:33,301 DEBUG SQL:104 -
  43. drop table if exists U_SEQUENCES cascade
  44. Hibernate:
  45. drop table if exists U_SEQUENCES cascade
  46. 08:03:33,301 DEBUG SQL:104 -
  47. create table O_CUSTINVENTORY (
  48. CI_CUSTOMERID int4 not null,
  49. CI_ID int4 not null,
  50. CI_QUANTITY int4,
  51. CI_VALUE numeric(19, 2),
  52. CI_VERSION int4,
  53. CI_ITEMID varchar(255),
  54. primary key (CI_CUSTOMERID, CI_ID)
  55. )
  56. Hibernate:
  57. create table O_CUSTINVENTORY (
  58. CI_CUSTOMERID int4 not null,
  59. CI_ID int4 not null,
  60. CI_QUANTITY int4,
  61. CI_VALUE numeric(19, 2),
  62. CI_VERSION int4,
  63. CI_ITEMID varchar(255),
  64. primary key (CI_CUSTOMERID, CI_ID)
  65. )
  66. 08:03:33,317 DEBUG SQL:104 -
  67. create table O_CUSTOMERDEMAND (
  68. C_ID int4 not null,
  69. C_BALANCE numeric(19, 2),
  70. C_CONTACT varchar(255),
  71. C_CREDIT varchar(255),
  72. C_CREDIT_LIMIT numeric(19, 2),
  73. C_FIRST varchar(255),
  74. C_LAST varchar(255),
  75. C_SINCE date,
  76. C_VERSION int4,
  77. C_YTD_PAYMENT numeric(19, 2),
  78. primary key (C_ID)
  79. )
  80. Hibernate:
  81. create table O_CUSTOMERDEMAND (
  82. C_ID int4 not null,
  83. C_BALANCE numeric(19, 2),
  84. C_CONTACT varchar(255),
  85. C_CREDIT varchar(255),
  86. C_CREDIT_LIMIT numeric(19, 2),
  87. C_FIRST varchar(255),
  88. C_LAST varchar(255),
  89. C_SINCE date,
  90. C_VERSION int4,
  91. C_YTD_PAYMENT numeric(19, 2),
  92. primary key (C_ID)
  93. )
  94. 08:03:33,325 DEBUG SQL:104 -
  95. create table O_ITEM (
  96. I_ID varchar(255) not null,
  97. I_CATEGORY int4,
  98. I_DESC varchar(255),
  99. I_DISCOUNT numeric(19, 2),
  100. I_NAME varchar(255),
  101. I_PRICE numeric(19, 2),
  102. I_VERSION int4,
  103. primary key (I_ID)
  104. )
  105. Hibernate:
  106. create table O_ITEM (
  107. I_ID varchar(255) not null,
  108. I_CATEGORY int4,
  109. I_DESC varchar(255),
  110. I_DISCOUNT numeric(19, 2),
  111. I_NAME varchar(255),
  112. I_PRICE numeric(19, 2),
  113. I_VERSION int4,
  114. primary key (I_ID)
  115. )
  116. 08:03:33,333 DEBUG SQL:104 -
  117. alter table O_CUSTINVENTORY
  118. add constraint FK223174592F7D6A92
  119. foreign key (CI_CUSTOMERID)
  120. references O_CUSTOMERDEMAND
  121. Hibernate:
  122. alter table O_CUSTINVENTORY
  123. add constraint FK223174592F7D6A92
  124. foreign key (CI_CUSTOMERID)
  125. references O_CUSTOMERDEMAND
  126. 08:03:33,336 DEBUG SQL:104 -
  127. alter table O_CUSTINVENTORY
  128. add constraint FK22317459157493FC
  129. foreign key (CI_ITEMID)
  130. references O_ITEM
  131. Hibernate:
  132. alter table O_CUSTINVENTORY
  133. add constraint FK22317459157493FC
  134. foreign key (CI_ITEMID)
  135. references O_ITEM
  136. 08:03:33,340 DEBUG SQL:104 -
  137. create table U_SEQUENCES (
  138. S_ID varchar(255) not null ,
  139. S_NEXTNUM int8,
  140. primary key ( S_ID )
  141. )
  142. Hibernate:
  143. create table U_SEQUENCES (
  144. S_ID varchar(255) not null ,
  145. S_NEXTNUM int8,
  146. primary key ( S_ID )
  147. )
  148. 08:03:33,343 INFO SchemaExport:405 - HHH000230: Schema export complete
  149. 08:03:33,344 DEBUG QueryTranslatorImpl:265 - parse() - HQL: select a from org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerInventoryDemand a
  150. 08:03:33,363 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
  151. \-[QUERY] Node: 'query'
  152. \-[SELECT_FROM] Node: 'SELECT_FROM'
  153. +-[FROM] Node: 'from'
  154. | \-[RANGE] Node: 'RANGE'
  155. | +-[DOT] Node: '.'
  156. | | +-[DOT] Node: '.'
  157. | | | +-[DOT] Node: '.'
  158. | | | | +-[DOT] Node: '.'
  159. | | | | | +-[DOT] Node: '.'
  160. | | | | | | +-[DOT] Node: '.'
  161. | | | | | | | +-[DOT] Node: '.'
  162. | | | | | | | | +-[DOT] Node: '.'
  163. | | | | | | | | | +-[DOT] Node: '.'
  164. | | | | | | | | | | +-[IDENT] Node: 'org'
  165. | | | | | | | | | | \-[IDENT] Node: 'hibernate'
  166. | | | | | | | | | \-[IDENT] Node: 'test'
  167. | | | | | | | | \-[IDENT] Node: 'annotations'
  168. | | | | | | | \-[IDENT] Node: 'derivedidentities'
  169. | | | | | | \-[IDENT] Node: 'e1'
  170. | | | | | \-[IDENT] Node: 'b'
  171. | | | | \-[IDENT] Node: 'specjmapid'
  172. | | | \-[IDENT] Node: 'ondemand'
  173. | | \-[IDENT] Node: 'CustomerInventoryDemand'
  174. | \-[ALIAS] Node: 'a'
  175. \-[SELECT] Node: 'select'
  176. \-[IDENT] Node: 'a'
  177.  
  178. 08:03:33,363 DEBUG ErrorCounter:82 - throwQueryException() : no errors
  179. 08:03:33,363 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerInventoryDemand (a) -> customerin0_
  180. 08:03:33,364 DEBUG FromReferenceNode:74 - Resolved : a -> customerin0_.CI_ID
  181. 08:03:33,364 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( {select clause} customerin0_.CI_ID ) ( FromClause{level=1} O_CUSTINVENTORY customerin0_ ) )
  182. 08:03:33,364 DEBUG JoinProcessor:175 - Using FROM fragment [O_CUSTINVENTORY customerin0_]
  183. 08:03:33,365 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
  184. \-[SELECT] QueryNode: 'SELECT' querySpaces (O_CUSTINVENTORY)
  185. +-[SELECT_CLAUSE] SelectClause: '{select clause}'
  186. | +-[ALIAS_REF] IdentNode: 'customerin0_.CI_CUSTOMERID as CI1_627_, customerin0_.CI_ID as CI2_627_' {alias=a, className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerInventoryDemand, tableAlias=customerin0_}
  187. | \-[SQL_TOKEN] SqlFragment: 'customerin0_.CI_QUANTITY as CI3_627_, customerin0_.CI_VALUE as CI4_627_, customerin0_.CI_ITEMID as CI6_627_, customerin0_.CI_VERSION as CI5_627_'
  188. \-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[a], fromElementByTableAlias=[customerin0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
  189. \-[FROM_FRAGMENT] FromElement: 'O_CUSTINVENTORY customerin0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=a,role=null,tableName=O_CUSTINVENTORY,tableAlias=customerin0_,origin=null,columns={,className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerInventoryDemand}}
  190.  
  191. 08:03:33,365 DEBUG ErrorCounter:82 - throwQueryException() : no errors
  192. 08:03:33,365 DEBUG QueryTranslatorImpl:235 - HQL: select a from org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerInventoryDemand a
  193. 08:03:33,365 DEBUG QueryTranslatorImpl:236 - SQL: select customerin0_.CI_CUSTOMERID as CI1_627_, customerin0_.CI_ID as CI2_627_, customerin0_.CI_QUANTITY as CI3_627_, customerin0_.CI_VALUE as CI4_627_, customerin0_.CI_ITEMID as CI6_627_, customerin0_.CI_VERSION as CI5_627_ from O_CUSTINVENTORY customerin0_
  194. 08:03:33,365 DEBUG ErrorCounter:82 - throwQueryException() : no errors
  195. 08:03:33,366 DEBUG QueryTranslatorImpl:265 - parse() - HQL: select COUNT(a) from org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand a
  196. 08:03:33,367 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
  197. \-[QUERY] Node: 'query'
  198. \-[SELECT_FROM] Node: 'SELECT_FROM'
  199. +-[FROM] Node: 'from'
  200. | \-[RANGE] Node: 'RANGE'
  201. | +-[DOT] Node: '.'
  202. | | +-[DOT] Node: '.'
  203. | | | +-[DOT] Node: '.'
  204. | | | | +-[DOT] Node: '.'
  205. | | | | | +-[DOT] Node: '.'
  206. | | | | | | +-[DOT] Node: '.'
  207. | | | | | | | +-[DOT] Node: '.'
  208. | | | | | | | | +-[DOT] Node: '.'
  209. | | | | | | | | | +-[DOT] Node: '.'
  210. | | | | | | | | | | +-[IDENT] Node: 'org'
  211. | | | | | | | | | | \-[IDENT] Node: 'hibernate'
  212. | | | | | | | | | \-[IDENT] Node: 'test'
  213. | | | | | | | | \-[IDENT] Node: 'annotations'
  214. | | | | | | | \-[IDENT] Node: 'derivedidentities'
  215. | | | | | | \-[IDENT] Node: 'e1'
  216. | | | | | \-[IDENT] Node: 'b'
  217. | | | | \-[IDENT] Node: 'specjmapid'
  218. | | | \-[IDENT] Node: 'ondemand'
  219. | | \-[IDENT] Node: 'CustomerDemand'
  220. | \-[ALIAS] Node: 'a'
  221. \-[SELECT] Node: 'select'
  222. \-[COUNT] Node: 'COUNT'
  223. \-[IDENT] Node: 'a'
  224.  
  225. 08:03:33,368 DEBUG ErrorCounter:82 - throwQueryException() : no errors
  226. 08:03:33,368 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand (a) -> customerde0_
  227. 08:03:33,369 DEBUG FromReferenceNode:74 - Resolved : a -> customerde0_.C_ID
  228. 08:03:33,369 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( {select clause} ( COUNT customerde0_.C_ID ) ) ( FromClause{level=1} O_CUSTOMERDEMAND customerde0_ ) )
  229. 08:03:33,369 DEBUG JoinProcessor:175 - Using FROM fragment [O_CUSTOMERDEMAND customerde0_]
  230. 08:03:33,370 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
  231. \-[SELECT] QueryNode: 'SELECT' querySpaces (O_CUSTOMERDEMAND)
  232. +-[SELECT_CLAUSE] SelectClause: '{select clause}'
  233. | +-[COUNT] CountNode: 'COUNT'
  234. | | \-[ALIAS_REF] IdentNode: 'customerde0_.C_ID' {alias=a, className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand, tableAlias=customerde0_}
  235. | \-[SELECT_COLUMNS] SqlNode: ' as col_0_0_'
  236. \-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[a], fromElementByTableAlias=[customerde0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
  237. \-[FROM_FRAGMENT] FromElement: 'O_CUSTOMERDEMAND customerde0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=a,role=null,tableName=O_CUSTOMERDEMAND,tableAlias=customerde0_,origin=null,columns={,className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand}}
  238.  
  239. 08:03:33,370 DEBUG ErrorCounter:82 - throwQueryException() : no errors
  240. 08:03:33,370 DEBUG QueryTranslatorImpl:235 - HQL: select COUNT(a) from org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand a
  241. 08:03:33,370 DEBUG QueryTranslatorImpl:236 - SQL: select count(customerde0_.C_ID) as col_0_0_ from O_CUSTOMERDEMAND customerde0_
  242. 08:03:33,370 DEBUG ErrorCounter:82 - throwQueryException() : no errors
  243. 08:03:33,371 DEBUG QueryTranslatorImpl:265 - parse() - HQL: select a from org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand a
  244. 08:03:33,372 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
  245. \-[QUERY] Node: 'query'
  246. \-[SELECT_FROM] Node: 'SELECT_FROM'
  247. +-[FROM] Node: 'from'
  248. | \-[RANGE] Node: 'RANGE'
  249. | +-[DOT] Node: '.'
  250. | | +-[DOT] Node: '.'
  251. | | | +-[DOT] Node: '.'
  252. | | | | +-[DOT] Node: '.'
  253. | | | | | +-[DOT] Node: '.'
  254. | | | | | | +-[DOT] Node: '.'
  255. | | | | | | | +-[DOT] Node: '.'
  256. | | | | | | | | +-[DOT] Node: '.'
  257. | | | | | | | | | +-[DOT] Node: '.'
  258. | | | | | | | | | | +-[IDENT] Node: 'org'
  259. | | | | | | | | | | \-[IDENT] Node: 'hibernate'
  260. | | | | | | | | | \-[IDENT] Node: 'test'
  261. | | | | | | | | \-[IDENT] Node: 'annotations'
  262. | | | | | | | \-[IDENT] Node: 'derivedidentities'
  263. | | | | | | \-[IDENT] Node: 'e1'
  264. | | | | | \-[IDENT] Node: 'b'
  265. | | | | \-[IDENT] Node: 'specjmapid'
  266. | | | \-[IDENT] Node: 'ondemand'
  267. | | \-[IDENT] Node: 'CustomerDemand'
  268. | \-[ALIAS] Node: 'a'
  269. \-[SELECT] Node: 'select'
  270. \-[IDENT] Node: 'a'
  271.  
  272. 08:03:33,372 DEBUG ErrorCounter:82 - throwQueryException() : no errors
  273. 08:03:33,373 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand (a) -> customerde0_
  274. 08:03:33,373 DEBUG FromReferenceNode:74 - Resolved : a -> customerde0_.C_ID
  275. 08:03:33,373 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( {select clause} customerde0_.C_ID ) ( FromClause{level=1} O_CUSTOMERDEMAND customerde0_ ) )
  276. 08:03:33,374 DEBUG JoinProcessor:175 - Using FROM fragment [O_CUSTOMERDEMAND customerde0_]
  277. 08:03:33,374 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
  278. \-[SELECT] QueryNode: 'SELECT' querySpaces (O_CUSTOMERDEMAND)
  279. +-[SELECT_CLAUSE] SelectClause: '{select clause}'
  280. | +-[ALIAS_REF] IdentNode: 'customerde0_.C_ID as C1_626_' {alias=a, className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand, tableAlias=customerde0_}
  281. | \-[SQL_TOKEN] SqlFragment: 'customerde0_.C_BALANCE as C2_626_, customerde0_.C_CONTACT as C3_626_, customerde0_.C_CREDIT as C4_626_, customerde0_.C_CREDIT_LIMIT as C5_626_, customerde0_.C_FIRST as C6_626_, customerde0_.C_LAST as C7_626_, customerde0_.C_SINCE as C8_626_, customerde0_.C_VERSION as C9_626_, customerde0_.C_YTD_PAYMENT as C10_626_'
  282. \-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[a], fromElementByTableAlias=[customerde0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
  283. \-[FROM_FRAGMENT] FromElement: 'O_CUSTOMERDEMAND customerde0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=a,role=null,tableName=O_CUSTOMERDEMAND,tableAlias=customerde0_,origin=null,columns={,className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand}}
  284.  
  285. 08:03:33,374 DEBUG ErrorCounter:82 - throwQueryException() : no errors
  286. 08:03:33,374 DEBUG QueryTranslatorImpl:235 - HQL: select a from org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand a
  287. 08:03:33,375 DEBUG QueryTranslatorImpl:236 - SQL: select customerde0_.C_ID as C1_626_, customerde0_.C_BALANCE as C2_626_, customerde0_.C_CONTACT as C3_626_, customerde0_.C_CREDIT as C4_626_, customerde0_.C_CREDIT_LIMIT as C5_626_, customerde0_.C_FIRST as C6_626_, customerde0_.C_LAST as C7_626_, customerde0_.C_SINCE as C8_626_, customerde0_.C_VERSION as C9_626_, customerde0_.C_YTD_PAYMENT as C10_626_ from O_CUSTOMERDEMAND customerde0_
  288. 08:03:33,375 DEBUG ErrorCounter:82 - throwQueryException() : no errors
  289. 08:03:33,375 DEBUG QueryTranslatorImpl:265 - parse() - HQL: SELECT c.id FROM org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand c WHERE c.creditLimit > :limit
  290. 08:03:33,378 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
  291. \-[QUERY] Node: 'query'
  292. +-[SELECT_FROM] Node: 'SELECT_FROM'
  293. | +-[FROM] Node: 'FROM'
  294. | | \-[RANGE] Node: 'RANGE'
  295. | | +-[DOT] Node: '.'
  296. | | | +-[DOT] Node: '.'
  297. | | | | +-[DOT] Node: '.'
  298. | | | | | +-[DOT] Node: '.'
  299. | | | | | | +-[DOT] Node: '.'
  300. | | | | | | | +-[DOT] Node: '.'
  301. | | | | | | | | +-[DOT] Node: '.'
  302. | | | | | | | | | +-[DOT] Node: '.'
  303. | | | | | | | | | | +-[DOT] Node: '.'
  304. | | | | | | | | | | | +-[IDENT] Node: 'org'
  305. | | | | | | | | | | | \-[IDENT] Node: 'hibernate'
  306. | | | | | | | | | | \-[IDENT] Node: 'test'
  307. | | | | | | | | | \-[IDENT] Node: 'annotations'
  308. | | | | | | | | \-[IDENT] Node: 'derivedidentities'
  309. | | | | | | | \-[IDENT] Node: 'e1'
  310. | | | | | | \-[IDENT] Node: 'b'
  311. | | | | | \-[IDENT] Node: 'specjmapid'
  312. | | | | \-[IDENT] Node: 'ondemand'
  313. | | | \-[IDENT] Node: 'CustomerDemand'
  314. | | \-[ALIAS] Node: 'c'
  315. | \-[SELECT] Node: 'SELECT'
  316. | \-[DOT] Node: '.'
  317. | +-[IDENT] Node: 'c'
  318. | \-[IDENT] Node: 'id'
  319. \-[WHERE] Node: 'WHERE'
  320. \-[GT] Node: '>'
  321. +-[DOT] Node: '.'
  322. | +-[IDENT] Node: 'c'
  323. | \-[IDENT] Node: 'creditLimit'
  324. \-[COLON] Node: ':'
  325. \-[IDENT] Node: 'limit'
  326.  
  327. 08:03:33,378 DEBUG ErrorCounter:82 - throwQueryException() : no errors
  328. 08:03:33,379 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand (c) -> customerde0_
  329. 08:03:33,379 DEBUG FromReferenceNode:74 - Resolved : c -> customerde0_.C_ID
  330. 08:03:33,379 DEBUG DotNode:599 - getDataType() : id -> org.hibernate.type.IntegerType@3e4d6ff
  331. 08:03:33,379 DEBUG FromReferenceNode:74 - Resolved : c.id -> customerde0_.C_ID
  332. 08:03:33,380 DEBUG FromReferenceNode:74 - Resolved : c -> customerde0_.C_ID
  333. 08:03:33,380 DEBUG DotNode:599 - getDataType() : creditLimit -> org.hibernate.type.BigDecimalType@278f0471
  334. 08:03:33,380 DEBUG FromReferenceNode:74 - Resolved : c.creditLimit -> customerde0_.C_CREDIT_LIMIT
  335. 08:03:33,380 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( {select clause} ( customerde0_.C_ID customerde0_.C_ID id ) ) ( FromClause{level=1} O_CUSTOMERDEMAND customerde0_ ) ( WHERE ( > ( customerde0_.C_CREDIT_LIMIT customerde0_.C_ID creditLimit ) ? ) ) )
  336. 08:03:33,381 DEBUG JoinProcessor:175 - Using FROM fragment [O_CUSTOMERDEMAND customerde0_]
  337. 08:03:33,381 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
  338. \-[SELECT] QueryNode: 'SELECT' querySpaces (O_CUSTOMERDEMAND)
  339. +-[SELECT_CLAUSE] SelectClause: '{select clause}'
  340. | +-[DOT] DotNode: 'customerde0_.C_ID' {propertyName=id,dereferenceType=ALL,propertyPath=id,path=c.id,tableAlias=customerde0_,className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand,classAlias=c}
  341. | | +-[ALIAS_REF] IdentNode: 'customerde0_.C_ID' {alias=c, className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand, tableAlias=customerde0_}
  342. | | \-[IDENT] IdentNode: 'id' {originalText=id}
  343. | \-[SELECT_COLUMNS] SqlNode: ' as col_0_0_'
  344. +-[FROM] FromClause: 'FROM' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[c], fromElementByTableAlias=[customerde0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
  345. | \-[FROM_FRAGMENT] FromElement: 'O_CUSTOMERDEMAND customerde0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=c,role=null,tableName=O_CUSTOMERDEMAND,tableAlias=customerde0_,origin=null,columns={,className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand}}
  346. \-[WHERE] SqlNode: 'WHERE'
  347. \-[GT] BinaryLogicOperatorNode: '>'
  348. +-[DOT] DotNode: 'customerde0_.C_CREDIT_LIMIT' {propertyName=creditLimit,dereferenceType=ALL,propertyPath=creditLimit,path=c.creditLimit,tableAlias=customerde0_,className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand,classAlias=c}
  349. | +-[ALIAS_REF] IdentNode: 'customerde0_.C_ID' {alias=c, className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand, tableAlias=customerde0_}
  350. | \-[IDENT] IdentNode: 'creditLimit' {originalText=creditLimit}
  351. \-[NAMED_PARAM] ParameterNode: '?' {name=limit, expectedType=org.hibernate.type.BigDecimalType@278f0471}
  352.  
  353. 08:03:33,381 DEBUG ErrorCounter:82 - throwQueryException() : no errors
  354. 08:03:33,382 DEBUG QueryTranslatorImpl:235 - HQL: SELECT c.id FROM org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.CustomerDemand c WHERE c.creditLimit > :limit
  355. 08:03:33,382 DEBUG QueryTranslatorImpl:236 - SQL: select customerde0_.C_ID as col_0_0_ from O_CUSTOMERDEMAND customerde0_ where customerde0_.C_CREDIT_LIMIT>?
  356. 08:03:33,382 DEBUG ErrorCounter:82 - throwQueryException() : no errors
  357. 08:03:33,382 DEBUG QueryTranslatorImpl:265 - parse() - HQL: SELECT i FROM org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.ItemDemand i WHERE i.category=:category ORDER BY i.id
  358. 08:03:33,385 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
  359. \-[QUERY] Node: 'query'
  360. +-[SELECT_FROM] Node: 'SELECT_FROM'
  361. | +-[FROM] Node: 'FROM'
  362. | | \-[RANGE] Node: 'RANGE'
  363. | | +-[DOT] Node: '.'
  364. | | | +-[DOT] Node: '.'
  365. | | | | +-[DOT] Node: '.'
  366. | | | | | +-[DOT] Node: '.'
  367. | | | | | | +-[DOT] Node: '.'
  368. | | | | | | | +-[DOT] Node: '.'
  369. | | | | | | | | +-[DOT] Node: '.'
  370. | | | | | | | | | +-[DOT] Node: '.'
  371. | | | | | | | | | | +-[DOT] Node: '.'
  372. | | | | | | | | | | | +-[IDENT] Node: 'org'
  373. | | | | | | | | | | | \-[IDENT] Node: 'hibernate'
  374. | | | | | | | | | | \-[IDENT] Node: 'test'
  375. | | | | | | | | | \-[IDENT] Node: 'annotations'
  376. | | | | | | | | \-[IDENT] Node: 'derivedidentities'
  377. | | | | | | | \-[IDENT] Node: 'e1'
  378. | | | | | | \-[IDENT] Node: 'b'
  379. | | | | | \-[IDENT] Node: 'specjmapid'
  380. | | | | \-[IDENT] Node: 'ondemand'
  381. | | | \-[IDENT] Node: 'ItemDemand'
  382. | | \-[ALIAS] Node: 'i'
  383. | \-[SELECT] Node: 'SELECT'
  384. | \-[IDENT] Node: 'i'
  385. +-[WHERE] Node: 'WHERE'
  386. | \-[EQ] Node: '='
  387. | +-[DOT] Node: '.'
  388. | | +-[IDENT] Node: 'i'
  389. | | \-[IDENT] Node: 'category'
  390. | \-[COLON] Node: ':'
  391. | \-[IDENT] Node: 'category'
  392. \-[ORDER] Node: 'ORDER'
  393. \-[DOT] Node: '.'
  394. +-[IDENT] Node: 'i'
  395. \-[IDENT] Node: 'id'
  396.  
  397. 08:03:33,385 DEBUG ErrorCounter:82 - throwQueryException() : no errors
  398. 08:03:33,386 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.ItemDemand (i) -> itemdemand0_
  399. 08:03:33,386 DEBUG FromReferenceNode:74 - Resolved : i -> itemdemand0_.I_ID
  400. 08:03:33,387 DEBUG FromReferenceNode:74 - Resolved : i -> itemdemand0_.I_ID
  401. 08:03:33,387 DEBUG DotNode:599 - getDataType() : category -> org.hibernate.type.IntegerType@3e4d6ff
  402. 08:03:33,387 DEBUG FromReferenceNode:74 - Resolved : i.category -> itemdemand0_.I_CATEGORY
  403. 08:03:33,387 DEBUG FromReferenceNode:74 - Resolved : i -> itemdemand0_.I_ID
  404. 08:03:33,388 DEBUG DotNode:599 - getDataType() : id -> org.hibernate.type.StringType@55daeaa2
  405. 08:03:33,388 DEBUG FromReferenceNode:74 - Resolved : i.id -> itemdemand0_.I_ID
  406. 08:03:33,388 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( {select clause} itemdemand0_.I_ID ) ( FromClause{level=1} O_ITEM itemdemand0_ ) ( WHERE ( = ( itemdemand0_.I_CATEGORY itemdemand0_.I_ID category ) ? ) ) ( ORDER ( itemdemand0_.I_ID itemdemand0_.I_ID id ) ) )
  407. 08:03:33,388 DEBUG JoinProcessor:175 - Using FROM fragment [O_ITEM itemdemand0_]
  408. 08:03:33,389 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
  409. \-[SELECT] QueryNode: 'SELECT' querySpaces (O_ITEM)
  410. +-[SELECT_CLAUSE] SelectClause: '{select clause}'
  411. | +-[ALIAS_REF] IdentNode: 'itemdemand0_.I_ID as I1_628_' {alias=i, className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.ItemDemand, tableAlias=itemdemand0_}
  412. | \-[SQL_TOKEN] SqlFragment: 'itemdemand0_.I_CATEGORY as I2_628_, itemdemand0_.I_DESC as I3_628_, itemdemand0_.I_DISCOUNT as I4_628_, itemdemand0_.I_NAME as I5_628_, itemdemand0_.I_PRICE as I6_628_, itemdemand0_.I_VERSION as I7_628_'
  413. +-[FROM] FromClause: 'FROM' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[i], fromElementByTableAlias=[itemdemand0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
  414. | \-[FROM_FRAGMENT] FromElement: 'O_ITEM itemdemand0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=i,role=null,tableName=O_ITEM,tableAlias=itemdemand0_,origin=null,columns={,className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.ItemDemand}}
  415. +-[WHERE] SqlNode: 'WHERE'
  416. | \-[EQ] BinaryLogicOperatorNode: '='
  417. | +-[DOT] DotNode: 'itemdemand0_.I_CATEGORY' {propertyName=category,dereferenceType=ALL,propertyPath=category,path=i.category,tableAlias=itemdemand0_,className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.ItemDemand,classAlias=i}
  418. | | +-[ALIAS_REF] IdentNode: 'itemdemand0_.I_ID' {alias=i, className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.ItemDemand, tableAlias=itemdemand0_}
  419. | | \-[IDENT] IdentNode: 'category' {originalText=category}
  420. | \-[NAMED_PARAM] ParameterNode: '?' {name=category, expectedType=org.hibernate.type.IntegerType@3e4d6ff}
  421. \-[ORDER] OrderByClause: 'ORDER'
  422. \-[DOT] DotNode: 'itemdemand0_.I_ID' {propertyName=id,dereferenceType=ALL,propertyPath=id,path=i.id,tableAlias=itemdemand0_,className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.ItemDemand,classAlias=i}
  423. +-[ALIAS_REF] IdentNode: 'itemdemand0_.I_ID' {alias=i, className=org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.ItemDemand, tableAlias=itemdemand0_}
  424. \-[IDENT] IdentNode: 'id' {originalText=id}
  425.  
  426. 08:03:33,389 DEBUG ErrorCounter:82 - throwQueryException() : no errors
  427. 08:03:33,389 DEBUG QueryTranslatorImpl:235 - HQL: SELECT i FROM org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.ItemDemand i WHERE i.category=:category ORDER BY i.id
  428. 08:03:33,390 DEBUG QueryTranslatorImpl:236 - SQL: select itemdemand0_.I_ID as I1_628_, itemdemand0_.I_CATEGORY as I2_628_, itemdemand0_.I_DESC as I3_628_, itemdemand0_.I_DISCOUNT as I4_628_, itemdemand0_.I_NAME as I5_628_, itemdemand0_.I_PRICE as I6_628_, itemdemand0_.I_VERSION as I7_628_ from O_ITEM itemdemand0_ where itemdemand0_.I_CATEGORY=? order by itemdemand0_.I_ID
  429. 08:03:33,390 DEBUG ErrorCounter:82 - throwQueryException() : no errors
  430.  
  431. org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.LazyLoadingTest > testOnDemandLoading STANDARD_OUT
  432. 08:03:33,396 DEBUG SQL:104 -
  433. select
  434. tbl.S_NEXTNUM
  435. from
  436. U_SEQUENCES tbl
  437. where
  438. tbl.S_ID=? for update
  439.  
  440. Hibernate:
  441. select
  442. tbl.S_NEXTNUM
  443. from
  444. U_SEQUENCES tbl
  445. where
  446. tbl.S_ID=? for update
  447.  
  448. 08:03:33,400 DEBUG SQL:104 -
  449. insert
  450. into
  451. U_SEQUENCES
  452. (S_ID, S_NEXTNUM)
  453. values
  454. (?,?)
  455. Hibernate:
  456. insert
  457. into
  458. U_SEQUENCES
  459. (S_ID, S_NEXTNUM)
  460. values
  461. (?,?)
  462. 08:03:33,401 DEBUG SQL:104 -
  463. update
  464. U_SEQUENCES
  465. set
  466. S_NEXTNUM=?
  467. where
  468. S_NEXTNUM=?
  469. and S_ID=?
  470. Hibernate:
  471. update
  472. U_SEQUENCES
  473. set
  474. S_NEXTNUM=?
  475. where
  476. S_NEXTNUM=?
  477. and S_ID=?
  478. 08:03:33,403 DEBUG SQL:104 -
  479. select
  480. tbl.S_NEXTNUM
  481. from
  482. U_SEQUENCES tbl
  483. where
  484. tbl.S_ID=? for update
  485.  
  486. Hibernate:
  487. select
  488. tbl.S_NEXTNUM
  489. from
  490. U_SEQUENCES tbl
  491. where
  492. tbl.S_ID=? for update
  493.  
  494. 08:03:33,404 DEBUG SQL:104 -
  495. update
  496. U_SEQUENCES
  497. set
  498. S_NEXTNUM=?
  499. where
  500. S_NEXTNUM=?
  501. and S_ID=?
  502. Hibernate:
  503. update
  504. U_SEQUENCES
  505. set
  506. S_NEXTNUM=?
  507. where
  508. S_NEXTNUM=?
  509. and S_ID=?
  510. 08:03:33,407 DEBUG SQL:104 -
  511. insert
  512. into
  513. O_CUSTOMERDEMAND
  514. (C_BALANCE, C_CONTACT, C_CREDIT, C_CREDIT_LIMIT, C_FIRST, C_LAST, C_SINCE, C_VERSION, C_YTD_PAYMENT, C_ID)
  515. values
  516. (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  517. Hibernate:
  518. insert
  519. into
  520. O_CUSTOMERDEMAND
  521. (C_BALANCE, C_CONTACT, C_CREDIT, C_CREDIT_LIMIT, C_FIRST, C_LAST, C_SINCE, C_VERSION, C_YTD_PAYMENT, C_ID)
  522. values
  523. (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  524. 08:03:33,409 DEBUG SQL:104 -
  525. insert
  526. into
  527. O_ITEM
  528. (I_CATEGORY, I_DESC, I_DISCOUNT, I_NAME, I_PRICE, I_VERSION, I_ID)
  529. values
  530. (?, ?, ?, ?, ?, ?, ?)
  531. Hibernate:
  532. insert
  533. into
  534. O_ITEM
  535. (I_CATEGORY, I_DESC, I_DISCOUNT, I_NAME, I_PRICE, I_VERSION, I_ID)
  536. values
  537. (?, ?, ?, ?, ?, ?, ?)
  538. 08:03:33,411 DEBUG SQL:104 -
  539. insert
  540. into
  541. O_CUSTINVENTORY
  542. (CI_QUANTITY, CI_VALUE, CI_ITEMID, CI_VERSION, CI_CUSTOMERID, CI_ID)
  543. values
  544. (?, ?, ?, ?, ?, ?)
  545. Hibernate:
  546. insert
  547. into
  548. O_CUSTINVENTORY
  549. (CI_QUANTITY, CI_VALUE, CI_ITEMID, CI_VERSION, CI_CUSTOMERID, CI_ID)
  550. values
  551. (?, ?, ?, ?, ?, ?)
  552. 08:03:33,419 DEBUG SQL:104 -
  553. select
  554. customerde0_.C_ID as C1_626_0_,
  555. customerde0_.C_BALANCE as C2_626_0_,
  556. customerde0_.C_CONTACT as C3_626_0_,
  557. customerde0_.C_CREDIT as C4_626_0_,
  558. customerde0_.C_CREDIT_LIMIT as C5_626_0_,
  559. customerde0_.C_FIRST as C6_626_0_,
  560. customerde0_.C_LAST as C7_626_0_,
  561. customerde0_.C_SINCE as C8_626_0_,
  562. customerde0_.C_VERSION as C9_626_0_,
  563. customerde0_.C_YTD_PAYMENT as C10_626_0_
  564. from
  565. O_CUSTOMERDEMAND customerde0_
  566. where
  567. customerde0_.C_ID=?
  568. Hibernate:
  569. select
  570. customerde0_.C_ID as C1_626_0_,
  571. customerde0_.C_BALANCE as C2_626_0_,
  572. customerde0_.C_CONTACT as C3_626_0_,
  573. customerde0_.C_CREDIT as C4_626_0_,
  574. customerde0_.C_CREDIT_LIMIT as C5_626_0_,
  575. customerde0_.C_FIRST as C6_626_0_,
  576. customerde0_.C_LAST as C7_626_0_,
  577. customerde0_.C_SINCE as C8_626_0_,
  578. customerde0_.C_VERSION as C9_626_0_,
  579. customerde0_.C_YTD_PAYMENT as C10_626_0_
  580. from
  581. O_CUSTOMERDEMAND customerde0_
  582. where
  583. customerde0_.C_ID=?
  584. 08:03:33,421 DEBUG SQL:104 -
  585. select
  586. customerin0_.CI_CUSTOMERID as CI1_626_2_,
  587. customerin0_.CI_CUSTOMERID as CI1_2_,
  588. customerin0_.CI_ID as CI2_2_,
  589. customerin0_.CI_CUSTOMERID as CI1_627_1_,
  590. customerin0_.CI_ID as CI2_627_1_,
  591. customerin0_.CI_QUANTITY as CI3_627_1_,
  592. customerin0_.CI_VALUE as CI4_627_1_,
  593. customerin0_.CI_ITEMID as CI6_627_1_,
  594. customerin0_.CI_VERSION as CI5_627_1_,
  595. itemdemand1_.I_ID as I1_628_0_,
  596. itemdemand1_.I_CATEGORY as I2_628_0_,
  597. itemdemand1_.I_DESC as I3_628_0_,
  598. itemdemand1_.I_DISCOUNT as I4_628_0_,
  599. itemdemand1_.I_NAME as I5_628_0_,
  600. itemdemand1_.I_PRICE as I6_628_0_,
  601. itemdemand1_.I_VERSION as I7_628_0_
  602. from
  603. O_CUSTINVENTORY customerin0_
  604. left outer join
  605. O_ITEM itemdemand1_
  606. on customerin0_.CI_ITEMID=itemdemand1_.I_ID
  607. where
  608. customerin0_.CI_CUSTOMERID=?
  609. Hibernate:
  610. select
  611. customerin0_.CI_CUSTOMERID as CI1_626_2_,
  612. customerin0_.CI_CUSTOMERID as CI1_2_,
  613. customerin0_.CI_ID as CI2_2_,
  614. customerin0_.CI_CUSTOMERID as CI1_627_1_,
  615. customerin0_.CI_ID as CI2_627_1_,
  616. customerin0_.CI_QUANTITY as CI3_627_1_,
  617. customerin0_.CI_VALUE as CI4_627_1_,
  618. customerin0_.CI_ITEMID as CI6_627_1_,
  619. customerin0_.CI_VERSION as CI5_627_1_,
  620. itemdemand1_.I_ID as I1_628_0_,
  621. itemdemand1_.I_CATEGORY as I2_628_0_,
  622. itemdemand1_.I_DESC as I3_628_0_,
  623. itemdemand1_.I_DISCOUNT as I4_628_0_,
  624. itemdemand1_.I_NAME as I5_628_0_,
  625. itemdemand1_.I_PRICE as I6_628_0_,
  626. itemdemand1_.I_VERSION as I7_628_0_
  627. from
  628. O_CUSTINVENTORY customerin0_
  629. left outer join
  630. O_ITEM itemdemand1_
  631. on customerin0_.CI_ITEMID=itemdemand1_.I_ID
  632. where
  633. customerin0_.CI_CUSTOMERID=?
  634. 08:03:33,424 DEBUG SQL:104 -
  635. select
  636. customerde0_.C_ID as C1_626_0_,
  637. customerde0_.C_BALANCE as C2_626_0_,
  638. customerde0_.C_CONTACT as C3_626_0_,
  639. customerde0_.C_CREDIT as C4_626_0_,
  640. customerde0_.C_CREDIT_LIMIT as C5_626_0_,
  641. customerde0_.C_FIRST as C6_626_0_,
  642. customerde0_.C_LAST as C7_626_0_,
  643. customerde0_.C_SINCE as C8_626_0_,
  644. customerde0_.C_VERSION as C9_626_0_,
  645. customerde0_.C_YTD_PAYMENT as C10_626_0_
  646. from
  647. O_CUSTOMERDEMAND customerde0_
  648. where
  649. customerde0_.C_ID=?
  650. Hibernate:
  651. select
  652. customerde0_.C_ID as C1_626_0_,
  653. customerde0_.C_BALANCE as C2_626_0_,
  654. customerde0_.C_CONTACT as C3_626_0_,
  655. customerde0_.C_CREDIT as C4_626_0_,
  656. customerde0_.C_CREDIT_LIMIT as C5_626_0_,
  657. customerde0_.C_FIRST as C6_626_0_,
  658. customerde0_.C_LAST as C7_626_0_,
  659. customerde0_.C_SINCE as C8_626_0_,
  660. customerde0_.C_VERSION as C9_626_0_,
  661. customerde0_.C_YTD_PAYMENT as C10_626_0_
  662. from
  663. O_CUSTOMERDEMAND customerde0_
  664. where
  665. customerde0_.C_ID=?
  666.  
  667. org.hibernate.test.annotations.derivedidentities.e1.b.specjmapid.ondemand.LazyLoadingTest STANDARD_OUT
  668. 08:03:33,426 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
  669. 08:03:33,427 DEBUG SchemaExport:353 - Import file not found: /import.sql
  670. 08:03:33,427 DEBUG SQL:104 -
  671. alter table O_CUSTINVENTORY
  672. drop constraint FK223174592F7D6A92
  673. Hibernate:
  674. alter table O_CUSTINVENTORY
  675. drop constraint FK223174592F7D6A92
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement