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
    # Wrap mapping in a sql_gen.ColDict.
309
    # sql_gen.ColDict sanitizes both keys and values passed into it.
310
    # Do after applying dicts.join() because that returns a plain dict.
311
    mapping = sql_gen.ColDict(db, out_table, mapping)
312
    
313
    # Resolve default value column
314
    if default != None:
315
        try: default = mapping[default]
316
        except KeyError:
317
            db.log_debug('Default value column '
318
                +strings.as_tt(strings.repr_no_u(default))
319
                +' does not exist in mapping, falling back to None', level=2.1)
320
            default = None
321
    
322
    # Save default values for all rows since in_table may have rows deleted
323
    if is_literals: pass
324
    elif is_function: full_in_table = in_table
325
    else:
326
        full_in_table = sql_gen.suffixed_table(in_table, '_full')
327
        full_in_table_cols = [in_pkey_col]
328
        if default != None:
329
            full_in_table_cols.append(default)
330
            default = sql_gen.with_table(default, full_in_table)
331
        sql.run_query_into(db, sql.mk_select(db, in_table, full_in_table_cols,
332
            order_by=None), into=full_in_table, add_pkey_=True)
333
    
334
    if not is_literals:
335
        pkeys_names = [in_pkey, out_pkey]
336
        pkeys_cols = [in_pkey_col, out_pkey_col]
337
    
338
    pkeys_table_exists_ref = [False]
339
    def insert_into_pkeys(joins, cols=None, limit=None, **kw_args):
340
        query = sql.mk_select(db, joins, cols, order_by=None, limit=limit)
341
        if pkeys_table_exists_ref[0]:
342
            sql.insert_select(db, into, pkeys_names, query, **kw_args)
343
        else:
344
            sql.run_query_into(db, query, into=into, add_pkey_=True, **kw_args)
345
            pkeys_table_exists_ref[0] = True
346
    
347
    limit_ref = [None]
348
    def mk_main_select(joins, cols):
349
        return sql.mk_select(db, joins, cols, limit=limit_ref[0], order_by=None)
350
    
351
    if is_literals: insert_in_table = None
352
    else:
353
        insert_in_table = in_table
354
        insert_in_tables = [insert_in_table]
355
    join_cols = sql_gen.ColDict(db, out_table)
356
    
357
    exc_strs = set()
358
    def log_exc(e):
359
        e_str = exc.str_(e, first_line_only=True)
360
        log_debug('Caught exception: '+e_str)
361
        if e_str in exc_strs: # avoid infinite loops
362
            log_debug('Exception already seen, handler broken')
363
            on_error(e)
364
            remove_all_rows()
365
        else: exc_strs.add(e_str)
366
    
367
    def remove_all_rows():
368
        log_debug('Ignoring all rows')
369
        limit_ref[0] = 0 # just create an empty pkeys table
370
    
371
    def ignore_cond(cond, e):
372
        out_table_cols = sql_gen.ColDict(db, out_table)
373
        out_table_cols.update(util.dict_subset_right_join({},
374
            sql.table_cols(db, out_table)))
375
        
376
        in_cols = []
377
        cond = sql.map_expr(db, cond, mapping, in_cols)
378
        cond = sql.map_expr(db, cond, out_table_cols)
379
        
380
        track_data_error(db, errors_table_, sql_gen.cols_srcs(in_cols), None,
381
            e.cause.pgcode,
382
            strings.ensure_newl(e.cause.pgerror)+'condition: '+cond)
383
        
384
        not_cond = sql_gen.NotCond(sql_gen.CustomCode(cond))
385
        log_debug('Ignoring rows where '+strings.as_tt(not_cond.to_str(db)))
386
        sql.delete(db, insert_in_table, not_cond)
387
    
388
    not_null_cols = set()
389
    def ignore(in_col, value, e):
390
        if sql_gen.is_table_col(in_col):
391
            in_col = sql_gen.with_table(in_col, insert_in_table)
392
            
393
            track_data_error(db, errors_table_, in_col.srcs, value,
394
                e.cause.pgcode, e.cause.pgerror)
395
            
396
            sql.add_index(db, in_col, insert_in_table) # enable fast filtering
397
            if value != None and in_col not in not_null_cols:
398
                log_debug('Replacing invalid value '+strings.as_tt(repr(value))
399
                    +' with NULL in column '+strings.as_tt(in_col.to_str(db)))
400
                sql.update(db, insert_in_table, [(in_col, None)],
401
                    sql_gen.ColValueCond(in_col, value))
402
            else:
403
                log_debug('Ignoring rows with '+strings.as_tt(in_col.to_str(db))
404
                    +' = '+strings.as_tt(repr(value)))
405
                sql.delete(db, insert_in_table,
406
                    sql_gen.ColValueCond(in_col, value))
407
                if value == None: not_null_cols.add(in_col)
408
        else:
409
            assert isinstance(in_col, sql_gen.NamedCol)
