Project

General

Profile

1 3077 aaronmk
# Database import/export
2
3 3534 aaronmk
import copy
4 3431 aaronmk
import operator
5
6 3077 aaronmk
import exc
7
import dicts
8
import sql
9
import sql_gen
10
import strings
11
import util
12
13 3081 aaronmk
##### Data cleanup
14
15
def cleanup_table(db, table, cols):
16
    table = sql_gen.as_Table(table)
17
    cols = map(sql_gen.as_Col, cols)
18
19
    expr = ('nullif(nullif(trim(both from %s), '+db.esc_value('')+'), '
20
        +db.esc_value(r'\N')+')')
21
    changes = [(v, sql_gen.CustomCode(expr % v.to_str(db)))
22
        for v in cols]
23
24
    sql.update(db, table, changes, in_place=True)
25
26 3078 aaronmk
##### Error tracking
27
28
def track_data_error(db, errors_table, cols, value, error_code, error):
29
    '''
30
    @param errors_table If None, does nothing.
31
    '''
32
    if errors_table == None or cols == (): return
33
34
    for col in cols:
35
        try:
36
            sql.insert(db, errors_table, dict(column=col.name, value=value,
37
                error_code=error_code, error=error), recover=True,
38
                cacheable=True, log_level=4)
39
        except sql.DuplicateKeyException: pass
40
41 3506 aaronmk
class ExcToErrorsTable(sql_gen.ExcToWarning):
42
    '''Handles an exception by saving it or converting it to a warning.'''
43 3511 aaronmk
    def __init__(self, return_, srcs, errors_table, value=None):
44 3506 aaronmk
        '''
45
        @param return_ See sql_gen.ExcToWarning
46
        @param srcs The column names for the errors table
47
        @param errors_table None|sql_gen.Table
48 3511 aaronmk
        @param value The value (or an expression for it) that caused the error
49 3506 aaronmk
        @pre The invalid value must be in a local variable "value" of type text.
50
        '''
51
        sql_gen.ExcToWarning.__init__(self, return_)
52
53 3511 aaronmk
        value = sql_gen.as_Code(value)
54
55 3506 aaronmk
        self.srcs = srcs
56
        self.errors_table = errors_table
57 3511 aaronmk
        self.value = value
58 3501 aaronmk
59 3506 aaronmk
    def to_str(self, db):
60
        if not self.srcs or self.errors_table == None:
61
            return sql_gen.ExcToWarning.to_str(self, db)
62
63 3459 aaronmk
        errors_table_cols = map(sql_gen.Col,
64
            ['column', 'value', 'error_code', 'error'])
65 3465 aaronmk
        col_names_query = sql.mk_select(db, sql_gen.NamedValues('c', None,
66 3506 aaronmk
            [[c.name] for c in self.srcs]), order_by=None)
67
        insert_query = sql.mk_insert_select(db, self.errors_table,
68
            errors_table_cols,
69 3465 aaronmk
            sql_gen.Values(errors_table_cols).to_str(db))+';\n'
70 3506 aaronmk
        return '''\
71 3459 aaronmk
-- Save error in errors table.
72
DECLARE
73
    error_code text := SQLSTATE;
74
    error text := SQLERRM;
75 3511 aaronmk
    value text := '''+self.value.to_str(db)+''';
76 3529 aaronmk
    "column" text;
77 3459 aaronmk
BEGIN
78
    -- Insert the value and error for *each* source column.
79 3529 aaronmk
'''+strings.indent(sql_gen.RowExcIgnore(None, col_names_query, insert_query,
80 3467 aaronmk
    row_var=errors_table_cols[0]).to_str(db))+'''
81 3459 aaronmk
END;
82 3501 aaronmk
83 3506 aaronmk
'''+self.return_.to_str(db)
84 3459 aaronmk
85 3507 aaronmk
def data_exception_handler(*args, **kw_args):
86 3506 aaronmk
    '''Handles a data_exception by saving it or converting it to a warning.
87
    For params, see ExcToErrorsTable().
88
    '''
89
    return sql_gen.data_exception_handler(ExcToErrorsTable(*args, **kw_args))
90
91 3078 aaronmk
def cast(db, type_, col, errors_table=None):
92
    '''Casts an (unrenamed) column or value.
93
    If errors_table set and col has srcs, saves errors in errors_table (using
94 3360 aaronmk
    col's srcs attr as source columns). Otherwise, converts errors to warnings.
95 3078 aaronmk
    @param col str|sql_gen.Col|sql_gen.Literal
96
    @param errors_table None|sql_gen.Table|str
97
    '''
