ObjPgSQL  Check-in [770a096b55]

Overview
Comment:Fix method name mismatch
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | trunk
Files: files | file ages | folders
SHA3-256: 770a096b55820c6e2d290aebabc455ecda51560c1e1ef99ceb9b04c6b2f9a00d
User & Date: js on 2021-04-29 22:46:16
Other Links: manifest | tags
Context
2021-04-29
22:46
Fix method name mismatch Leaf check-in: 770a096b55 user: js tags: trunk
22:36
Adjust to ObjFW changes check-in: 0af9225d64 user: js tags: trunk
Changes

Modified src/PGResultRow.m from [007cd2722f] to [ec1b0cfc06].

64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
@interface PGResultRowKeyEnumerator: PGResultRowEnumerator
@end

@interface PGResultRowObjectEnumerator: PGResultRowEnumerator
@end

@implementation PGResultRow
+ (instancetype)rowWithResult: (PGResult *)result row: (int)row
{
	return [[[self alloc] initWithResult: result row: row] autorelease];
}

- (instancetype)initWithResult: (PGResult *)result row: (int)row
{
	self = [super init];

	_result = [result retain];
	_res = result.pg_result;
	_row = row;








|

|


|







64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
@interface PGResultRowKeyEnumerator: PGResultRowEnumerator
@end

@interface PGResultRowObjectEnumerator: PGResultRowEnumerator
@end

@implementation PGResultRow
+ (instancetype)pg_rowWithResult: (PGResult *)result row: (int)row
{
	return [[[self alloc] pg_initWithResult: result row: row] autorelease];
}

- (instancetype)pg_initWithResult: (PGResult *)result row: (int)row
{
	self = [super init];

	_result = [result retain];
	_res = result.pg_result;
	_row = row;