Project

General

Profile

1
# Database import/export
2

    
3
import copy
4
import operator
5
import warnings
6

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

    
14
##### Exceptions
15

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

    
19
##### Data cleanup
20

    
21
null_strs = ['', r'\N', 'NULL']
22

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

    
33
##### Error tracking
34

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

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

    
90
'''+self.return_.to_str(db)
91

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

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

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

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

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

    
189
##### Import
190

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

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

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

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

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