98
    col = sql_gen.as_Col(col)
99
100 3112 aaronmk
    # Don't convert exceptions to warnings for user-supplied constants
101
    if isinstance(col, sql_gen.Literal): return sql_gen.Cast(type_, col)
102
103 3078 aaronmk
    assert not isinstance(col, sql_gen.NamedCol)
104
105 3460 aaronmk
    function_name = strings.first_word(type_)
106 3459 aaronmk
    srcs = col.srcs
107 3508 aaronmk
    save_errors = errors_table != None and srcs
108
    if save_errors: # function will be unique for the given srcs
109
        function_name = str(sql_gen.FunctionCall(function_name,
110
            *map(sql_gen.to_name_only_col, srcs)))
111 3078 aaronmk
    function = db.TempFunction(function_name)
112
113 3464 aaronmk
    # Create function definition
114
    modifiers = 'STRICT'
115
    if not save_errors: modifiers = 'IMMUTABLE '+modifiers
116 3511 aaronmk
    value_param = sql_gen.FunctionParam('value', 'text')
117
    handler = data_exception_handler('RETURN NULL;\n', srcs, errors_table,
118
        value_param.name)
119 3464 aaronmk
    body = sql_gen.CustomCode(handler.to_str(db, '''\
120 3467 aaronmk
/* The explicit cast to the return type is needed to make the cast happen
121
inside the try block. (Implicit casts to the return type happen at the end
122
of the function, outside any block.) */
123
RETURN value::'''+type_+''';
124 3464 aaronmk
'''))
125
    body.lang='plpgsql'
126 3500 aaronmk
    sql.define_func(db, sql_gen.FunctionDef(function, type_, body,
127 3511 aaronmk
        [value_param], modifiers))
128 3464 aaronmk
129 3078 aaronmk
    return sql_gen.FunctionCall(function, col)
130
131 3538 aaronmk
def func_wrapper_exception_handler(db, return_, args, errors_table):
132 3524 aaronmk
    '''Handles a function call's data_exceptions.
133
    Supports PL/Python functions.
134
    @param return_ See data_exception_handler()
135
    @param args [arg...] Function call's args
136
    @param errors_table See data_exception_handler()
137
    '''
138
    args = filter(sql_gen.has_srcs, args)
139
140
    srcs = sql_gen.cross_join_srcs(args)
141 3538 aaronmk
    value = sql_gen.merge_not_null(db, ',', args)
142 3524 aaronmk
    return sql_gen.NestedExcHandler(
143
        data_exception_handler(return_, srcs, errors_table, value)
144
        , sql_gen.plpythonu_error_handler
145
        )
146
147 3078 aaronmk
def cast_temp_col(db, type_, col, errors_table=None):
148
    '''Like cast(), but creates a new column with the cast values if the input
149
    is a column.
150
    @return The new column or cast value
151
    '''
152
    def cast_(col): return cast(db, type_, col, errors_table)
153
154
    try: col = sql_gen.underlying_col(col)
155
    except sql_gen.NoUnderlyingTableException: return sql_gen.wrap(cast_, col)
156
157
    table = col.table
158 3173 aaronmk
    new_col = sql_gen.suffixed_col(col, '::'+strings.first_word(type_))
159 3078 aaronmk
    expr = cast_(col)
160
161
    # Add column
162
    new_typed_col = sql_gen.TypedCol(new_col.name, type_)
163 3174 aaronmk
    sql.add_col(db, table, new_typed_col, comment=repr(col)+'::'+type_)
164 3078 aaronmk
    new_col.name = new_typed_col.name # propagate any renaming
165
166 3110 aaronmk
    sql.update(db, table, [(new_col, expr)], in_place=True, recover=True)
167 3078 aaronmk
168
    return new_col
169
170
def errors_table(db, table, if_exists=True):
171
    '''
172
    @param if_exists If set, returns None if the errors table doesn't exist
173
    @return None|sql_gen.Table
174
    '''
175
    table = sql_gen.as_Table(table)
176
    if table.srcs != (): table = table.srcs[0]
177
178
    errors_table = sql_gen.suffixed_table(table, '.errors')
179
    if if_exists and not sql.table_exists(db, errors_table): return None
