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
            in_value = sql_gen.remove_col_rename(in_col)
409
            assert sql_gen.is_literal(in_value)
410
            if value == in_value.value:
411
                if value != None:
412
                    log_debug('Replacing invalid literal '
413
                        +strings.as_tt(in_col.to_str(db))+' with NULL')
414
                    mapping[in_col.name] = None
415
                else:
416
                    remove_all_rows()
417
            # otherwise, all columns were being ignore()d because the specific
418
            # column couldn't be identified, and this was not the invalid column
419
    
420
    if not is_literals:
421
        def insert_pkeys_table(which):
422
            return sql_gen.Table(sql_gen.concat(in_table.name,
423
                '_insert_'+which+'_pkeys'))
424
        insert_out_pkeys = insert_pkeys_table('out')
425
        insert_in_pkeys = insert_pkeys_table('in')
426
    
427
    if is_function:
428
        args = dict(((k.name, v) for k, v in mapping.iteritems()))
429
        func_call = sql_gen.NamedCol(out_pkey,
430
            sql_gen.FunctionCall(out_table, **args))
431
        
432
        if not is_literals:
433
            log_debug('Defining wrapper function')
434
            
435
            # Create empty pkeys table so its row type can be used
436
            insert_into_pkeys(input_joins, [in_pkey_col, func_call], limit=0,
437
                recover=True)
438
            result_type = db.col_info(sql_gen.Col(out_pkey, into)).type
439
            
440
            ## Create error handling wrapper function
441
            
442
            wrapper = db.TempFunction(sql_gen.concat(into.name, '_wrap'))
443
            
444
            select_cols = [in_pkey_col]+args.values()
445
            row_var = copy.copy(sql_gen.row_var)
446
            row_var.set_srcs([in_table])
447
            in_pkey_var = sql_gen.Col(in_pkey, row_var)
448
            
449
            args = dict(((k, sql_gen.with_table(v, row_var))
450
                for k, v in args.iteritems()))
451
            func_call = sql_gen.FunctionCall(out_table, **args)
452
            
453
            def mk_return(result):
454
                return sql_gen.ReturnQuery(sql.mk_select(db,
455
                    fields=[in_pkey_var, result], explain=False))
456
            exc_handler = func_wrapper_exception_handler(db,
457
                mk_return(sql_gen.Cast(result_type, None)), args.values(),
458
                errors_table_)
459
            
460
            sql.define_func(db, sql_gen.FunctionDef(wrapper,
461
                sql_gen.SetOf(into),
462
                sql_gen.RowExcIgnore(sql_gen.RowType(in_table),
463
                    sql.mk_select(db, input_joins, order_by=None),
464
                    mk_return(func_call), exc_handler=exc_handler)
465
                ))
466
            wrapper_table = sql_gen.FunctionCall(wrapper)
467
    
468
    # Do inserts and selects
469
    while True:
470
        has_joins = join_cols != {}
471
        
472
        # Handle unrecoverable errors in a special case
473
        if limit_ref[0] == 0:
474
            assert not has_joins
475
            
476
            if is_literals:
477
                log_debug('Returning default: '+strings.as_tt(repr(default)))
478
                return default
479
            elif is_function: pass # empty pkeys table already created
480
            else:
481
                log_debug('Creating an empty output pkeys table')
482
                cur = sql.run_query_into(db, sql.mk_select(db, out_table,
483
                    [out_pkey], order_by=None, limit=0), into=insert_out_pkeys)
484
            
485
            break # don't do main case
486
        
487
        # Prepare to insert new rows
488
        if is_function: log_debug('Calling function on input rows')
489
        else:
490
            log_debug('Trying to insert new rows')
491
            insert_args = dict(recover=True, cacheable=False)
492
            if has_joins:
493
                insert_args.update(dict(ignore=True))
494
            else:
495
                insert_args.update(dict(returning=out_pkey))
496
                if not is_literals:
497
                    insert_args.update(dict(into=insert_out_pkeys))
498
            main_select = mk_main_select([insert_in_table], [sql_gen.with_table(
499
                c, insert_in_table) for c in mapping.values()])
500
        
501
        try:
502
            cur = None
503
            if is_function:
504
                if is_literals: cur = sql.select(db, fields=[func_call])
505
                else: insert_into_pkeys(wrapper_table, recover=True)
506
            else:
507
                cur = sql.insert_select(db, out_table, mapping.keys(),
508
                    main_select, **insert_args)
509
            break # insert successful
510
        except sql.MissingCastException, e:
511
            log_exc(e)
512
            
513
            out_col = e.col
514
            type_ = e.type
515
            
516
            log_debug('Casting '+strings.as_tt(out_col)+' input to '
517
                +strings.as_tt(type_))
518
            in_col = mapping[out_col]
519
            while True:
520
                try:
521
                    mapping[out_col] = cast_temp_col(db, type_, in_col,
522
                        errors_table_)
