Project

General

Profile

1
# Database import/export
2

    
3
import copy
4
import operator
5

    
6
import exc
7
import dicts
8
import sql
9
import sql_gen
10
import strings
11
import util
12

    
13
##### Exceptions
14

    
15
# Can't use built-in SyntaxError because it stringifies to only the first line
16
class SyntaxError(Exception): pass
17

    
18
##### Data cleanup
19

    
20
def cleanup_table(db, table, cols):
21
    table = sql_gen.as_Table(table)
22
    cols = map(sql_gen.as_Col, cols)
23
    
24
    expr = ('nullif(nullif(trim(both from %s), '+db.esc_value('')+'), '
25
        +db.esc_value(r'\N')+')')
26
    changes = [(v, sql_gen.CustomCode(expr % v.to_str(db)))
27
        for v in cols]
28
    
29
    sql.update(db, table, changes, in_place=True)
30

    
31
##### Error tracking
32

    
33
def track_data_error(db, errors_table, cols, value, error_code, error):
34
    '''
35
    @param errors_table If None, does nothing.
36
    '''
37
    if errors_table == None or cols == (): return
38
    
39
    for col in cols:
40
        try:
41
            sql.insert(db, errors_table, dict(column=col.name, value=value,
42
                error_code=error_code, error=error), recover=True,
43
                cacheable=True, log_level=4)
44
        except sql.DuplicateKeyException: pass
45

    
46
class ExcToErrorsTable(sql_gen.ExcToWarning):
47
    '''Handles an exception by saving it or converting it to a warning.'''
48
    def __init__(self, return_, srcs, errors_table, value=None):
49
        '''
50
        @param return_ See sql_gen.ExcToWarning
51
        @param srcs The column names for the errors table
52
        @param errors_table None|sql_gen.Table
53
        @param value The value (or an expression for it) that caused the error
54
        @pre The invalid value must be in a local variable "value" of type text.
55
        '''
56
        sql_gen.ExcToWarning.__init__(self, return_)
57
        
58
        value = sql_gen.as_Code(value)
59
        
60
        self.srcs = srcs
61
        self.errors_table = errors_table
62
        self.value = value
63
    
64
    def to_str(self, db):
65
        if not self.srcs or self.errors_table == None:
66
            return sql_gen.ExcToWarning.to_str(self, db)
67
        
68
        errors_table_cols = map(sql_gen.Col,
69
            ['column', 'value', 'error_code', 'error'])
70
        col_names_query = sql.mk_select(db, sql_gen.NamedValues('c', None,
71
            [[c.name] for c in self.srcs]), order_by=None)
72
        insert_query = sql.mk_insert_select(db, self.errors_table,
73
            errors_table_cols,
74
            sql_gen.Values(errors_table_cols).to_str(db))+';\n'
75
        return '''\
76
-- Save error in errors table.
77
DECLARE
78
    error_code text := SQLSTATE;
79
    error text := SQLERRM;
80
    value text := '''+self.value.to_str(db)+''';
81
    "column" text;
82
BEGIN
83
    -- Insert the value and error for *each* source column.
84
'''+strings.indent(sql_gen.RowExcIgnore(None, col_names_query, insert_query,
85
    row_var=errors_table_cols[0]).to_str(db))+'''
86
END;
87

    
88
'''+self.return_.to_str(db)
89

    
90
def data_exception_handler(*args, **kw_args):
91
    '''Handles a data_exception by saving it or converting it to a warning.
92
    For params, see ExcToErrorsTable().
93
    '''
94
    return sql_gen.data_exception_handler(ExcToErrorsTable(*args, **kw_args))
95

    
96
def cast(db, type_, col, errors_table=None):
97
    '''Casts an (unrenamed) column or value.
98
    If errors_table set and col has srcs, saves errors in errors_table (using
99
    col's srcs attr as source columns). Otherwise, converts errors to warnings.
100
    @param col str|sql_gen.Col|sql_gen.Literal
101
    @param errors_table None|sql_gen.Table|str
102
    '''