180
    return errors_table
181
182
##### Import
183
184 3077 aaronmk
def put(db, table, row, pkey_=None, row_ct_ref=None):
185
    '''Recovers from errors.
186
    Only works under PostgreSQL (uses INSERT RETURNING).
187
    '''
188 3633 aaronmk
    return put_table(db, table, [], row, row_ct_ref)
189 3077 aaronmk
190
def get(db, table, row, pkey, row_ct_ref=None, create=False):
191
    '''Recovers from errors'''
192
    try:
193
        return sql.value(sql.select(db, table, [pkey], row, limit=1,
194
            recover=True))
195
    except StopIteration:
196
        if not create: raise
197
        return put(db, table, row, pkey, row_ct_ref) # insert new row
198
199
def is_func_result(col):
200
    return col.table.name.find('(') >= 0 and col.name == 'result'
201
202
def into_table_name(out_table, in_tables0, mapping, is_func):
203
    def in_col_str(in_col):
204
        in_col = sql_gen.remove_col_rename(in_col)
205
        if isinstance(in_col, sql_gen.Col):
206
            table = in_col.table
207
            if table == in_tables0:
208
                in_col = sql_gen.to_name_only_col(in_col)
209
            elif is_func_result(in_col): in_col = table # omit col name
210
        return str(in_col)
211
212
    str_ = str(out_table)
213
    if is_func:
214
        str_ += '('
215
216
        try: value_in_col = mapping['value']
217
        except KeyError:
218
            str_ += ', '.join((str(k)+'='+in_col_str(v)
219
                for k, v in mapping.iteritems()))
220
        else: str_ += in_col_str(value_in_col)
221
222
        str_ += ')'
223
    else:
224
        out_col = 'rank'
225
        try: in_col = mapping[out_col]
226
        except KeyError: str_ += '_pkeys'
227
        else: # has a rank column, so hierarchical
228
            str_ += '['+str(out_col)+'='+in_col_str(in_col)+']'
229
    return str_
230
231 3628 aaronmk
def put_table(db, out_table, in_tables, mapping, row_ct_ref=None, default=None,
232
    col_defaults={}, on_error=exc.raise_):
233 3077 aaronmk
    '''Recovers from errors.
234
    Only works under PostgreSQL (uses INSERT RETURNING).
235
    IMPORTANT: Must be run at the *beginning* of a transaction.
236
    @param in_tables The main input table to select from, followed by a list of
237
        tables to join with it using the main input table's pkey
238
    @param mapping dict(out_table_col=in_table_col, ...)
239
        * out_table_col: str (*not* sql_gen.Col)
240
        * in_table_col: sql_gen.Col|literal-value
241
    @param default The *output* column to use as the pkey for missing rows.
242
        If this output column does not exist in the mapping, uses None.
243 3618 aaronmk
    @param col_defaults Default values for required columns.
244 3077 aaronmk
    @return sql_gen.Col Where the output pkeys are made available
245
    '''
246 3474 aaronmk
    import psycopg2.extensions
247
248 3077 aaronmk
    out_table = sql_gen.as_Table(out_table)
249
250
    def log_debug(msg): db.log_debug(msg, level=1.5)
251
    def col_ustr(str_):
252
        return strings.repr_no_u(sql_gen.remove_col_rename(str_))
253
254
    log_debug('********** New iteration **********')
255
    log_debug('Inserting these input columns into '+strings.as_tt(
256
        out_table.to_str(db))+':\n'+strings.as_table(mapping, ustr=col_ustr))
257
258
    is_function = sql.function_exists(db, out_table)
259
260
    if is_function: out_pkey = 'result'
261
    else: out_pkey = sql.pkey(db, out_table, recover=True)
262
    out_pkey_col = sql_gen.as_Col(out_pkey, out_table)
263
264
    in_tables_ = in_tables[:] # don't modify input!
265 3432 aaronmk
    try: in_tables0 = in_tables_.pop(0) # first table is separate
266
    except IndexError: in_tables0 = None
267
    else:
268
        in_pkey = sql.pkey(db, in_tables0, recover=True)
269
        in_pkey_col = sql_gen.as_Col(in_pkey, in_tables0)
270 3431 aaronmk
271
    # Determine if can use optimization for only literal values
272
    is_literals = not reduce(operator.or_, map(sql_gen.is_table_col,
273 3434 aaronmk
        mapping.values()), False)