410
            in_value = sql_gen.remove_col_rename(in_col)
411
            assert sql_gen.is_literal(in_value)
412
            if value == in_value.value:
413
                if value != None:
414
                    log_debug('Replacing invalid literal '
415
                        +strings.as_tt(in_col.to_str(db))+' with NULL')
416
                    mapping[in_col.name] = None
417
                else:
418
                    remove_all_rows()
419
            # otherwise, all columns were being ignore()d because the specific
420
            # column couldn't be identified, and this was not the invalid column
421
    
422
    if not is_literals:
423
        def insert_pkeys_table(which):
424
            return sql_gen.Table(sql_gen.concat(in_table.name,
425
                '_insert_'+which+'_pkeys'))
426
        insert_out_pkeys = insert_pkeys_table('out')
427
        insert_in_pkeys = insert_pkeys_table('in')
428
    
429
    if is_function:
430
        args = dict(((k.name, v) for k, v in mapping.iteritems()))
431
        func_call = sql_gen.NamedCol(out_pkey,
432
            sql_gen.FunctionCall(out_table, **args))
433
        
434
        if not is_literals:
435
            log_debug('Defining wrapper function')
436
            
437
            # Create empty pkeys table so its row type can be used
438
            insert_into_pkeys(input_joins, [in_pkey_col, func_call], limit=0,
439
                recover=True)
440
            result_type = db.col_info(sql_gen.Col(out_pkey, into)).type
441
            
442
            ## Create error handling wrapper function
443
            
444
            wrapper = db.TempFunction(sql_gen.concat(into.name, '_wrap'))
445
            
446
            select_cols = [in_pkey_col]+args.values()
447
            row_var = copy.copy(sql_gen.row_var)
448
            row_var.set_srcs([in_table])
449
            in_pkey_var = sql_gen.Col(in_pkey, row_var)
450
            
451
            args = dict(((k, sql_gen.with_table(v, row_var))
452
                for k, v in args.iteritems()))
453
            func_call = sql_gen.FunctionCall(out_table, **args)
454
            
455
            def mk_return(result):
456
                return sql_gen.ReturnQuery(sql.mk_select(db,
457
                    fields=[in_pkey_var, result], explain=False))
458
            exc_handler = func_wrapper_exception_handler(db,
459
                mk_return(sql_gen.Cast(result_type, None)), args.values(),
460
                errors_table_)
461
            
462
            sql.define_func(db, sql_gen.FunctionDef(wrapper,
463
                sql_gen.SetOf(into),
464
                sql_gen.RowExcIgnore(sql_gen.RowType(in_table),
465
                    sql.mk_select(db, input_joins, order_by=None),
466
                    mk_return(func_call), exc_handler=exc_handler)
467
                ))
468
            wrapper_table = sql_gen.FunctionCall(wrapper)
469
    
470
    # Do inserts and selects
471
    while True:
472
        has_joins = join_cols != {}
473
        
474
        # Handle unrecoverable errors in a special case
475
        if limit_ref[0] == 0:
476
            assert not has_joins
477
            
478
            if is_literals:
479
                default = sql_gen.remove_col_rename(default)
480
                log_debug('Returning default: '+strings.as_tt(repr(default)))
481
                return default
482
            elif is_function: pass # empty pkeys table already created
483
            else:
484
                log_debug('Creating an empty output pkeys table')
485
                cur = sql.run_query_into(db, sql.mk_select(db, out_table,
486
                    [out_pkey], order_by=None, limit=0), into=insert_out_pkeys)
487
            
488
            break # don't do main case
489
        
490
        # Prepare to insert new rows
491
        if is_function: log_debug('Calling function on input rows')
492
        else:
493
            log_debug('Trying to insert new rows')
494
            insert_args = dict(recover=True, cacheable=False)
495
            if has_joins:
496
                insert_args.update(dict(ignore=True))
497
            else:
498
                insert_args.update(dict(returning=out_pkey))
499
                if not is_literals:
500
                    insert_args.update(dict(into=insert_out_pkeys))
501
            main_select = mk_main_select([insert_in_table], [sql_gen.with_table(
502
                c, insert_in_table) for c in mapping.values()])
503
        
504
        try:
505
            cur = None
506
            if is_function:
507
                if is_literals: cur = sql.select(db, fields=[func_call])
508
                else: insert_into_pkeys(wrapper_table, recover=True)
509
            else:
510
                cur = sql.insert_select(db, out_table, mapping.keys(),
511
                    main_select, **insert_args)
512
            break # insert successful
513
        except sql.MissingCastException, e:
514
            log_exc(e)
515
            
516
            out_col = e.col
517
            type_ = e.type
518
            
519
            log_debug('Casting '+strings.as_tt(out_col)+' input to '
520
                +strings.as_tt(type_))
521
            in_col = mapping[out_col]
522
            while True:
523
                try:
