Skip to content

Commit

Permalink
HHH-1283 : Added tests that reproduce the issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gbadner committed Sep 11, 2012
1 parent 7b486fc commit cb1069a
Show file tree
Hide file tree
Showing 4 changed files with 551 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package org.hibernate.test.hqlfetchscroll;

public class Child {

private String name;

Child() {
}

public Child(String name) {
this.name = name;
}

public String getName() {
return name;
}

private void setName(String name) {
this.name = name;
}

public String toString() {
return name;
}
}
Loading

0 comments on commit cb1069a

Please sign in to comment.