103
    col = sql_gen.as_Col(col)
104
    
105
    # Don't convert exceptions to warnings for user-supplied constants
106
    if isinstance(col, sql_gen.Literal): return sql_gen.Cast(type_, col)
107
    
108
    assert not isinstance(col, sql_gen.NamedCol)
109
    
110
    function_name = strings.first_word(type_)
111
    srcs = col.srcs
112
    save_errors = errors_table != None and srcs
113
    if save_errors: # function will be unique for the given srcs
114
        function_name = str(sql_gen.FunctionCall(function_name,
115
            *map(sql_gen.to_name_only_col, srcs)))
116
    function = db.TempFunction(function_name)
117
    
118
    # Create function definition
119
    modifiers = 'STRICT'
120
    if not save_errors: modifiers = 'IMMUTABLE '+modifiers
121
    value_param = sql_gen.FunctionParam('value', 'text')
122
    handler = data_exception_handler('RETURN NULL;\n', srcs, errors_table,
123
        value_param.name)
124
    body = sql_gen.CustomCode(handler.to_str(db, '''\
125
/* The explicit cast to the return type is needed to make the cast happen
126
inside the try block. (Implicit casts to the return type happen at the end
127
of the function, outside any block.) */
128
RETURN value::'''+type_+''';
129
'''))
130
    body.lang='plpgsql'
131
    sql.define_func(db, sql_gen.FunctionDef(function, type_, body,
132
        [value_param], modifiers))
133
    
134
    return sql_gen.FunctionCall(function, col)
135

    
136
def func_wrapper_exception_handler(db, return_, args, errors_table):
137
    '''Handles a function call's data_exceptions.
138
    Supports PL/Python functions.
139
    @param return_ See data_exception_handler()
140
    @param args [arg...] Function call's args
141
    @param errors_table See data_exception_handler()
142
    '''
143
    args = filter(sql_gen.has_srcs, args)
144
    
145
    srcs = sql_gen.cross_join_srcs(args)
146
    value = sql_gen.merge_not_null(db, ',', args)
147
    return sql_gen.NestedExcHandler(
148
        data_exception_handler(return_, srcs, errors_table, value)
149
        , sql_gen.plpythonu_error_handler
150
        )
151

    
152
def cast_temp_col(db, type_, col, errors_table=None):
153
    '''Like cast(), but creates a new column with the cast values if the input
154
    is a column.
155
    @return The new column or cast value
156
    '''
157
    def cast_(col): return cast(db, type_, col, errors_table)
158
    
159
    try: col = sql_gen.underlying_col(col)
160
    except sql_gen.NoUnderlyingTableException: return sql_gen.wrap(cast_, col)
161
    
162
    table = col.table
163
    new_col = sql_gen.suffixed_col(col, '::'+strings.first_word(type_))
164
    expr = cast_(col)
165
    
166
    # Add column
167
    new_typed_col = sql_gen.TypedCol(new_col.name, type_)
168
    sql.add_col(db, table, new_typed_col, comment=repr(col)+'::'+type_)
169
    new_col.name = new_typed_col.name # propagate any renaming
170
    
171
    sql.update(db, table, [(new_col, expr)], in_place=True, recover=True)
172
    
173
    return new_col
174

    
175
def errors_table(db, table, if_exists=True):
176
    '''
177
    @param if_exists If set, returns None if the errors table doesn't exist
178
    @return None|sql_gen.Table
179
    '''
180
    table = sql_gen.as_Table(table)
181
    if table.srcs != (): table = table.srcs[0]
182
    
183
    errors_table = sql_gen.suffixed_table(table, '.errors')
184
    if if_exists and not sql.table_exists(db, errors_table): return None
185
    return errors_table
186

    
187
##### Import
188

    
189
def put(db, table, row, pkey_=None, row_ct_ref=None):
190
    '''Recovers from errors.
191
    Only works under PostgreSQL (uses INSERT RETURNING).
192
    '''
