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