274 3431 aaronmk
    is_literals_or_function = is_literals or is_function
275
276 3432 aaronmk
    if in_tables0 == None: errors_table_ = None
277
    else: errors_table_ = errors_table(db, in_tables0)
278 3431 aaronmk
279
    # Create input joins from list of input tables
280 3077 aaronmk
    input_joins = [in_tables0]+[sql_gen.Join(v,
281
        {in_pkey: sql_gen.join_same_not_null}) for v in in_tables_]
282
283 3433 aaronmk
    if mapping == {} and not is_function: # need >= one column for INSERT SELECT
284
        mapping = {out_pkey: None} # ColDict will replace with default value
285
286 3431 aaronmk
    if not is_literals:
287 3628 aaronmk
        into = sql_gen.as_Table(into_table_name(out_table, in_tables0, mapping,
288
            is_function))
289 3431 aaronmk
290
        # Set column sources
291
        in_cols = filter(sql_gen.is_table_col, mapping.values())
292
        for col in in_cols:
293
            if col.table == in_tables0: col.set_srcs(sql_gen.src_self)
294
295
        log_debug('Joining together input tables into temp table')
296
        # Place in new table so don't modify input and for speed
297
        in_table = sql_gen.Table('in')
298
        mapping = dicts.join(mapping, sql.flatten(db, in_table, input_joins,
299
            in_cols, preserve=[in_pkey_col]))
300
        input_joins = [in_table]
301
        db.log_debug('Temp table: '+strings.as_tt(in_table.to_str(db)), level=2)
302 3077 aaronmk
303
    mapping = sql_gen.ColDict(db, out_table, mapping)
304
        # after applying dicts.join() because that returns a plain dict
305
306
    # Resolve default value column
307
    if default != None:
308
        try: default = mapping[default]
309
        except KeyError:
310
            db.log_debug('Default value column '
311
                +strings.as_tt(strings.repr_no_u(default))
312
                +' does not exist in mapping, falling back to None', level=2.1)
313
            default = None
314
315 3287 aaronmk
    # Save default values for all rows since in_table may have rows deleted
316 3431 aaronmk
    if is_literals: pass
317
    elif is_function: full_in_table = in_table
318 3386 aaronmk
    else:
319
        full_in_table = sql_gen.suffixed_table(in_table, '_full')
320
        full_in_table_cols = [in_pkey_col]
321
        if default != None:
322
            full_in_table_cols.append(default)
323
            default = sql_gen.with_table(default, full_in_table)
324
        sql.run_query_into(db, sql.mk_select(db, in_table, full_in_table_cols,
325
            order_by=None), into=full_in_table, add_pkey_=True)
326 3287 aaronmk
327 3431 aaronmk
    if not is_literals:
328
        pkeys_names = [in_pkey, out_pkey]
329
        pkeys_cols = [in_pkey_col, out_pkey_col]
330 3077 aaronmk
331
    pkeys_table_exists_ref = [False]
332 3499 aaronmk
    def insert_into_pkeys(joins, cols=None, limit=None, **kw_args):
333 3477 aaronmk
        query = sql.mk_select(db, joins, cols, order_by=None, limit=limit)
334 3077 aaronmk
        if pkeys_table_exists_ref[0]:
335 3289 aaronmk
            sql.insert_select(db, into, pkeys_names, query, **kw_args)
336 3077 aaronmk
        else:
337 3304 aaronmk
            sql.run_query_into(db, query, into=into, add_pkey_=True, **kw_args)
338 3077 aaronmk
            pkeys_table_exists_ref[0] = True
339
340
    limit_ref = [None]
341 3418 aaronmk
    def mk_main_select(joins, cols):
342
        return sql.mk_select(db, joins, cols, limit=limit_ref[0], order_by=None)
343
344 3431 aaronmk
    if is_literals: insert_in_table = None
345
    else:
346
        insert_in_table = in_table
347
        insert_in_tables = [insert_in_table]
348 3352 aaronmk
    join_cols = sql_gen.ColDict(db, out_table)
349 3077 aaronmk
350
    exc_strs = set()
351
    def log_exc(e):
352
        e_str = exc.str_(e, first_line_only=True)
353
        log_debug('Caught exception: '+e_str)
354 3552 aaronmk
        if e_str in exc_strs: # avoid infinite loops
355
            log_debug('Exception already seen, handler broken')