193
    return put_table(db, table, [], row, row_ct_ref)
194

    
195
def get(db, table, row, pkey, row_ct_ref=None, create=False):
196
    '''Recovers from errors'''
197
    try:
198
        return sql.value(sql.select(db, table, [pkey], row, limit=1,
199
            recover=True))
200
    except StopIteration:
201
        if not create: raise
202
        return put(db, table, row, pkey, row_ct_ref) # insert new row
203

    
204
def is_func_result(col):
205
    return col.table.name.find('(') >= 0 and col.name == 'result'
206

    
207
def into_table_name(out_table, in_tables0, mapping, is_func):
208
    def in_col_str(in_col):
209
        in_col = sql_gen.remove_col_rename(in_col)
210
        if isinstance(in_col, sql_gen.Col):
211
            table = in_col.table
212
            if table == in_tables0:
213
                in_col = sql_gen.to_name_only_col(in_col)
214
            elif is_func_result(in_col): in_col = table # omit col name
215
        return str(in_col)
216
    
217
    str_ = str(out_table)
218
    if is_func:
219
        str_ += '('
220
        
221
        try: value_in_col = mapping['value']
222
        except KeyError:
223
            str_ += ', '.join((str(k)+'='+in_col_str(v)
224
                for k, v in mapping.iteritems()))
225
        else: str_ += in_col_str(value_in_col)
226
        
227
        str_ += ')'
228
    else:
229
        out_col = 'rank'
230
        try: in_col = mapping[out_col]
231
        except KeyError: str_ += '_pkeys'
232
        else: # has a rank column, so hierarchical
233
            str_ += '['+str(out_col)+'='+in_col_str(in_col)+']'
234
    return str_
235

    
236
def put_table(db, out_table, in_tables, mapping, row_ct_ref=None, default=None,
237
    col_defaults={}, on_error=exc.reraise):
238
    '''Recovers from errors.
239
    Only works under PostgreSQL (uses INSERT RETURNING).
240
    IMPORTANT: Must be run at the *beginning* of a transaction.
241
    @param in_tables The main input table to select from, followed by a list of
242
        tables to join with it using the main input table's pkey
243
    @param mapping dict(out_table_col=in_table_col, ...)
244
        * out_table_col: str (*not* sql_gen.Col)
245
        * in_table_col: sql_gen.Col|literal-value
246
    @param default The *output* column to use as the pkey for missing rows.
247
        If this output column does not exist in the mapping, uses None.
248
    @param col_defaults Default values for required columns.
249
    @return sql_gen.Col Where the output pkeys are made available
250
    '''
251
    import psycopg2.extensions
252
    
253
    out_table = sql_gen.as_Table(out_table)
254
    
255
    def log_debug(msg): db.log_debug(msg, level=1.5)
256
    def col_ustr(str_):
257
        return strings.repr_no_u(sql_gen.remove_col_rename(str_))
258
    
259
    log_debug('********** New iteration **********')
260
    log_debug('Inserting these input columns into '+strings.as_tt(
261
        out_table.to_str(db))+':\n'+strings.as_table(mapping, ustr=col_ustr))
262
    
263
    is_function = sql.function_exists(db, out_table)
264
    
265
    if is_function: out_pkey = 'result'
266
    else: out_pkey = sql.pkey(db, out_table, recover=True)
267
    out_pkey_col = sql_gen.as_Col(out_pkey, out_table)
268
    
269
    in_tables_ = in_tables[:] # don't modify input!
270
    try: in_tables0 = in_tables_.pop(0) # first table is separate
271
    except IndexError: in_tables0 = None
272
    else:
273
        in_pkey = sql.pkey(db, in_tables0, recover=True)
274
        in_pkey_col = sql_gen.as_Col(in_pkey, in_tables0)
275
    
276
    # Determine if can use optimization for only literal values