524
                    mapping[out_col] = cast_temp_col(db, type_, in_col,
525
                        errors_table_)
526
                    break # cast successful
527
                except sql.InvalidValueException, e:
528
                    log_exc(e)
529
                    
530
                    ignore(in_col, e.value, e)
531
        except sql.DuplicateKeyException, e:
532
            log_exc(e)
533
            
534
            # Different rows violating different unique constraints not
535
            # supported
536
            assert not join_cols
537
            
538
            join_cols.update(util.dict_subset_right_join(mapping, e.cols))
539
            log_debug('Ignoring existing rows, comparing on these columns:\n'
540
                +strings.as_inline_table(join_cols, ustr=col_ustr))
541
            
542
            if is_literals:
543
                return sql.value(sql.select(db, out_table, [out_pkey_col],
544
                    mapping, order_by=None))
545
            
546
            # Uniquify input table to avoid internal duplicate keys
547
            insert_in_table = sql.distinct_table(db, insert_in_table,
548
                join_cols.values())
549
            insert_in_tables.append(insert_in_table)
550
        except sql.NullValueException, e:
551
            log_exc(e)
552
            
553
            out_col, = e.cols
554
            try: in_col = mapping[out_col]
555
            except KeyError, e:
556
                try: in_col = mapping[out_col] = col_defaults[out_col]
557
                except KeyError:
558
                    msg = 'Missing mapping for NOT NULL column '+out_col
559
                    log_debug(msg)
560
                    if default == None: on_error(SyntaxError(msg))# required col
561
                    remove_all_rows()
562
            else: ignore(in_col, None, e)
563
        except sql.CheckException, e:
564
            log_exc(e)
565
            
566
            ignore_cond(e.cond, e)
567
        except sql.InvalidValueException, e:
568
            log_exc(e)
569
            
570
            for in_col in mapping.values(): ignore(in_col, e.value, e)
571
        except psycopg2.extensions.TransactionRollbackError, e:
572
            log_exc(e)
573
            # retry
574
        except sql.DatabaseErrors, e:
575
            log_exc(e)
576
            
577
            log_debug('No handler for exception')
578
            on_error(e)
579
            remove_all_rows()
580
        # after exception handled, rerun loop with additional constraints
581
    
582
    if cur != None and row_ct_ref != None and cur.rowcount >= 0:
583
        row_ct_ref[0] += cur.rowcount
584
    
585
    if is_literals: return sql.value(cur)
586
    
587
    if is_function: pass # pkeys table already created
588
    elif has_joins:
589
        select_joins = input_joins+[sql_gen.Join(out_table, join_cols)]
590
        log_debug('Getting output table pkeys of existing/inserted rows')
591
        insert_into_pkeys(select_joins, pkeys_cols)
592
    else:
593
        sql.add_row_num(db, insert_out_pkeys) # for joining with input pkeys
594
        
595
        log_debug('Getting input table pkeys of inserted rows')
596
        # Note that mk_main_select() does not use ORDER BY. Instead, assume that
597
        # since the SELECT query is identical to the one used in INSERT SELECT,
598
        # its rows will be retrieved in the same order.
599
        sql.run_query_into(db, mk_main_select(input_joins, [in_pkey]),
600
            into=insert_in_pkeys)
601
        sql.add_row_num(db, insert_in_pkeys) # for joining with output pkeys
602
        
603
        assert sql.table_row_count(db, insert_out_pkeys) == sql.table_row_count(
604
            db, insert_in_pkeys)
605
        
606
        log_debug('Combining output and input pkeys in inserted order')
607
        pkey_joins = [insert_in_pkeys, sql_gen.Join(insert_out_pkeys,
608
            {sql.row_num_col: sql_gen.join_same_not_null})]
609
        insert_into_pkeys(pkey_joins, pkeys_names)
610
        
611
        sql.empty_temp(db, [insert_out_pkeys, insert_in_pkeys])
612
    
613
    if limit_ref[0] == 0 or not is_function: # is_function doesn't leave holes
614
        log_debug('Setting pkeys of missing rows to '
615
            +strings.as_tt(repr(default)))
616
        missing_rows_joins = [full_in_table, sql_gen.Join(into,
617
            {in_pkey: sql_gen.join_same_not_null}, sql_gen.filter_out)]
618
            # must use join_same_not_null or query will take forever
619
        insert_into_pkeys(missing_rows_joins,
620
            [sql_gen.Col(in_pkey, full_in_table),
621
            sql_gen.NamedCol(out_pkey, default)])
622
    # otherwise, there is already an entry for every row
623
    
624
    assert (sql.table_row_count(db, into)
625
        == sql.table_row_count(db, full_in_table))
626
    
627
    sql.empty_temp(db, insert_in_tables+[full_in_table])
628
    
629
    srcs = []
630
    if is_function: srcs = sql_gen.cols_srcs(in_cols)
631
    return sql_gen.Col(out_pkey, into, srcs)
(26-26/37)