356
            on_error(e)
357
            remove_all_rows()
358
        else: exc_strs.add(e_str)
359 3077 aaronmk
360
    def remove_all_rows():
361
        log_debug('Ignoring all rows')
362
        limit_ref[0] = 0 # just create an empty pkeys table
363
364 3352 aaronmk
    def ignore_cond(cond, e):
365
        out_table_cols = sql_gen.ColDict(db, out_table)
366
        out_table_cols.update(util.dict_subset_right_join({},
367
            sql.table_cols(db, out_table)))
368
369
        in_cols = []
370
        cond = sql.map_expr(db, cond, mapping, in_cols)
371
        cond = sql.map_expr(db, cond, out_table_cols)
372
373
        track_data_error(db, errors_table_, sql_gen.cols_srcs(in_cols), None,
374
            e.cause.pgcode,
375
            strings.ensure_newl(e.cause.pgerror)+'condition: '+cond)
376
377
        not_cond = sql_gen.NotCond(sql_gen.CustomCode(cond))
378
        log_debug('Ignoring rows where '+strings.as_tt(not_cond.to_str(db)))
379
        sql.delete(db, insert_in_table, not_cond)
380
381 3294 aaronmk
    not_null_cols = set()
382 3077 aaronmk
    def ignore(in_col, value, e):
383 3630 aaronmk
        if sql_gen.is_table_col(in_col):
384
            in_col = sql_gen.with_table(in_col, insert_in_table)
385
386
            track_data_error(db, errors_table_, in_col.srcs, value,
387
                e.cause.pgcode, e.cause.pgerror)
388
389
            sql.add_index(db, in_col, insert_in_table) # enable fast filtering
390
            if value != None and in_col not in not_null_cols:
391 3636 aaronmk
                log_debug('Replacing invalid value '+strings.as_tt(repr(value))
392
                    +' with NULL in column '+strings.as_tt(repr(in_col)))
393 3630 aaronmk
                sql.update(db, insert_in_table, [(in_col, None)],
394
                    sql_gen.ColValueCond(in_col, value))
395
            else:
396 3636 aaronmk
                log_debug('Ignoring rows with '+strings.as_tt(repr(in_col))
397
                    +' = '+strings.as_tt(repr(value)))
398 3630 aaronmk
                sql.delete(db, insert_in_table,
399
                    sql_gen.ColValueCond(in_col, value))
400
                if value == None: not_null_cols.add(in_col)
401 3293 aaronmk
        else:
402 3630 aaronmk
            assert isinstance(in_col, sql_gen.NamedCol)
403
            if value != None:
404
                log_debug('Replacing invalid literal '
405
                    +strings.as_tt(repr(in_col))+' with NULL')
406
                mapping[in_col.name] = None
407
            else:
408
                remove_all_rows()
409 3077 aaronmk
410 3431 aaronmk
    if not is_literals:
411
        def insert_pkeys_table(which):
412
            return sql_gen.Table(sql_gen.concat(in_table.name,
413
                '_insert_'+which+'_pkeys'))
414
        insert_out_pkeys = insert_pkeys_table('out')
415
        insert_in_pkeys = insert_pkeys_table('in')
416 3077 aaronmk
417 3550 aaronmk
    if is_function:
418
        args = dict(((k.name, v) for k, v in mapping.iteritems()))
419
        func_call = sql_gen.NamedCol(out_pkey,
420
            sql_gen.FunctionCall(out_table, **args))
421
422
        if not is_literals:
423
            log_debug('Defining wrapper function')
424
425
            # Create empty pkeys table so its row type can be used
426
            insert_into_pkeys(input_joins, [in_pkey_col, func_call], limit=0,
427
                recover=True)
428
            result_type = db.col_info(sql_gen.Col(out_pkey, into)).type
429
430
            ## Create error handling wrapper function
431
432
            wrapper = db.TempFunction(sql_gen.concat(into.name, '_wrap'))
433
434
            select_cols = [in_pkey_col]+args.values()
435
            row_var = copy.copy(sql_gen.row_var)
436
            row_var.set_srcs([in_table])
437
            in_pkey_var = sql_gen.Col(in_pkey, row_var)
438
439
            args = dict(((k, sql_gen.with_table(v, row_var))
440
                for k, v in args.iteritems()))
441
            func_call = sql_gen.FunctionCall(out_table, **args)
442
443
            def mk_return(result):