277
    is_literals = not reduce(operator.or_, map(sql_gen.is_table_col,
278
        mapping.values()), False)
279
    is_literals_or_function = is_literals or is_function
280
    
281
    if in_tables0 == None: errors_table_ = None
282
    else: errors_table_ = errors_table(db, in_tables0)
283
    
284
    # Create input joins from list of input tables
285
    input_joins = [in_tables0]+[sql_gen.Join(v,
286
        {in_pkey: sql_gen.join_same_not_null}) for v in in_tables_]
287
    
288
    if mapping == {} and not is_function: # need >= one column for INSERT SELECT
289
        mapping = {out_pkey: None} # ColDict will replace with default value
290
    
291
    if not is_literals:
292
        into = sql_gen.as_Table(into_table_name(out_table, in_tables0, mapping,
293
            is_function))
294
        
295
        # Set column sources
296
        in_cols = filter(sql_gen.is_table_col, mapping.values())
297
        for col in in_cols:
298
            if col.table == in_tables0: col.set_srcs(sql_gen.src_self)
299
        
300
        log_debug('Joining together input tables into temp table')
301
        # Place in new table so don't modify input and for speed
302
        in_table = sql_gen.Table('in')
303
        mapping = dicts.join(mapping, sql.flatten(db, in_table, input_joins,
304
            in_cols, preserve=[in_pkey_col]))
305
        input_joins = [in_table]
306
        db.log_debug('Temp table: '+strings.as_tt(in_table.to_str(db)), level=2)
307
    
308
    mapping = sql_gen.ColDict(db, out_table, mapping)
309
        # after applying dicts.join() because that returns a plain dict
310
    
311
    # Resolve default value column
312
    if default != None:
313
        try: default = mapping[default]
314
        except KeyError:
315
            db.log_debug('Default value column '
316
                +strings.as_tt(strings.repr_no_u(default))
317
                +' does not exist in mapping, falling back to None', level=2.1)
318
            default = None
319
    
320
    # Save default values for all rows since in_table may have rows deleted
321
    if is_literals: pass
322
    elif is_function: full_in_table = in_table
323
    else:
324
        full_in_table = sql_gen.suffixed_table(in_table, '_full')
325
        full_in_table_cols = [in_pkey_col]
326
        if default != None:
327
            full_in_table_cols.append(default)
328
            default = sql_gen.with_table(default, full_in_table)
329
        sql.run_query_into(db, sql.mk_select(db, in_table, full_in_table_cols,
330
            order_by=None), into=full_in_table, add_pkey_=True)
331
    
332
    if not is_literals:
333
        pkeys_names = [in_pkey, out_pkey]
334
        pkeys_cols = [in_pkey_col, out_pkey_col]
335
    
336
    pkeys_table_exists_ref = [False]
337
    def insert_into_pkeys(joins, cols=None, limit=None, **kw_args):
338
        query = sql.mk_select(db, joins, cols, order_by=None, limit=limit)
339
        if pkeys_table_exists_ref[0]:
340
            sql.insert_select(db, into, pkeys_names, query, **kw_args)
341
        else:
342
            sql.run_query_into(db, query, into=into, add_pkey_=True, **kw_args)
343
            pkeys_table_exists_ref[0] = True
344
    
345
    limit_ref = [None]
346
    def mk_main_select(joins, cols):
347
        return sql.mk_select(db, joins, cols, limit=limit_ref[0], order_by=None)
348
    
349
    if is_literals: insert_in_table = None
350
    else:
351
        insert_in_table = in_table
352
        insert_in_tables = [insert_in_table]
353
    join_cols = sql_gen.ColDict(db, out_table)
354
    
355
    exc_strs = set()
356
    def log_exc(e):
357
        e_str = exc.str_(e, first_line_only=True)
358
        log_debug('Caught exception: '+e_str)
359
        if e_str in exc_strs: # avoid infinite loops
360
            log_debug('Exception already seen, handler broken')
361
            on_error(e)
362
            remove_all_rows()
