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
##### Data cleanup
14

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

    
26
##### Error tracking
27

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

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

    
83
'''+self.return_.to_str(db)
84

    
85
def data_exception_handler(*args, **kw_args):
86
    '''Handles a data_exception by saving it or converting it to a warning.
87
    For params, see ExcToErrorsTable().
88
    '''
89
    return sql_gen.data_exception_handler(ExcToErrorsTable(*args, **kw_args))
90

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

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

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

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

    
182
##### Import
183

    
184
def put(db, table, row, pkey_=None, row_ct_ref=None):
185
    '''Recovers from errors.
186
    Only works under PostgreSQL (uses INSERT RETURNING).
187
    '''
188
    row = sql_gen.ColDict(db, table, row)
189
    if pkey_ == None: pkey_ = sql.pkey(db, table, recover=True)
190
    
191
    try:
192
        cur = sql.insert(db, table, row, pkey_, recover=True, log_level=3.5)
193
        if row_ct_ref != None and cur.rowcount >= 0:
194
            row_ct_ref[0] += cur.rowcount
195
        return sql.value(cur)
196
    except sql.DuplicateKeyException, e:
197
        row = sql_gen.ColDict(db, table,
198
            util.dict_subset_right_join(row, e.cols))
199
        return sql.value(sql.select(db, table, [pkey_], row, recover=True,
200
            log_level=3.5))
201
    except sql.NullValueException: return None
202

    
203
def get(db, table, row, pkey, row_ct_ref=None, create=False):
204
    '''Recovers from errors'''
205
    try:
206
        return sql.value(sql.select(db, table, [pkey], row, limit=1,
207
            recover=True))
208
    except StopIteration:
209
        if not create: raise
210
        return put(db, table, row, pkey, row_ct_ref) # insert new row
211

    
212
def is_func_result(col):
213
    return col.table.name.find('(') >= 0 and col.name == 'result'
214

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

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