444
                return sql_gen.ReturnQuery(sql.mk_select(db,
445
                    fields=[in_pkey_var, result], explain=False))
446
            exc_handler = func_wrapper_exception_handler(db,
447
                mk_return(sql_gen.Cast(result_type, None)), args.values(),
448
                errors_table_)
449
450
            sql.define_func(db, sql_gen.FunctionDef(wrapper,
451
                sql_gen.SetOf(into),
452
                sql_gen.RowExcIgnore(sql_gen.RowType(in_table),
453
                    sql.mk_select(db, input_joins, order_by=None),
454
                    mk_return(func_call), exc_handler=exc_handler)
455
                ))
456
            wrapper_table = sql_gen.FunctionCall(wrapper)
457
458 3077 aaronmk
    # Do inserts and selects
459
    while True:
460 3473 aaronmk
        has_joins = join_cols != {}
461
462 3551 aaronmk
        # Handle unrecoverable errors in a special case
463
        if limit_ref[0] == 0:
464 3473 aaronmk
            assert not has_joins
465
466 3623 aaronmk
            if is_literals:
467
                log_debug('Returning default: '+strings.as_tt(repr(default)))
468
                return default
469 3551 aaronmk
            elif is_function: pass # empty pkeys table already created
470
            else:
471
                log_debug('Creating an empty output pkeys table')
472
                cur = sql.run_query_into(db, sql.mk_select(db, out_table,
473
                    [out_pkey], order_by=None, limit=0), into=insert_out_pkeys)
474
475 3077 aaronmk
            break # don't do main case
476
477
        # Prepare to insert new rows
478 3550 aaronmk
        if is_function: log_debug('Calling function on input rows')
479 3077 aaronmk
        else:
480 3550 aaronmk
            log_debug('Trying to insert new rows')
481 3291 aaronmk
            insert_args = dict(recover=True, cacheable=False)
482
            if has_joins:
483
                insert_args.update(dict(ignore=True))
484
            else:
485 3431 aaronmk
                insert_args.update(dict(returning=out_pkey))
486
                if not is_literals:
487
                    insert_args.update(dict(into=insert_out_pkeys))
488 3291 aaronmk
            main_select = mk_main_select([insert_in_table], [sql_gen.with_table(
489
                c, insert_in_table) for c in mapping.values()])
490 3077 aaronmk
491 3292 aaronmk
        try:
492
            cur = None
493 3077 aaronmk
            if is_function:
494 3431 aaronmk
                if is_literals: cur = sql.select(db, fields=[func_call])
495 3499 aaronmk
                else: insert_into_pkeys(wrapper_table, recover=True)
496 3077 aaronmk
            else:
497 3292 aaronmk
                cur = sql.insert_select(db, out_table, mapping.keys(),
498 3077 aaronmk
                    main_select, **insert_args)
499
            break # insert successful
500
        except sql.MissingCastException, e:
501
            log_exc(e)
502
503
            out_col = e.col
504
            type_ = e.type
505
506
            log_debug('Casting '+strings.as_tt(out_col)+' input to '
507
                +strings.as_tt(type_))
508 3111 aaronmk
            in_col = mapping[out_col]
509
            while True:
510
                try:
511
                    mapping[out_col] = cast_temp_col(db, type_, in_col,
512
                        errors_table_)
513
                    break # cast successful
514
                except sql.InvalidValueException, e:
515
                    log_exc(e)
516
517 3294 aaronmk
                    ignore(in_col, e.value, e)
518 3077 aaronmk
        except sql.DuplicateKeyException, e:
519
            log_exc(e)
520
521 3274 aaronmk
            # Different rows violating different unique constraints not
522
            # supported
523
            assert not join_cols
524
525 3077 aaronmk
            join_cols.update(util.dict_subset_right_join(mapping, e.cols))
526
            log_debug('Ignoring existing rows, comparing on these columns:\n'
527
                +strings.as_inline_table(join_cols, ustr=col_ustr))
528 3102 aaronmk
529 3431 aaronmk
            if is_literals:
530
                return sql.value(sql.select(db, out_table, [out_pkey_col],
531
                    mapping, order_by=None))
532
533 3102 aaronmk
            # Uniquify input table to avoid internal duplicate keys
534
            insert_in_table = sql.distinct_table(db, insert_in_table,
535 3358 aaronmk
                join_cols.values())