363
        else: exc_strs.add(e_str)
364
    
365
    def remove_all_rows():
366
        log_debug('Ignoring all rows')
367
        limit_ref[0] = 0 # just create an empty pkeys table
368
    
369
    def ignore_cond(cond, e):
370
        out_table_cols = sql_gen.ColDict(db, out_table)
371
        out_table_cols.update(util.dict_subset_right_join({},
372
            sql.table_cols(db, out_table)))
373
        
374
        in_cols = []
375
        cond = sql.map_expr(db, cond, mapping, in_cols)
376
        cond = sql.map_expr(db, cond, out_table_cols)
377
        
378
        track_data_error(db, errors_table_, sql_gen.cols_srcs(in_cols), None,
379
            e.cause.pgcode,
380
            strings.ensure_newl(e.cause.pgerror)+'condition: '+cond)
381
        
382
        not_cond = sql_gen.NotCond(sql_gen.CustomCode(cond))
383
        log_debug('Ignoring rows where '+strings.as_tt(not_cond.to_str(db)))
384
        sql.delete(db, insert_in_table, not_cond)
385
    
386
    not_null_cols = set()
387
    def ignore(in_col, value, e):
388
        if sql_gen.is_table_col(in_col):
389
            in_col = sql_gen.with_table(in_col, insert_in_table)
390
            
391
            track_data_error(db, errors_table_, in_col.srcs, value,
392
                e.cause.pgcode, e.cause.pgerror)
393
            
394
            sql.add_index(db, in_col, insert_in_table) # enable fast filtering
395
            if value != None and in_col not in not_null_cols:
396
                log_debug('Replacing invalid value '+strings.as_tt(repr(value))
397
                    +' with NULL in column '+strings.as_tt(in_col.to_str(db)))
398
                sql.update(db, insert_in_table, [(in_col, None)],
399
                    sql_gen.ColValueCond(in_col, value))
400
            else:
401
                log_debug('Ignoring rows with '+strings.as_tt(in_col.to_str(db))
402
                    +' = '+strings.as_tt(repr(value)))
403
                sql.delete(db, insert_in_table,
404
                    sql_gen.ColValueCond(in_col, value))
405
                if value == None: not_null_cols.add(in_col)
406
        else:
407
            assert isinstance(in_col, sql_gen.NamedCol)
408
            if value != None:
409
                log_debug('Replacing invalid literal '
410
                    +strings.as_tt(in_col.to_str(db))+' with NULL')
411
                mapping[in_col.name] = None
412
            else:
413
                remove_all_rows()
414
    
415
    if not is_literals:
416
        def insert_pkeys_table(which):
417
            return sql_gen.Table(sql_gen.concat(in_table.name,
418
                '_insert_'+which+'_pkeys'))
419
        insert_out_pkeys = insert_pkeys_table('out')
420
        insert_in_pkeys = insert_pkeys_table('in')
421
    
422
    if is_function:
423
        args = dict(((k.name, v) for k, v in mapping.iteritems()))
424
        func_call = sql_gen.NamedCol(out_pkey,
425
            sql_gen.FunctionCall(out_table, **args))
426
        
427
        if not is_literals:
428
            log_debug('Defining wrapper function')
429
            
430
            # Create empty pkeys table so its row type can be used
431
            insert_into_pkeys(input_joins, [in_pkey_col, func_call], limit=0,
432
                recover=True)
433
            result_type = db.col_info(sql_gen.Col(out_pkey, into)).type
434
            
435
            ## Create error handling wrapper function
436
            
437
            wrapper = db.TempFunction(sql_gen.concat(into.name, '_wrap'))
438
            
439
            select_cols = [in_pkey_col]+args.values()
440
            row_var = copy.copy(sql_gen.row_var)
441
            row_var.set_srcs([in_table])
442
            in_pkey_var = sql_gen.Col(in_pkey, row_var)
443
            
444
            args = dict(((k, sql_gen.with_table(v, row_var))
445
                for k, v in args.iteritems()))
446
            func_call = sql_gen.FunctionCall(out_table, **args)
447
            
448
            def mk_return(result):
449
                return sql_gen.ReturnQuery(sql.mk_select(db,
450
                    fields=[in_pkey_var, result], explain=False))
451
            exc_handler = func_wrapper_exception_handler(db,
452
                mk_return(sql_gen.Cast(result_type, None)), args.values(),
453
                errors_table_)
454
            
455
            sql.define_func(db, sql_gen.FunctionDef(wrapper,
456
                sql_gen.SetOf(into),
457
                sql_gen.RowExcIgnore(sql_gen.RowType(in_table),
458
                    sql.mk_select(db, input_joins, order_by=None),
459
                    mk_return(func_call), exc_handler=exc_handler)
460
                ))
461
            wrapper_table = sql_gen.FunctionCall(wrapper)
462
    
463
    # Do inserts and selects
464
    while True:
465
        has_joins = join_cols != {}
466
        
467
        # Handle unrecoverable errors in a special case
468
        if limit_ref[0] == 0:
469
            assert not has_joins
470
            
471
            if is_literals:
472
                log_debug('Returning default: '+strings.as_tt(repr(default)))
473
                return default
474
            elif is_function: pass # empty pkeys table already created
475
            else:
476
                log_debug('Creating an empty output pkeys table')
477
                cur = sql.run_query_into(db, sql.mk_select(db, out_table,
478
                    [out_pkey], order_by=None, limit=0), into=insert_out_pkeys)
479
            
480
            break # don't do main case
481
        
482
        # Prepare to insert new rows
483
        if is_function: log_debug('Calling function on input rows')
484
        else:
485
            log_debug('Trying to insert new rows')
486
            insert_args = dict(recover=True, cacheable=False)
487
            if has_joins:
488
                insert_args.update(dict(ignore=True))
489
            else:
490
                insert_args.update(dict(returning=out_pkey))
491
                if not is_literals:
492
                    insert_args.update(dict(into=insert_out_pkeys))
493
            main_select = mk_main_select([insert_in_table], [sql_gen.with_table(
494
                c, insert_in_table) for c in mapping.values()])
495
        
496
        try:
497
            cur = None
498
            if is_function:
499
                if is_literals: cur = sql.select(db, fields=[func_call])
500
                else: insert_into_pkeys(wrapper_table, recover=True)
501
            else:
502
                cur = sql.insert_select(db, out_table, mapping.keys(),
503
                    main_select, **insert_args)
504
            break # insert successful
505
        except sql.MissingCastException, e:
506
            log_exc(e)
507
            
508
            out_col = e.col
509
            type_ = e.type
510
            
511
            log_debug('Casting '+strings.as_tt(out_col)+' input to '
512
                +strings.as_tt(type_))
513
            in_col = mapping[out_col]
514
            while True:
515
                try:
516
                    mapping[out_col] = cast_temp_col(db, type_, in_col,
517
                        errors_table_)
518
                    break # cast successful
519
                except sql.InvalidValueException, e:
520
                    log_exc(e)
521
                    
522
                    ignore(in_col, e.value, e)
523
        except sql.DuplicateKeyException, e:
524
            log_exc(e)
525
            
526
            # Different rows violating different unique constraints not
527
            # supported
528
            assert not join_cols
529
            
530
            join_cols.update(util.dict_subset_right_join(mapping, e.cols))
531
            log_debug('Ignoring existing rows, comparing on these columns:\n'
532
                +strings.as_inline_table(join_cols, ustr=col_ustr))
533
            
534
            if is_literals:
535
                return sql.value(sql.select(db, out_table, [out_pkey_col],
536
                    mapping, order_by=None))
537
            
538
            # Uniquify input table to avoid internal duplicate keys
539
            insert_in_table = sql.distinct_table(db, insert_in_table,
540
                join_cols.values())
541
            insert_in_tables.append(insert_in_table)
542
        except sql.NullValueException, e:
543
            log_exc(e)
544
            
545
            out_col, = e.cols
546
            try: in_col = mapping[out_col]
547
            except KeyError, e:
548
                try: in_col = mapping[out_col] = col_defaults[out_col]
549
                except KeyError:
550
                    msg = 'Missing mapping for NOT NULL column '+out_col
551
                    log_debug(msg)
552
                    if default == None: on_error(SyntaxError(msg))# required col
553
                    remove_all_rows()
554
            else: ignore(in_col, None, e)
555
        except sql.CheckException, e:
556
            log_exc(e)
557
            
558
            ignore_cond(e.cond, e)
559
        except sql.InvalidValueException, e:
560
            log_exc(e)
561
            
562
            for in_col in mapping.values(): ignore(in_col, e.value, e)
563
        except psycopg2.extensions.TransactionRollbackError, e:
564
            log_exc(e)
565
            # retry
566
        except sql.DatabaseErrors, e:
567
            log_exc(e)
568
            
569
            log_debug('No handler for exception')
570
            on_error(e)
571
            remove_all_rows()
572
        # after exception handled, rerun loop with additional constraints
573
    
574
    if cur != None and row_ct_ref != None and cur.rowcount >= 0:
575
        row_ct_ref[0] += cur.rowcount
576
    
577
    if is_literals: return sql.value(cur)
578
    
579
    if is_function: pass # pkeys table already created
580
    elif has_joins:
581
        select_joins = input_joins+[sql_gen.Join(out_table, join_cols)]
582
        log_debug('Getting output table pkeys of existing/inserted rows')
583
        insert_into_pkeys(select_joins, pkeys_cols)
584
    else:
585
        sql.add_row_num(db, insert_out_pkeys) # for joining with input pkeys
586
        
587
        log_debug('Getting input table pkeys of inserted rows')
588
        # Note that mk_main_select() does not use ORDER BY. Instead, assume that
589
        # since the SELECT query is identical to the one used in INSERT SELECT,
590
        # its rows will be retrieved in the same order.
591
        sql.run_query_into(db, mk_main_select(input_joins, [in_pkey]),
592
            into=insert_in_pkeys)
593
        sql.add_row_num(db, insert_in_pkeys) # for joining with output pkeys
594
        
595
        assert sql.table_row_count(db, insert_out_pkeys) == sql.table_row_count(
596
            db, insert_in_pkeys)
597
        
598
        log_debug('Combining output and input pkeys in inserted order')
599
        pkey_joins = [insert_in_pkeys, sql_gen.Join(insert_out_pkeys,
600
            {sql.row_num_col: sql_gen.join_same_not_null})]
601
        insert_into_pkeys(pkey_joins, pkeys_names)
602
        
603
        sql.empty_temp(db, [insert_out_pkeys, insert_in_pkeys])
604
    
605
    if limit_ref[0] == 0 or not is_function: # is_function doesn't leave holes
606
        log_debug('Setting pkeys of missing rows to '
607
            +strings.as_tt(repr(default)))
608
        missing_rows_joins = [full_in_table, sql_gen.Join(into,
609
            {in_pkey: sql_gen.join_same_not_null}, sql_gen.filter_out)]
610
            # must use join_same_not_null or query will take forever
611
        insert_into_pkeys(missing_rows_joins,
612
            [sql_gen.Col(in_pkey, full_in_table),
613
            sql_gen.NamedCol(out_pkey, default)])
614
    # otherwise, there is already an entry for every row
615
    
616
    assert (sql.table_row_count(db, into)
617
        == sql.table_row_count(db, full_in_table))
618
    
619
    sql.empty_temp(db, insert_in_tables+[full_in_table])
620
    
621
    srcs = []
622
    if is_function: srcs = sql_gen.cols_srcs(in_cols)
623
    return sql_gen.Col(out_pkey, into, srcs)
(26-26/37)