• Bulat Gaifullin's avatar
    database/sql: Use Tx.ctx in Tx non-context methods · ef0f7fb9
    Bulat Gaifullin authored
    The Tx methods Query and Exec uses context.Background()
    even Tx was created by context.
    This patch enables using Tx.ctx in all Tx methods
    which do not has context arg.
    Backward compatibility:
    - If Tx has created without context, nothing changes.
    - If Tx has created with context and non-context method is called:
      - If context is expired, the execution fails,
        but it can fail on Commit or Rollback as well,
        so in terms of whole transaction - nothing changes.
      - If context is not expired, nothing changes too.
    
    Fixes #20098
    Change-Id: I9570a2deaace5875bb4c5dcf7b3a084a6bcd0d00
    Reviewed-on: https://go-review.googlesource.com/44956Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
    Reviewed-by: 's avatarDaniel Theophanes <kardianos@gmail.com>
    Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
    TryBot-Result: Gobot Gobot <gobot@golang.org>
    ef0f7fb9
sql_test.go 81.4 KB