536 3144 aaronmk
            insert_in_tables.append(insert_in_table)
537 3077 aaronmk
        except sql.NullValueException, e:
538
            log_exc(e)
539
540
            out_col, = e.cols
541
            try: in_col = mapping[out_col]
542 3618 aaronmk
            except KeyError, e:
543
                try: in_col = mapping[out_col] = col_defaults[out_col]
544
                except KeyError:
545
                    msg = 'Missing mapping for NOT NULL column '+out_col
546
                    log_debug(msg)
547
                    if default == None: on_error(SyntaxError(msg))# required col
548
                    remove_all_rows()
549 3294 aaronmk
            else: ignore(in_col, None, e)
550 3352 aaronmk
        except sql.CheckException, e:
551
            log_exc(e)
552
553
            ignore_cond(e.cond, e)
554 3413 aaronmk
        except sql.InvalidValueException, e:
555
            log_exc(e)
556
557
            for in_col in mapping.values(): ignore(in_col, e.value, e)
558 3474 aaronmk
        except psycopg2.extensions.TransactionRollbackError, e:
559
            log_exc(e)
560
            # retry
561 3077 aaronmk
        except sql.DatabaseErrors, e:
562
            log_exc(e)
563
564
            log_debug('No handler for exception')
565
            on_error(e)
566
            remove_all_rows()
567
        # after exception handled, rerun loop with additional constraints
568
569
    if cur != None and row_ct_ref != None and cur.rowcount >= 0:
570
        row_ct_ref[0] += cur.rowcount
571
572 3530 aaronmk
    if is_literals: return sql.value(cur)
573
574
    if is_function: pass # pkeys table already created
575 3077 aaronmk
    elif has_joins:
576
        select_joins = input_joins+[sql_gen.Join(out_table, join_cols)]
577
        log_debug('Getting output table pkeys of existing/inserted rows')
578 3306 aaronmk
        insert_into_pkeys(select_joins, pkeys_cols)
579 3077 aaronmk
    else:
580
        sql.add_row_num(db, insert_out_pkeys) # for joining with input pkeys
581
582
        log_debug('Getting input table pkeys of inserted rows')
583 3285 aaronmk
        # Note that mk_main_select() does not use ORDER BY. Instead, assume that
584
        # since the SELECT query is identical to the one used in INSERT SELECT,
585
        # its rows will be retrieved in the same order.
586 3077 aaronmk
        sql.run_query_into(db, mk_main_select(input_joins, [in_pkey]),
587
            into=insert_in_pkeys)
588
        sql.add_row_num(db, insert_in_pkeys) # for joining with output pkeys
589
590
        assert sql.table_row_count(db, insert_out_pkeys) == sql.table_row_count(
591
            db, insert_in_pkeys)
592
593
        log_debug('Combining output and input pkeys in inserted order')
594
        pkey_joins = [insert_in_pkeys, sql_gen.Join(insert_out_pkeys,
595
            {sql.row_num_col: sql_gen.join_same_not_null})]
596
        insert_into_pkeys(pkey_joins, pkeys_names)
597
598
        sql.empty_temp(db, [insert_out_pkeys, insert_in_pkeys])
599
600 3531 aaronmk
    if limit_ref[0] == 0 or not is_function: # is_function doesn't leave holes
601 3187 aaronmk
        log_debug('Setting pkeys of missing rows to '
602
            +strings.as_tt(repr(default)))
603 3287 aaronmk
        missing_rows_joins = [full_in_table, sql_gen.Join(into,
604 3187 aaronmk
            {in_pkey: sql_gen.join_same_not_null}, sql_gen.filter_out)]
605
            # must use join_same_not_null or query will take forever
606
        insert_into_pkeys(missing_rows_joins,
607 3287 aaronmk
            [sql_gen.Col(in_pkey, full_in_table),
608
            sql_gen.NamedCol(out_pkey, default)])
609 3187 aaronmk
    # otherwise, there is already an entry for every row
610 3077 aaronmk
611 3530 aaronmk
    assert (sql.table_row_count(db, into)
612
        == sql.table_row_count(db, full_in_table))
613
614
    sql.empty_temp(db, insert_in_tables+[full_in_table])
615
616
    srcs = []
617 3619 aaronmk
    if is_function: srcs = sql_gen.cols_srcs(in_cols)
618 3530 aaronmk
    return sql_gen.Col(out_pkey, into, srcs)