mirror of
https://github.com/gnustep/libs-sqlclient.git
synced 2025-06-04 19:11:13 +00:00
Copying literal strings should just retain them.
This commit is contained in:
parent
ce149e7ee3
commit
4c2a293640
1 changed files with 8 additions and 0 deletions
|
@ -432,6 +432,14 @@ quoteBigInteger(int64_t i)
|
|||
format: @"Illegal attempt to allocate instance of SQLLiteral"];
|
||||
return nil;
|
||||
}
|
||||
- (id) copy
|
||||
{
|
||||
return RETAIN(self);
|
||||
}
|
||||
- (id) copyWithZone: (NSZone*)z
|
||||
{
|
||||
return RETAIN(self);
|
||||
}
|
||||
@end
|
||||
|
||||
@implementation SQLLiteralProxy
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue