Re-generated code

This commit is contained in:
Data Geekery CI Bot 2024-02-13 04:24:39 +01:00
parent a1cf391006
commit 8eda6bdf24
50 changed files with 100 additions and 0 deletions

View File

@ -121,6 +121,8 @@ public class Author extends TableImpl<AuthorRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class AuthorPath extends Author implements Path<AuthorRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> AuthorPath(Table<O> path, ForeignKey<O, AuthorRecord> childPath, InverseForeignKey<O, AuthorRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -107,6 +107,8 @@ public class Book extends TableImpl<BookRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class BookPath extends Book implements Path<BookRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> BookPath(Table<O> path, ForeignKey<O, BookRecord> childPath, InverseForeignKey<O, BookRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -106,6 +106,8 @@ public class Actor extends TableImpl<ActorRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class ActorPath extends Actor implements Path<ActorRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> ActorPath(Table<O> path, ForeignKey<O, ActorRecord> childPath, InverseForeignKey<O, ActorRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -125,6 +125,8 @@ public class Film extends TableImpl<FilmRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class FilmPath extends Film implements Path<FilmRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> FilmPath(Table<O> path, ForeignKey<O, FilmRecord> childPath, InverseForeignKey<O, FilmRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -103,6 +103,8 @@ public class FilmActor extends TableImpl<FilmActorRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class FilmActorPath extends FilmActor implements Path<FilmActorRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> FilmActorPath(Table<O> path, ForeignKey<O, FilmActorRecord> childPath, InverseForeignKey<O, FilmActorRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -100,6 +100,8 @@ public class Language extends TableImpl<LanguageRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class LanguagePath extends Language implements Path<LanguageRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> LanguagePath(Table<O> path, ForeignKey<O, LanguageRecord> childPath, InverseForeignKey<O, LanguageRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -106,6 +106,8 @@ public class Author extends TableImpl<AuthorRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class AuthorPath extends Author implements Path<AuthorRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> AuthorPath(Table<O> path, ForeignKey<O, AuthorRecord> childPath, InverseForeignKey<O, AuthorRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -108,6 +108,8 @@ public class Book extends TableImpl<BookRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class BookPath extends Book implements Path<BookRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> BookPath(Table<O> path, ForeignKey<O, BookRecord> childPath, InverseForeignKey<O, BookRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -117,6 +117,8 @@ public class Actor extends TableImpl<ActorRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class ActorPath extends Actor implements Path<ActorRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> ActorPath(Table<O> path, ForeignKey<O, ActorRecord> childPath, InverseForeignKey<O, ActorRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -139,6 +139,8 @@ public class Address extends TableImpl<AddressRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class AddressPath extends Address implements Path<AddressRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> AddressPath(Table<O> path, ForeignKey<O, AddressRecord> childPath, InverseForeignKey<O, AddressRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -108,6 +108,8 @@ public class Category extends TableImpl<CategoryRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class CategoryPath extends Category implements Path<CategoryRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> CategoryPath(Table<O> path, ForeignKey<O, CategoryRecord> childPath, InverseForeignKey<O, CategoryRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -117,6 +117,8 @@ public class City extends TableImpl<CityRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class CityPath extends City implements Path<CityRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> CityPath(Table<O> path, ForeignKey<O, CityRecord> childPath, InverseForeignKey<O, CityRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -107,6 +107,8 @@ public class Country extends TableImpl<CountryRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class CountryPath extends Country implements Path<CountryRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> CountryPath(Table<O> path, ForeignKey<O, CountryRecord> childPath, InverseForeignKey<O, CountryRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -156,6 +156,8 @@ public class Customer extends TableImpl<CustomerRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class CustomerPath extends Customer implements Path<CustomerRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> CustomerPath(Table<O> path, ForeignKey<O, CustomerRecord> childPath, InverseForeignKey<O, CustomerRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -181,6 +181,8 @@ public class Film extends TableImpl<FilmRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class FilmPath extends Film implements Path<FilmRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> FilmPath(Table<O> path, ForeignKey<O, FilmRecord> childPath, InverseForeignKey<O, FilmRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -111,6 +111,8 @@ public class FilmActor extends TableImpl<FilmActorRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class FilmActorPath extends FilmActor implements Path<FilmActorRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> FilmActorPath(Table<O> path, ForeignKey<O, FilmActorRecord> childPath, InverseForeignKey<O, FilmActorRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -109,6 +109,8 @@ public class FilmCategory extends TableImpl<FilmCategoryRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class FilmCategoryPath extends FilmCategory implements Path<FilmCategoryRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> FilmCategoryPath(Table<O> path, ForeignKey<O, FilmCategoryRecord> childPath, InverseForeignKey<O, FilmCategoryRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -118,6 +118,8 @@ public class Inventory extends TableImpl<InventoryRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class InventoryPath extends Inventory implements Path<InventoryRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> InventoryPath(Table<O> path, ForeignKey<O, InventoryRecord> childPath, InverseForeignKey<O, InventoryRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -107,6 +107,8 @@ public class Language extends TableImpl<LanguageRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class LanguagePath extends Language implements Path<LanguageRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> LanguagePath(Table<O> path, ForeignKey<O, LanguageRecord> childPath, InverseForeignKey<O, LanguageRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -129,6 +129,8 @@ public class Payment extends TableImpl<PaymentRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class PaymentPath extends Payment implements Path<PaymentRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> PaymentPath(Table<O> path, ForeignKey<O, PaymentRecord> childPath, InverseForeignKey<O, PaymentRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -130,6 +130,8 @@ public class PaymentP2007_01 extends TableImpl<PaymentP2007_01Record> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class PaymentP2007_01Path extends PaymentP2007_01 implements Path<PaymentP2007_01Record> {
private static final long serialVersionUID = 1L;
public <O extends Record> PaymentP2007_01Path(Table<O> path, ForeignKey<O, PaymentP2007_01Record> childPath, InverseForeignKey<O, PaymentP2007_01Record> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -130,6 +130,8 @@ public class PaymentP2007_02 extends TableImpl<PaymentP2007_02Record> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class PaymentP2007_02Path extends PaymentP2007_02 implements Path<PaymentP2007_02Record> {
private static final long serialVersionUID = 1L;
public <O extends Record> PaymentP2007_02Path(Table<O> path, ForeignKey<O, PaymentP2007_02Record> childPath, InverseForeignKey<O, PaymentP2007_02Record> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -130,6 +130,8 @@ public class PaymentP2007_03 extends TableImpl<PaymentP2007_03Record> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class PaymentP2007_03Path extends PaymentP2007_03 implements Path<PaymentP2007_03Record> {
private static final long serialVersionUID = 1L;
public <O extends Record> PaymentP2007_03Path(Table<O> path, ForeignKey<O, PaymentP2007_03Record> childPath, InverseForeignKey<O, PaymentP2007_03Record> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -130,6 +130,8 @@ public class PaymentP2007_04 extends TableImpl<PaymentP2007_04Record> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class PaymentP2007_04Path extends PaymentP2007_04 implements Path<PaymentP2007_04Record> {
private static final long serialVersionUID = 1L;
public <O extends Record> PaymentP2007_04Path(Table<O> path, ForeignKey<O, PaymentP2007_04Record> childPath, InverseForeignKey<O, PaymentP2007_04Record> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -130,6 +130,8 @@ public class PaymentP2007_05 extends TableImpl<PaymentP2007_05Record> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class PaymentP2007_05Path extends PaymentP2007_05 implements Path<PaymentP2007_05Record> {
private static final long serialVersionUID = 1L;
public <O extends Record> PaymentP2007_05Path(Table<O> path, ForeignKey<O, PaymentP2007_05Record> childPath, InverseForeignKey<O, PaymentP2007_05Record> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -130,6 +130,8 @@ public class PaymentP2007_06 extends TableImpl<PaymentP2007_06Record> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class PaymentP2007_06Path extends PaymentP2007_06 implements Path<PaymentP2007_06Record> {
private static final long serialVersionUID = 1L;
public <O extends Record> PaymentP2007_06Path(Table<O> path, ForeignKey<O, PaymentP2007_06Record> childPath, InverseForeignKey<O, PaymentP2007_06Record> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -140,6 +140,8 @@ public class Rental extends TableImpl<RentalRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class RentalPath extends Rental implements Path<RentalRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> RentalPath(Table<O> path, ForeignKey<O, RentalRecord> childPath, InverseForeignKey<O, RentalRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -158,6 +158,8 @@ public class Staff extends TableImpl<StaffRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class StaffPath extends Staff implements Path<StaffRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> StaffPath(Table<O> path, ForeignKey<O, StaffRecord> childPath, InverseForeignKey<O, StaffRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -119,6 +119,8 @@ public class Store extends TableImpl<StoreRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class StorePath extends Store implements Path<StoreRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> StorePath(Table<O> path, ForeignKey<O, StoreRecord> childPath, InverseForeignKey<O, StoreRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -117,6 +117,8 @@ public class Actor extends TableImpl<ActorRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class ActorPath extends Actor implements Path<ActorRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> ActorPath(Table<O> path, ForeignKey<O, ActorRecord> childPath, InverseForeignKey<O, ActorRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -139,6 +139,8 @@ public class Address extends TableImpl<AddressRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class AddressPath extends Address implements Path<AddressRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> AddressPath(Table<O> path, ForeignKey<O, AddressRecord> childPath, InverseForeignKey<O, AddressRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -108,6 +108,8 @@ public class Category extends TableImpl<CategoryRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class CategoryPath extends Category implements Path<CategoryRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> CategoryPath(Table<O> path, ForeignKey<O, CategoryRecord> childPath, InverseForeignKey<O, CategoryRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -117,6 +117,8 @@ public class City extends TableImpl<CityRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class CityPath extends City implements Path<CityRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> CityPath(Table<O> path, ForeignKey<O, CityRecord> childPath, InverseForeignKey<O, CityRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -107,6 +107,8 @@ public class Country extends TableImpl<CountryRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class CountryPath extends Country implements Path<CountryRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> CountryPath(Table<O> path, ForeignKey<O, CountryRecord> childPath, InverseForeignKey<O, CountryRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -156,6 +156,8 @@ public class Customer extends TableImpl<CustomerRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class CustomerPath extends Customer implements Path<CustomerRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> CustomerPath(Table<O> path, ForeignKey<O, CustomerRecord> childPath, InverseForeignKey<O, CustomerRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -181,6 +181,8 @@ public class Film extends TableImpl<FilmRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class FilmPath extends Film implements Path<FilmRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> FilmPath(Table<O> path, ForeignKey<O, FilmRecord> childPath, InverseForeignKey<O, FilmRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -111,6 +111,8 @@ public class FilmActor extends TableImpl<FilmActorRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class FilmActorPath extends FilmActor implements Path<FilmActorRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> FilmActorPath(Table<O> path, ForeignKey<O, FilmActorRecord> childPath, InverseForeignKey<O, FilmActorRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -109,6 +109,8 @@ public class FilmCategory extends TableImpl<FilmCategoryRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class FilmCategoryPath extends FilmCategory implements Path<FilmCategoryRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> FilmCategoryPath(Table<O> path, ForeignKey<O, FilmCategoryRecord> childPath, InverseForeignKey<O, FilmCategoryRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -118,6 +118,8 @@ public class Inventory extends TableImpl<InventoryRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class InventoryPath extends Inventory implements Path<InventoryRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> InventoryPath(Table<O> path, ForeignKey<O, InventoryRecord> childPath, InverseForeignKey<O, InventoryRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -107,6 +107,8 @@ public class Language extends TableImpl<LanguageRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class LanguagePath extends Language implements Path<LanguageRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> LanguagePath(Table<O> path, ForeignKey<O, LanguageRecord> childPath, InverseForeignKey<O, LanguageRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -129,6 +129,8 @@ public class Payment extends TableImpl<PaymentRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class PaymentPath extends Payment implements Path<PaymentRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> PaymentPath(Table<O> path, ForeignKey<O, PaymentRecord> childPath, InverseForeignKey<O, PaymentRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -130,6 +130,8 @@ public class PaymentP2007_01 extends TableImpl<PaymentP2007_01Record> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class PaymentP2007_01Path extends PaymentP2007_01 implements Path<PaymentP2007_01Record> {
private static final long serialVersionUID = 1L;
public <O extends Record> PaymentP2007_01Path(Table<O> path, ForeignKey<O, PaymentP2007_01Record> childPath, InverseForeignKey<O, PaymentP2007_01Record> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -130,6 +130,8 @@ public class PaymentP2007_02 extends TableImpl<PaymentP2007_02Record> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class PaymentP2007_02Path extends PaymentP2007_02 implements Path<PaymentP2007_02Record> {
private static final long serialVersionUID = 1L;
public <O extends Record> PaymentP2007_02Path(Table<O> path, ForeignKey<O, PaymentP2007_02Record> childPath, InverseForeignKey<O, PaymentP2007_02Record> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -130,6 +130,8 @@ public class PaymentP2007_03 extends TableImpl<PaymentP2007_03Record> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class PaymentP2007_03Path extends PaymentP2007_03 implements Path<PaymentP2007_03Record> {
private static final long serialVersionUID = 1L;
public <O extends Record> PaymentP2007_03Path(Table<O> path, ForeignKey<O, PaymentP2007_03Record> childPath, InverseForeignKey<O, PaymentP2007_03Record> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -130,6 +130,8 @@ public class PaymentP2007_04 extends TableImpl<PaymentP2007_04Record> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class PaymentP2007_04Path extends PaymentP2007_04 implements Path<PaymentP2007_04Record> {
private static final long serialVersionUID = 1L;
public <O extends Record> PaymentP2007_04Path(Table<O> path, ForeignKey<O, PaymentP2007_04Record> childPath, InverseForeignKey<O, PaymentP2007_04Record> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -130,6 +130,8 @@ public class PaymentP2007_05 extends TableImpl<PaymentP2007_05Record> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class PaymentP2007_05Path extends PaymentP2007_05 implements Path<PaymentP2007_05Record> {
private static final long serialVersionUID = 1L;
public <O extends Record> PaymentP2007_05Path(Table<O> path, ForeignKey<O, PaymentP2007_05Record> childPath, InverseForeignKey<O, PaymentP2007_05Record> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -130,6 +130,8 @@ public class PaymentP2007_06 extends TableImpl<PaymentP2007_06Record> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class PaymentP2007_06Path extends PaymentP2007_06 implements Path<PaymentP2007_06Record> {
private static final long serialVersionUID = 1L;
public <O extends Record> PaymentP2007_06Path(Table<O> path, ForeignKey<O, PaymentP2007_06Record> childPath, InverseForeignKey<O, PaymentP2007_06Record> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -140,6 +140,8 @@ public class Rental extends TableImpl<RentalRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class RentalPath extends Rental implements Path<RentalRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> RentalPath(Table<O> path, ForeignKey<O, RentalRecord> childPath, InverseForeignKey<O, RentalRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -158,6 +158,8 @@ public class Staff extends TableImpl<StaffRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class StaffPath extends Staff implements Path<StaffRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> StaffPath(Table<O> path, ForeignKey<O, StaffRecord> childPath, InverseForeignKey<O, StaffRecord> parentPath) {
super(path, childPath, parentPath);
}

View File

@ -119,6 +119,8 @@ public class Store extends TableImpl<StoreRecord> {
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class StorePath extends Store implements Path<StoreRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> StorePath(Table<O> path, ForeignKey<O, StoreRecord> childPath, InverseForeignKey<O, StoreRecord> parentPath) {
super(path, childPath, parentPath);
}