523
                    break # cast successful
524
                except sql.InvalidValueException, e:
525
                    log_exc(e)
526
                    
527
                    ignore(in_col, e.value, e)
528
        except sql.DuplicateKeyException, e:
529
            log_exc(e)
530
            
531
            # Different rows violating different unique constraints not
532
            # supported
533
            assert not join_cols
534
            
535
            join_cols.update(util.dict_subset_right_join(mapping, e.cols))
536
            log_debug('Ignoring existing rows, comparing on these columns:\n'
537
                +strings.as_inline_table(join_cols, ustr=col_ustr))
538
            
539
            if is_literals:
540
                return sql.value(sql.select(db, out_table, [out_pkey_col],
541
                    mapping, order_by=None))
542
            
543
            # Uniquify input table to avoid internal duplicate keys
544
            insert_in_table = sql.distinct_table(db, insert_in_table,
545
                join_cols.values())
546
            insert_in_tables.append(insert_in_table)
547
        except sql.NullValueException, e:
548
            log_exc(e)
549
            
550
            out_col, = e.cols
551
            try: in_col = mapping[out_col]
552
            except KeyError, e:
553
                try: in_col = mapping[out_col] = col_defaults[out_col]
554
                except KeyError:
555
                    msg = 'Missing mapping for NOT NULL column '+out_col
556
                    log_debug(msg)
557
                    if default == None: on_error(SyntaxError(msg))# required col
558
                    remove_all_rows()
559
            else: ignore(in_col, None, e)
560
        except sql.CheckException, e:
561
            log_exc(e)
562
            
563
            ignore_cond(e.cond, e)
564
        except sql.InvalidValueException, e:
565
            log_exc(e)
566
            
567
            for in_col in mapping.values(): ignore(in_col, e.value, e)
568
        except psycopg2.extensions.TransactionRollbackError, e:
569
            log_exc(e)
570
            # retry
571
        except sql.DatabaseErrors, e:
572
            log_exc(e)
573
            
574
            log_debug('No handler for exception')
575
            on_error(e)
576
            remove_all_rows()
577
        # after exception handled, rerun loop with additional constraints
578
    
579
    if cur != None and row_ct_ref != None and cur.rowcount >= 0:
580
        row_ct_ref[0] += cur.rowcount
581
    
582
    if is_literals: return sql.value(cur)
583
    
584
    if is_function: pass # pkeys table already created
585
    elif has_joins:
586
        select_joins = input_joins+[sql_gen.Join(out_table, join_cols)]
587
        log_debug('Getting output table pkeys of existing/inserted rows')
588
        insert_into_pkeys(select_joins, pkeys_cols)
589
    else:
590
        sql.add_row_num(db, insert_out_pkeys) # for joining with input pkeys
591
        
592
        log_debug('Getting input table pkeys of inserted rows')
593
        # Note that mk_main_select() does not use ORDER BY. Instead, assume that
594
        # since the SELECT query is identical to the one used in INSERT SELECT,
595
        # its rows will be retrieved in the same order.
596
        sql.run_query_into(db, mk_main_select(input_joins, [in_pkey]),
597
            into=insert_in_pkeys)
598
        sql.add_row_num(db, insert_in_pkeys) # for joining with output pkeys
599
        
600
        assert sql.table_row_count(db, insert_out_pkeys) == sql.table_row_count(
601
            db, insert_in_pkeys)
602
        
603
        log_debug('Combining output and input pkeys in inserted order')
604
        pkey_joins = [insert_in_pkeys, sql_gen.Join(insert_out_pkeys,
605
            {sql.row_num_col: sql_gen.join_same_not_null})]
606
        insert_into_pkeys(pkey_joins, pkeys_names)
607
        
608
        sql.empty_temp(db, [insert_out_pkeys, insert_in_pkeys])
609
    
610
    if limit_ref[0] == 0 or not is_function: # is_function doesn't leave holes
611
        log_debug('Setting pkeys of missing rows to '
612
            +strings.as_tt(repr(default)))
613
        missing_rows_joins = [full_in_table, sql_gen.Join(into,
614
            {in_pkey: sql_gen.join_same_not_null}, sql_gen.filter_out)]
615
            # must use join_same_not_null or query will take forever
616
        insert_into_pkeys(missing_rows_joins,
617
            [sql_gen.Col(in_pkey, full_in_table),
618
            sql_gen.NamedCol(out_pkey, default)])
619
    # otherwise, there is already an entry for every row
620
    
621
    assert (sql.table_row_count(db, into)
622
        == sql.table_row_count(db, full_in_table))
623
    
624
    sql.empty_temp(db, insert_in_tables+[full_in_table])
625
    
626
    srcs = []
627
    if is_function: srcs = sql_gen.cols_srcs(in_cols)
628
    return sql_gen.Col(out_pkey, into, srcs)
(26-26/37)